feat: add contact section and home footer with Ataturk quote widget

This commit is contained in:
Poyraz Avsever
2026-04-16 10:06:06 +03:00
parent 0609170073
commit 2744059281
3 changed files with 22 additions and 3 deletions
+2 -2
View File
@@ -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",
+17
View File
@@ -0,0 +1,17 @@
"use client";
import Script from "next/script";
export function HomeFooterSection() {
return (
<div className="mt-auto flex w-full flex-col items-center justify-center pt-4">
<div data-ataturk-quote-widget data-language="tr" data-theme="light"></div>
<Script
src="https://ataturk-kronolojisi.org/widget/quote.js"
strategy="lazyOnload"
data-language="tr"
data-theme="light"
/>
</div>
);
}