"use client" import { AppLink } from "./app-link" import { Icons } from "./icons" import { AppContent } from "./ui/app-content" import { LABELS } from "@/app/labels" import { siteConfig } from "@/config/site" import { useAppSettings } from "@/hooks/useAppSettings" import { cn } from "@/lib/utils" import { NavItem } from "@/types/nav" const ItemLabel = ({ label, external = false, icon, }: { label: string external?: boolean icon?: React.ReactNode }) => { return (
{external && ( )} {icon && (
{icon}
)} {label}
) } const LinksWrapper = ({ children, className, }: { children: React.ReactNode className?: string }) => { return
{children}
} export function SiteFooter() { const { MAIN_NAV } = useAppSettings() return ( ) }