mirror of
https://litchi.icu/ngc2207/judge.git
synced 2025-12-14 16:05:18 +00:00
14 lines
331 B
TypeScript
14 lines
331 B
TypeScript
import { UserNav } from "./user-nav";
|
|
import { Logo } from "@/components/logo";
|
|
|
|
export default function Header() {
|
|
return (
|
|
<div className="h-12 flex items-center">
|
|
<div className="flex justify-between container mx-auto px-4">
|
|
<Logo className="h-8 w-auto" />
|
|
<UserNav />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|