Components
Loading preview...
Network Animation with props
npx shadcn@latest add https://21st.dev/r/designali-in/network-animationimport { NetworkAnimation } from "@/components/ui/network-animation"
export default function Home() {
return (
<main className= "w-full flex flex-col items-center justify-center h-screen overflow-hidden" >
<NetworkAnimation />
< h1 className = "absolute text-background text-5xl font-bold" >
Network Animation
< /h1>
< /main>
)
}