18 lines
496 B
Plaintext
18 lines
496 B
Plaintext
import Link from "next/link";
|
|
import "../../public/assets/styles/main.css"
|
|
import Head from "next/head";
|
|
// import faveIco from '../../public/fave.ico'
|
|
|
|
function MyApp({ Component, pageProps }) {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="icon" href="../../public/fave.svg" />
|
|
</Head>
|
|
<Component {...pageProps} />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default MyApp; |