Components
Loading preview...
Here is Dark Horizon Glow component
npx shadcn@latest add https://21st.dev/r/meghtrix/dark-horizon-glow// This is file of your component
// You can use any dependencies from npm; we import them automatically in package.json
import { cn } from "@/lib/utils";
import { useState } from "react";
export default function Component() {
const [count, setCount] = useState(0);
return (
<div className="min-h-screen w-full relative">
{/* Emerald Void */}
<div
className="absolute inset-0 z-0"
style={{
background: "radial-gradient(125% 125% at 50% 90%, #000000 40%, #072607 100%)",
}}
/>
{/* Your Content/Components */}
</div>
);
};