This commit is contained in:
Robert 2024-03-07 05:33:14 +07:00
parent e948e38c20
commit 4ab8033a13
No known key found for this signature in database
GPG Key ID: F631C7FD957D5F22
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1 @@
export { default as Header } from "./ui/Header";

View File

@ -0,0 +1,17 @@
export default function Header() {
return (
<header className="relative flex h-[45px] overflow-hidden bg-[#0F0147]">
<div className="flex h-full items-center px-[20px]">
<img
src="/logo.svg"
alt="Logo"
draggable={false}
className="h-[24px] w-auto select-none"
/>
</div>
<div className="absolute left-[125px] top-1/2 h-[200px] w-[200px] -translate-y-1/2 rotate-45 bg-[#23155B]" />
<div className="f-full relative z-10 ml-20 grow bg-[#23155B]"></div>
</header>
);
}