diff --git a/remix/app/components/Buttons/Attention.tsx b/remix/app/components/Buttons/Attention.tsx new file mode 100644 index 0000000..9b19ace --- /dev/null +++ b/remix/app/components/Buttons/Attention.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { Flex } from '@chakra-ui/react' + +export const Attention = props => { + return ( + + + + ) +} diff --git a/remix/app/components/Buttons/Hamburger.tsx b/remix/app/components/Buttons/Hamburger.tsx new file mode 100644 index 0000000..c8a60ba --- /dev/null +++ b/remix/app/components/Buttons/Hamburger.tsx @@ -0,0 +1,38 @@ +import React from 'react' +import { Flex } from '@chakra-ui/react' + +export const Hamburger = props => { + const lineCount = [1, 2, 3] + + return ( + + {lineCount.map((line, idx) => { + return ( + + ) + })} + + ) +} diff --git a/remix/app/components/Layout/Main.tsx b/remix/app/components/Layout/Main.tsx new file mode 100644 index 0000000..b5eeed7 --- /dev/null +++ b/remix/app/components/Layout/Main.tsx @@ -0,0 +1,11 @@ +import { Flex } from '@chakra-ui/react' +import { Nav } from '../Nav/Nav' + +export const Main = props => { + return ( + +