feat(i18n): setup next-intl core config and translation dictionaries

This commit is contained in:
Poyraz
2026-06-27 14:42:40 +03:00
parent 6d2ecbc14f
commit 968ebb33c5
19 changed files with 275 additions and 91 deletions
+18
View File
@@ -0,0 +1,18 @@
import { HomeHero } from "@/components/home-hero";
import { HomeVideosSection } from "@/components/home-videos-section";
import { ReferencesSection } from "@/components/references-section";
import { SponsorsSection } from "@/components/sponsors-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-y-auto overflow-x-hidden">
<HomeHero news={homeNews} />
<ReferencesSection />
<HomeVideosSection />
<SponsorsSection />
</section>
);
}