forked from ourworld_web/www_engage_os
10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
import { Globe } from "@/components/Globe";
|
|
|
|
export default function GlobeDemo() {
|
|
return (
|
|
<main className="relative min-h-screen bg-transparent flex items-center justify-center">
|
|
<Globe />
|
|
</main>
|
|
);
|
|
}
|