-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
39 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import { TopbarNavigation } from "@/components/TopbarNavigation"; | ||
import { BrandingMenu } from "@/components/BrandingMenu"; | ||
import Link from "next/link"; | ||
import Button from "@/components/ui/atoms/button"; | ||
|
||
export const Header = () => { | ||
return ( | ||
<div className="w-full max-w-[100vw] px-4 md:max-w-7xl md:px-12 dark:bg-blac py-4 md:py-8 sticky top-0 z-30 dark:bg-[#0B0C0E] bg-white flex flex-row items-center justify-between bg-transparent"> | ||
<TopbarNavigation /> | ||
<BrandingMenu | ||
className="mt-1 hidden md:block" | ||
size={100} | ||
logoVariant="logotype" | ||
/> | ||
<BrandingMenu | ||
className="ml-2 mt-1 md:hidden" | ||
logoVariant="logotype" | ||
size={100} | ||
/> | ||
<div className="flex flex-row items-center gap-x-4"> | ||
<Link href="/login"> | ||
<Button>Login</Button> | ||
</Link> | ||
</div> | ||
</div> | ||
); | ||
}; |
This file was deleted.
Oops, something went wrong.