diff --git a/frontend/pages/search.tsx b/frontend/pages/search.tsx index bb597ae7..0a14d64b 100644 --- a/frontend/pages/search.tsx +++ b/frontend/pages/search.tsx @@ -1,7 +1,18 @@ import SearchPage from '@/components/organisms/searchPage' +import Head from "next/head"; function Search() { - return + return ( + <> + + Lifter Search + + + + + ) } export default Search