Components
Loading preview...
Centered hero with radial gradient background and announcement badge
npx shadcn@latest add https://21st.dev/r/sshahaider/hero-1import { HeroSection, LogosSection } from "@/components/ui/hero-1";
import { Header } from "@/components/ui/header-1";
export default function DemoOne() {
return (
<div className= "flex w-full flex-col" >
<Header />
< main className = "grow" >
<HeroSection />
< LogosSection />
</main>
< /div>
);
}