Skip to content
Open

a #29

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="Pastebin"
name="Jaysharebin"
content="Text storage application for all of your snippets"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/favicon.ico" />
Expand All @@ -26,7 +26,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>Pastebin | Danny Pham</title>
<title>Jaysharebin</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
2 changes: 1 addition & 1 deletion src/App/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function App() {
exact
path={routes['sourceCode']}
component={() => {
window.location.href = 'https://github.com/dannyhp1/pastebin'
window.location.href = 'https://github.com'
}}
/>
</Router>
Expand Down
2 changes: 1 addition & 1 deletion src/components/navigation/NavigationBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function NavigationBar() {
<Typography variant='h6' color='inherit' className={css(styles.grow)}>
Pastebin
</Typography>
<Button color='inherit' onClick={() => setPath(routes['sourceCode'])}>Source Code</Button>

</Toolbar>
</AppBar>
</div>
Expand Down
3 changes: 1 addition & 2 deletions src/routes/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ export default {
default: '/',
pastebin: '/pastebin',
pastebinId: '/pastebin/:id',
sourceCode: '/source-code',
}
}