mirror of
https://github.com/cupcakearmy/old.nicco.io.git
synced 2025-09-06 10:40:44 +00:00
migrated to nextjs
This commit is contained in:
24
pages/_app.tsx
Normal file
24
pages/_app.tsx
Normal file
@@ -0,0 +1,24 @@
|
||||
import React from 'react'
|
||||
import App from 'next/app'
|
||||
import Head from 'next/head'
|
||||
|
||||
import '../styles/fonts.css'
|
||||
import '../styles/global.styl'
|
||||
|
||||
|
||||
|
||||
export default class extends App {
|
||||
render() {
|
||||
const { Component, pageProps } = this.props
|
||||
return (
|
||||
<React.Fragment>
|
||||
<Head>
|
||||
<title>Alessandra Marten</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta charSet="utf-8" />
|
||||
</Head>
|
||||
<Component {...pageProps} />
|
||||
</React.Fragment>
|
||||
)
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user