diff --git a/app/page.tsx b/app/page.tsx index 7805e5e..3897a23 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -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 ( -
+
+
); } diff --git a/components/contact-content.tsx b/components/contact-content.tsx index 1a66e5a..7521376 100644 --- a/components/contact-content.tsx +++ b/components/contact-content.tsx @@ -1,8 +1,8 @@ -import Link from "next/link"; +import Link from "next/link"; import { Icon } from "@iconify/react"; import { Card, Typography } from "poyraz-ui/atoms"; -const CONTACT_LINKS = [ +export const CONTACT_LINKS = [ { id: "email", label: "E-posta", diff --git a/components/home-footer-section.tsx b/components/home-footer-section.tsx new file mode 100644 index 0000000..fdee0bf --- /dev/null +++ b/components/home-footer-section.tsx @@ -0,0 +1,17 @@ +"use client"; + +import Script from "next/script"; + +export function HomeFooterSection() { + return ( +
+
+