Components
Loading preview...
Here is animated Globe
npx shadcn@latest add https://21st.dev/r/nyxbui/globe// demo.tsx
"use client"
import * as React from "react"
import { Component } from "@/components/ui/globe"
import { cn } from "@/lib/utils"
const DemoOne = () => {
return (
<div className={cn("flex w-full min-h-screen justify-center items-center bg-background p-4 dark")}>
<Component />
</div>
)
}
export default DemoOne