From 13ab78bf2a30acb8790222adb89a578b0b720aff Mon Sep 17 00:00:00 2001 From: Nick Bland Date: Sun, 15 May 2022 23:33:15 +1000 Subject: [PATCH] Change navbar to sit inside of header tag Reflect that both the head and nav tag are inside of a header rather than nesting both inside of an empty div --- components/navbar.tsx | 135 +++++++++++++++++++++--------------------- 1 file changed, 66 insertions(+), 69 deletions(-) diff --git a/components/navbar.tsx b/components/navbar.tsx index 2445a28..806b198 100644 --- a/components/navbar.tsx +++ b/components/navbar.tsx @@ -16,7 +16,7 @@ type Props = { const NavBar = ({children, title = "nickbland.dev | Home", description = "A website made by Nick Bland."}: Props) => { const [isOpen, setIsOpen] = useState(false); return ( -
+
{title} @@ -24,80 +24,77 @@ const NavBar = ({children, title = "nickbland.dev | Home", description = "A webs -
- -
-
-
-
- logo + +
+
+
+
+ logo +
+
+ logo +
+
+ -
- logo -
-
-
- Home - About -
-
- -
+
+
-
- -
+
+
+
- - -
-
- Home - About -
-
+
+ + +
+
+ Home + About +
- - - - - -
-
+ + + + + ) }