mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-10 22:05:06 +01:00
top navigation
This commit is contained in:
parent
3ede2a2eaf
commit
fad23f60b1
18
src/components/layout/BrandHeader.tsx
Normal file
18
src/components/layout/BrandHeader.tsx
Normal file
@ -0,0 +1,18 @@
|
||||
import { IconPatch } from "components/buttons/IconPatch";
|
||||
import { Icons } from "components/Icon";
|
||||
import { DISCORD_LINK, GITHUB_LINK } from "mw_constants";
|
||||
import { BrandPill } from "./BrandPill";
|
||||
|
||||
export function BrandHeader() {
|
||||
return (
|
||||
<div className="flex justify-between items-center absolute left-0 right-0 top-0 p-3">
|
||||
<div>
|
||||
<BrandPill />
|
||||
</div>
|
||||
<div className="flex">
|
||||
<a href={DISCORD_LINK} target="_blank" className="text-2xl text-white"><IconPatch icon={Icons.DISCORD} clickable/></a>
|
||||
<a href={GITHUB_LINK} target="_blank" className="text-2xl text-white"><IconPatch icon={Icons.GITHUB} clickable/></a>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
Loading…
Reference in New Issue
Block a user