"use client"; import { Select, SelectContent, SelectItem, SelectTrigger, } from "@/components/ui/select"; import { Link, useRouter } from "@/i18n/routing"; import { useLocale, useTranslations } from "next-intl"; import type { SVGProps } from "react"; import { Container } from "./Container"; import { NavLink } from "./NavLink"; import { Logo } from "./shared/Logo"; import { buttonVariants } from "./ui/button"; const I18nIcon = (props: JSX.IntrinsicAttributes & SVGProps) => ( ); export function Footer() { const router = useRouter(); const locale = useLocale(); const t = useTranslations("HomePage"); const linkT = useTranslations("Link"); return ( ); }