'use client' /** * ComingSoon - 統一的「建設中」佔位元件 * ====================================== * 用於尚未實作的路由頁面 * Nothing.tech 極簡風格 * * @created 2026-04-01 ogt */ import { type LucideIcon } from 'lucide-react' import { cn } from '@/lib/utils' interface ComingSoonProps { icon?: LucideIcon title: string description?: string className?: string } export function ComingSoon({ icon: Icon, title, description, className }: ComingSoonProps) { return (
{description}
)}