feat: add sponsors section to homepage with new sponsor data and assets

This commit is contained in:
Poyraz Avsever
2026-06-20 12:48:07 +03:00
parent 139c21d27b
commit a22055c4d9
5 changed files with 70 additions and 0 deletions
+2
View File
@@ -1,6 +1,7 @@
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() {
@@ -11,6 +12,7 @@ export default async function Home() {
<HomeHero news={homeNews} />
<ReferencesSection />
<HomeVideosSection />
<SponsorsSection />
</section>
);
}