From fad23f60b18a32cbb5af863bc534c7e30e0696c3 Mon Sep 17 00:00:00 2001 From: mrjvs Date: Fri, 25 Feb 2022 21:50:36 +0100 Subject: [PATCH] top navigation --- src/components/layout/BrandHeader.tsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/components/layout/BrandHeader.tsx diff --git a/src/components/layout/BrandHeader.tsx b/src/components/layout/BrandHeader.tsx new file mode 100644 index 00000000..9ff2a410 --- /dev/null +++ b/src/components/layout/BrandHeader.tsx @@ -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 ( +
+
+ +
+
+ + +
+
+ ) +}