Components
Loading preview...
A responsive hero section. Features an interactive dot grid background reacting to mouse movement, a sticky header with dropdowns and scroll effects, Framer Motion animations for content entry, and a rotating text headline.
npx shadcn@latest add https://21st.dev/r/aghasisahakyan1/hero-section-nexusimport React from 'react';
import InteractiveHero from "@/components/blocks/hero-section-nexus";
export function HomePage() {
return (
<div>
<InteractiveHero />
{/* Optional: Add other sections of your page below the hero */}
{/*
<section className="py-16 bg-white text-black">
<div className="container mx-auto text-center">
<h2 className="text-3xl font-bold mb-4">Features Section</h2>
<p>More content goes here...</p>
</div>
</section>
*/}
</div>
);
}