Components
Loading preview...
Space Background with props
npx shadcn@latest add https://21st.dev/r/designali-in/space-backgroundimport { SpaceBackground } from "@/components/ui/space-background";
export default function DemoOne() {
return (
<main className="relative min-h-screen flex items-center justify-center">
<SpaceBackground particleCount={450} />
{/* Content overlay */}
<div className="relative z-10 text-center">
<img src="https://raw.githubusercontent.com/aliimam-in/aliimam/refs/heads/main/apps/www/public/brand/ai-logo.png"
alt="Logo"
height={500}
width={500}
className="h-50 z-10 w-full object-contain"
/>
</div>
</main>
)
}