import Image from "next/image"; import Link from "next/link"; import { siteConfig } from "@/data/site-config"; import { SocialIcons } from "@/components/shared/SocialIcons"; import { PageContainer } from "@/components/shared/PageContainer"; /** * Footer — shared site-wide footer. * * Renders on every page via layout.tsx. * Data sourced from `data/site-config.ts` — no hardcoded links. * * Structure (from reference): * Left: Logo · social icons · outline "since 2024" text * Right: Company links column · Services links column * Bottom: Copyright · Terms/Privacy */ export function Footer() { return ( ); }