mirror of
https://litchi.icu/ngc2207/judge.git
synced 2025-05-18 22:27:44 +00:00
feat(header): implement Header component with Logo and UserNav
This commit is contained in:
parent
c13f803518
commit
6d292492fc
13
src/app/(main)/components/header.tsx
Normal file
13
src/app/(main)/components/header.tsx
Normal file
@ -0,0 +1,13 @@
|
||||
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>
|
||||
);
|
||||
}
|
Loading…
Reference in New Issue
Block a user