feat(home): add technology stack section

This commit is contained in:
poyrazavsever
2026-08-31 20:07:57 +03:00
parent 581b1d77ef
commit 340d504ac8
7 changed files with 250 additions and 6 deletions
+4 -1
View File
@@ -1,5 +1,6 @@
import { HomeHero } from "@/components/home-hero";
import { HomeProjectsSection } from "@/components/home-projects-section";
import { HomeTechnologyStack } from "@/components/home-technology-stack";
import { HomeVideosSection } from "@/components/home-videos-section";
import { ReferencesSection } from "@/components/references-section";
import { getHomeBlogNews } from "@/data/blog";
@@ -29,7 +30,9 @@ export default async function Home({
return (
<section className="flex h-full flex-col overflow-y-auto overflow-x-hidden">
<HomeHero news={homeNews} />
<HomeHero news={homeNews}>
<HomeTechnologyStack />
</HomeHero>
<HomeProjectsSection />
<ReferencesSection />
<HomeVideosSection />