"use client"; import Link from "next/link"; import { Container } from "@/components/ui"; import { useTenantHost } from "@/hooks/useTenantHost"; const LINKS = [ { href: "/discover", label: "کشف کسب‌وکار" }, { href: "/pricing", label: "قیمت‌گذاری" }, { href: "/help", label: "مرکز راهنما" }, { href: "/apps", label: "اپ‌ها" }, { href: "/billing", label: "Billing" }, { href: "/domains", label: "دامنه" }, ]; export function SiteFooter() { const host = useTenantHost(); if (host.isTenantHost) return null; return ( ); }