feat: add contact section and home footer with Ataturk quote widget

This commit is contained in:
Poyraz Avsever
2026-04-16 10:06:06 +03:00
parent 0609170073
commit 2744059281
3 changed files with 22 additions and 3 deletions
+3 -1
View File
@@ -1,16 +1,18 @@
import { HomeHero } from "@/components/home-hero";
import { HomeVideosSection } from "@/components/home-videos-section";
import { ReferencesSection } from "@/components/references-section";
import { HomeFooterSection } from "@/components/home-footer-section";
import { getHomeBlogNews } from "@/data/blog";
export default async function Home() {
const homeNews = await getHomeBlogNews(3);
return (
<section className="flex h-full flex-col gap-4 overflow-hidden">
<section className="flex h-full flex-col gap-4 overflow-y-auto overflow-x-hidden">
<HomeHero news={homeNews} />
<ReferencesSection />
<HomeVideosSection />
<HomeFooterSection />
</section>
);
}