feat: add Atatürk quote widget modal to app shell and initialize home page layout

This commit is contained in:
Poyraz Avsever
2026-04-16 10:24:29 +03:00
parent 2744059281
commit 85868b4a14
5 changed files with 61 additions and 19 deletions
-2
View File
@@ -1,7 +1,6 @@
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() {
@@ -12,7 +11,6 @@ export default async function Home() {
<HomeHero news={homeNews} />
<ReferencesSection />
<HomeVideosSection />
<HomeFooterSection />
</section>
);
}