mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 07:16:34 +00:00
feat(terminal): add TerminalTestcasePage with release info card
This commit is contained in:
parent
f3303fff3d
commit
0dbed9c284
24
src/app/(app)/problems/[id]/@terminal/@testcase/page.tsx
Normal file
24
src/app/(app)/problems/[id]/@terminal/@testcase/page.tsx
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { RadioIcon } from "lucide-react";
|
||||||
|
|
||||||
|
export default function TerminalTestcasePage() {
|
||||||
|
return (
|
||||||
|
<div className="h-full flex items-center justify-center">
|
||||||
|
<div className="flex items-center border border-muted rounded-lg p-4 shadow-lg gap-2">
|
||||||
|
<div
|
||||||
|
className="flex size-9 shrink-0 items-center justify-center rounded-full border"
|
||||||
|
aria-hidden="true"
|
||||||
|
>
|
||||||
|
<RadioIcon className="opacity-60" size={16} />
|
||||||
|
</div>
|
||||||
|
<div className="flex grow items-center gap-12">
|
||||||
|
<div className="space-y-1">
|
||||||
|
<p className="text-sm font-medium">Launching in v0.0.1</p>
|
||||||
|
<p className="text-muted-foreground text-xs">
|
||||||
|
Expected release date: March 16 at 6:00 PM.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user