Skip to content

Commit

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

function Search() {
return <SearchPage />
return (
<>
<Head>
<title>Lifter Search</title>
<meta
name="description"
content="Search for a lifter in our database."/>
</Head>
<SearchPage />
</>
)
}

export default Search

0 comments on commit 8ba6a49

Please sign in to comment.