"use client"; import Link from "next/link"; import type { CommonContent } from "@/content/types"; import { type Locale } from "@/lib/i18n"; import { isComingSoonMode } from "@/lib/site"; type BottomNavProps = { locale: Locale; common: CommonContent; }; export default function BottomNav({ locale, common }: BottomNavProps) { if (isComingSoonMode()) { return ( ); } const homePath = `/${locale}`; const aboutPath = `/${locale}/about`; const contactPath = `/${locale}/contact`; return ( ); }