diff options
| author | jackyzha0 <[email protected]> | 2020-05-11 20:47:11 -0700 |
|---|---|---|
| committer | jackyzha0 <[email protected]> | 2020-05-11 20:47:11 -0700 |
| commit | 1f750b3ef0e4e3c0153006551c4449eabb10d1e5 (patch) | |
| tree | 743221486279d7c7840ae7c54b066b5cc96bcc97 /frontend/src/components/App.js | |
| parent | Merge pull request #16 from jackyzha0/password (diff) | |
| download | ctrl-v-1f750b3ef0e4e3c0153006551c4449eabb10d1e5.tar.xz ctrl-v-1f750b3ef0e4e3c0153006551c4449eabb10d1e5.zip | |
add basic link + route
Diffstat (limited to 'frontend/src/components/App.js')
| -rw-r--r-- | frontend/src/components/App.js | 45 |
1 files changed, 39 insertions, 6 deletions
diff --git a/frontend/src/components/App.js b/frontend/src/components/App.js index 17240f5..2f438e9 100644 --- a/frontend/src/components/App.js +++ b/frontend/src/components/App.js @@ -1,15 +1,48 @@ import React from 'react'; -import Header from './Header' import PasteArea from './PasteArea' import Footer from './Footer' +import styled from 'styled-components' +import { + BrowserRouter as Router, + Switch, + Route, + Link +} from "react-router-dom"; + +const SpacedTitle = styled.div` + margin-top: 10vh +` + +const Inline = styled.div` + display: inline-block +` + +const Desc = () => { + return ( + <h3>a modern, <a href="https://github.com/jackyzha0/ctrl-v" target="_blank" rel="noopener noreferrer">open-source</a> pastebin with latex and markdown rendering support</h3> + ); +} function App() { return ( - <div className="lt-content-column"> - <Header /> - <PasteArea /> - <Footer /> - </div> + <Router> + <div className="lt-content-column"> + <SpacedTitle> + <nav> + <h1 className="mainLogo"> + <span role="img" aria-label="clipboard">📋 </span> + <Link to="/">ctrl-v</Link> + </h1> + + <Desc /> + </nav> + </SpacedTitle> + + <PasteArea/> + + <Footer /> + </div> + </Router> ); } |