starting off header with the full window dimensions

This commit is contained in:
talksik
2022-04-30 21:14:03 -05:00
parent b9141d643d
commit 66db28cd7c
14 changed files with 262 additions and 25 deletions
@@ -1,7 +1,4 @@
export enum LogoType {
primary = "primary",
small = "small",
}
export type LogoType = "primary" | "small";
export default function Logo({
className,
@@ -10,7 +7,7 @@ export default function Logo({
className: string;
type?: LogoType;
}) {
if (type === LogoType.small) {
if (type === "small") {
return (
<svg
width="85"