feat: add HomeVideosSection component with YouTube video integration

This commit is contained in:
poyrazavsever
2026-03-10 21:43:46 +03:00
parent 9142962fce
commit 17ec09f8ab
3 changed files with 59 additions and 0 deletions
+2
View File
@@ -1,4 +1,5 @@
import { HomeHero } from "@/components/home-hero";
import { HomeVideosSection } from "@/components/home-videos-section";
import { ReferencesSection } from "@/components/references-section";
export default function Home() {
@@ -6,6 +7,7 @@ export default function Home() {
<section className="flex h-full flex-col gap-4 overflow-hidden">
<HomeHero />
<ReferencesSection />
<HomeVideosSection />
</section>
);
}