"use client"; import Link from "next/link"; import { JetBrains_Mono } from "next/font/google"; import { Dictionary } from "@/lib/IDict"; import { socialLinks, FlickeringSocialIcon } from "@/components/ui/social-links"; const jetbrainsMono = JetBrains_Mono({ subsets: ["latin", "cyrillic"], }); export function Footer({ dict, lang, }: { dict: Dictionary["footer"]; lang: string; }) { const sitemap = [ { title: dict.sections.product, links: [ { name: dict.links.features, href: `/${lang}#features` }, { name: dict.links.pricing, href: `/${lang}#pricing` }, { name: dict.links.protocol, href: `/${lang}/docs` }, { name: dict.links.profile, href: `/${lang}/auth` }, ], }, { title: dict.sections.resources, links: [ { name: dict.links.faq, href: `/${lang}#faq` }, { name: dict.links.comms, href: `/${lang}/blog` }, ], }, { title: dict.sections.legal, links: [ { name: dict.links.privacy, href: `/${lang}/docs` }, { name: dict.links.terms, href: `/${lang}/docs` }, ], }, ]; return ( ); }