sciagent code + Gitea Actions CI/CD
CI/CD / backend (push) Failing after 2m8s
CI/CD / frontend (push) Failing after 1m40s
CI/CD / deploy (push) Has been skipped

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Thinh Lam
2026-06-30 09:38:30 +07:00
commit 688fac73e9
1167 changed files with 158244 additions and 0 deletions
@@ -0,0 +1,28 @@
import { Construction } from "lucide-react";
import { Card, CardContent, CardHeader, CardTitle } from "@ump/shared";
/**
* Placeholder for applicant sidebar targets whose feature pages have not been
* migrated into frontend_user yet (initiative draft, profile, notifications, …).
* Styled with the shared design tokens so the shell looks complete and nothing 404s.
*/
export function ComingSoonPage() {
return (
<div className="flex min-h-[60vh] items-center justify-center">
<Card className="w-full max-w-md text-center">
<CardHeader>
<div className="mx-auto mb-2 flex h-12 w-12 items-center justify-center rounded-full bg-muted">
<Construction className="h-6 w-6 text-muted-foreground" />
</div>
<CardTitle className="font-serif">Tính năng đang phát triển</CardTitle>
</CardHeader>
<CardContent>
<p className="text-sm text-muted-foreground">
Chức năng này sẽ sớm đưc hoàn thiện. Vui lòng quay lại sau.
</p>
</CardContent>
</Card>
</div>
);
}