mirror of
https://litchi.icu/ngc2207/judge4c-latest.git
synced 2025-07-13 05:53:50 +00:00
refactor: optimize layout and add video grid to home page
This commit is contained in:
parent
52277dec0d
commit
b34901bc14
@ -1,3 +1,12 @@
|
||||
export default function HomePage() {
|
||||
return <div className="p-4">Home Page</div>;
|
||||
return (
|
||||
<div className="flex flex-1 flex-col gap-4 p-4 pt-0">
|
||||
<div className="grid auto-rows-min gap-4 md:grid-cols-3">
|
||||
<div className="aspect-video rounded-xl bg-muted/50" />
|
||||
<div className="aspect-video rounded-xl bg-muted/50" />
|
||||
<div className="aspect-video rounded-xl bg-muted/50" />
|
||||
</div>
|
||||
<div className="min-h-[100vh] flex-1 rounded-xl bg-muted/50 md:min-h-min" />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user