"use client"; import Link from "next/link"; import { APP_CONFIG } from "@/shared/constants/config"; const footerLinks = { product: [ { label: "Features", href: "#features" }, { label: "Pricing", href: "#pricing" }, { label: "Changelog", href: "#" }, ], resources: [ { label: "Documentation", href: "#" }, { label: "API Reference", href: "#" }, { label: "Help Center", href: "#" }, ], company: [ { label: "About", href: "#" }, { label: "Blog", href: "#" }, { label: "Contact", href: "#" }, ], }; export default function Footer() { return ( ); }