import Image from "next/image"; import Link from "next/link"; import { Phone } from "lucide-react"; import { getSiteSettings } from "@/lib/data"; import { siteConfig } from "@/lib/site-config"; const nav = [ { href: "/", label: "Anasayfa" }, { href: "/hizmetler", label: "Hizmetler" }, { href: "/projeler", label: "Projeler" }, { href: "/blog", label: "Blog" }, { href: "/hakkimizda", label: "Hakkımızda" }, { href: "/iletisim", label: "İletişim" }, ]; export async function Header() { const settings = await getSiteSettings(); const phone = settings?.contact_phone ?? siteConfig.contact.phone; const phoneRaw = settings?.contact_phone_raw ?? siteConfig.contact.phoneRaw; return (
{siteConfig.name} {siteConfig.name} {phone}
); }