Added links to homepage
This commit is contained in:
parent
ec742b15db
commit
1ee4053c4c
10 changed files with 156 additions and 10 deletions
|
|
@ -1,7 +1,10 @@
|
|||
import '../styles/globals.css'
|
||||
import type { AppProps } from 'next/app'
|
||||
import {NextIntlProvider} from 'next-intl';
|
||||
|
||||
function MyApp({ Component, pageProps }: AppProps) {
|
||||
return <Component {...pageProps} />
|
||||
function _App({ Component, pageProps }: AppProps) {
|
||||
return <NextIntlProvider messages={pageProps.messages}>
|
||||
<Component {...pageProps} />
|
||||
</NextIntlProvider>
|
||||
}
|
||||
export default MyApp
|
||||
export default _App
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue