Apply styles on Home page

This commit is contained in:
ismailsosic
2022-12-28 22:09:58 +01:00
parent 4929ee397f
commit 5883015410
704 changed files with 634 additions and 10114 deletions

View File

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