import { Head, Link } from "@inertiajs/react"; import { Hammer, Home, ArrowLeft } from "lucide-react"; import { Button } from "@/Components/ui/button"; import AuthenticatedLayout from "@/Layouts/AuthenticatedLayout"; interface Props { featureName?: string; } export default function UnderConstruction({ featureName = "此功能" }: Props) { return (

{featureName} 正在趕工中!

我們正在努力完善這個功能,以提供更優質的體驗。 這部分可能涉及與其他系統的深度整合,請稍候片刻。

Coming Soon | Star ERP Design System
); }