Skip to content

Commit

Permalink
hotfix header element link
Browse files Browse the repository at this point in the history
  • Loading branch information
PipeItToDevNull committed Dec 15, 2024
1 parent e250f49 commit 64ae2c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ const App = () => (
</Helmet>
<div id="container">
<div id="header">
<a href="/" style={{ textDecoration: 'none', color: 'inherit' }}>
<h1 id="site_name">{SITE_NAME}</h1>
</a>
<h1 id="site_name">
<a href="/" style={{ textDecoration: 'none', color: 'inherit' }}>{SITE_NAME}</a>
</h1>
</div>
<Routes>
<Route path="/:uuid" element={<Paste />} />
Expand Down

0 comments on commit 64ae2c8

Please sign in to comment.