Forte Zhuo PRO
123456789101112131415161718192021import { Header } from "./components/header";
import { Hero } from "./components/section/hero";
import { Usps } from "./components/section/usps";
import { VideoCarousel } from "./components/section/video-carousel";
export const App = () => {
return (
<>
<Header />
<main className="bg-background">
<div className="bg-background relative z-10">
<Hero />
<Usps />
</div>
<VideoCarousel />
<div className="h-[300vh]" />
</main>
</>
);
};