diff --git a/src/App.js b/src/App.js index a8264f2..ac1b803 100644 --- a/src/App.js +++ b/src/App.js @@ -6,12 +6,20 @@ import theme from "./theme.js"; import Home from "./routes/Home"; import Game from "./routes/Game"; import Join from "./routes/Join"; +import About from "./routes/About"; +import FAQ from "./routes/FAQ"; function App() { return ( + + + + + + diff --git a/src/components/Footer.js b/src/components/Footer.js new file mode 100644 index 0000000..5f9c5b7 --- /dev/null +++ b/src/components/Footer.js @@ -0,0 +1,28 @@ +import React from "react"; +import { Flex, Link } from "theme-ui"; + +function Footer() { + return ( + + + About + + + Home + + + FAQ + + + ); +} + +export default Footer; diff --git a/src/routes/About.js b/src/routes/About.js new file mode 100644 index 0000000..897e4c9 --- /dev/null +++ b/src/routes/About.js @@ -0,0 +1,34 @@ +import React from "react"; +import { Flex, Text } from "theme-ui"; + +import Footer from "../components/Footer"; + +function About() { + return ( + + + + About + + +