Skip to content

Commit

Permalink
sinclair calculator meta
Browse files Browse the repository at this point in the history
  • Loading branch information
euanwm committed Aug 9, 2024
1 parent 8ba6a49 commit f59632b
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion frontend/pages/sinclair.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
import SinclairPage from '@/components/organisms/sinclairPage'
import Head from "next/head";

function Sinclair() {
return <SinclairPage />
return (
<>
<Head>
<title>Sinclair Calculator</title>
<meta
name="description"
content="Olympic-cycle selectable Sinclair calculator."
/>
</Head>
<SinclairPage />
</>
)
}

export default Sinclair

0 comments on commit f59632b

Please sign in to comment.