Components
Loading preview...
Hero Section with Lightning effect ( coded ).
npx shadcn@latest add https://21st.dev/r/erikvalencia1/hero-odysseyimport { HeroSection } from "@/components/ui/hero-odyssey";
const DemoOne = () => {
return (
<div className="flex w-full h-screen justify-center items-center">
<HeroSection />
</div>
);
};
export { DemoOne };