feat: updated home section like projects section card, referance card

This commit is contained in:
poyrazavsever
2026-07-16 09:02:41 +03:00
parent 6e12c03312
commit 978f76bfc2
6 changed files with 20 additions and 16 deletions
+1 -3
View File
@@ -2,7 +2,6 @@ import { HomeHero } from "@/components/home-hero";
import { HomeProjectsSection } from "@/components/home-projects-section";
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({
@@ -14,12 +13,11 @@ export default async function Home({
const homeNews = await getHomeBlogNews(locale, 6);
return (
<section className="flex h-full flex-col gap-12 overflow-y-auto overflow-x-hidden md:gap-14">
<section className="flex h-full flex-col overflow-y-auto overflow-x-hidden">
<HomeHero news={homeNews} />
<HomeProjectsSection />
<ReferencesSection />
<HomeVideosSection />
<SponsorsSection />
</section>
);
}