add search page and search style

This commit is contained in:
ismailsosic
2022-12-30 04:02:16 +01:00
parent fe233c8562
commit 6eb127b8f9
40 changed files with 395 additions and 3622 deletions

View File

@@ -2,9 +2,6 @@ import Layout from '../components/Layout'
import '../styles/globals.css'
export default function App({ Component, pageProps }) {
return(
<Layout>
<Component {...pageProps} />
</Layout>
)
return <Component {...pageProps} />
}