From cd0b07b3adb36fb5ec098f9e511ab45d774fee7b Mon Sep 17 00:00:00 2001 From: Wes Bos Date: Tue, 30 Jan 2018 12:41:01 -0500 Subject: Move to Prisma Backend --- components/Nav.js | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 components/Nav.js (limited to 'components/Nav.js') diff --git a/components/Nav.js b/components/Nav.js deleted file mode 100644 index d1f341d..0000000 --- a/components/Nav.js +++ /dev/null @@ -1,46 +0,0 @@ -import Link from 'next/link'; -import styled from 'styled-components'; - -const StyledUl = styled.ul` - margin: 0; - padding: 0; - display: flex; - li { - display: flex; - flex: 1; - } - a { - padding: 10px; - flex: 1; - text-decoration: none; - text-align: center; - background: rgba(0, 0, 0, 0.2); - color: white; - margin-right: 20px; - &:hover { - background: rgba(0, 0, 0, 0.3); - } - } -`; - -const Nav = () => ( - - - Home - - - Sign Up - - - Add an Item - - - Orders - - - My Cart - - -); - -export default Nav; -- cgit v1.3