From 1d155ca518b2142b6b541af288482321ba56c42c Mon Sep 17 00:00:00 2001 From: ChristianTovar Date: Sun, 29 Nov 2020 18:33:49 -0500 Subject: [PATCH 1/2] Add basic layout --- components/Layout.tsx | 7 +----- components/NavBar.tsx | 52 ++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 52 insertions(+), 7 deletions(-) diff --git a/components/Layout.tsx b/components/Layout.tsx index 03e36be..ad6ec9d 100644 --- a/components/Layout.tsx +++ b/components/Layout.tsx @@ -7,12 +7,7 @@ interface PropTypes { const Layout = ({ children }: PropTypes) => ( <> -
-
- - Imagen de lambda renegades... -
-
+
{children}
); diff --git a/components/NavBar.tsx b/components/NavBar.tsx index d2ea321..c8415d7 100644 --- a/components/NavBar.tsx +++ b/components/NavBar.tsx @@ -1,3 +1,53 @@ -const NavBar = () => ; +const NavBar = () => ( + <> +
+
+

+ + Lambda Renegades + +

+ + + + +
+ {/* end Logo */} + + + {/* end global navigation */} +
+ +); export default NavBar; From 0adbf65238b8683610ce91b8c51e36cf44300cf0 Mon Sep 17 00:00:00 2001 From: ChristianTovar Date: Sun, 29 Nov 2020 19:38:52 -0500 Subject: [PATCH 2/2] Add navbar styling --- components/NavBar.tsx | 30 +- package.json | 12 +- public/logo.png | Bin 0 -> 49021 bytes yarn.lock | 1826 +++++++++++++++-------------------------- 4 files changed, 680 insertions(+), 1188 deletions(-) create mode 100644 public/logo.png diff --git a/components/NavBar.tsx b/components/NavBar.tsx index c8415d7..b5df0af 100644 --- a/components/NavBar.tsx +++ b/components/NavBar.tsx @@ -1,27 +1,23 @@ +import Image from 'next/image'; + const NavBar = () => ( <> -
+
{/* end Logo */}