14 lines
401 B
TypeScript
14 lines
401 B
TypeScript
import { HomeHero } from "@/components/home-hero";
|
|
import { HomeVideosSection } from "@/components/home-videos-section";
|
|
import { ReferencesSection } from "@/components/references-section";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<section className="flex h-full flex-col gap-4 overflow-hidden">
|
|
<HomeHero />
|
|
<ReferencesSection />
|
|
<HomeVideosSection />
|
|
</section>
|
|
);
|
|
}
|