1
Fork 0
mirror of https://github.com/Steffo99/steffoweb.git synced 2024-10-16 15:27:28 +00:00
steffoweb/pages/_app.tsx

29 lines
810 B
TypeScript
Raw Normal View History

2022-10-16 02:33:33 +00:00
import Link from "next/link"
2022-02-19 02:29:14 +00:00
import React from 'react'
2022-10-16 02:33:33 +00:00
import "@steffo/bluelib/dist/base.root.css"
import "@steffo/bluelib/dist/colors-royalblue.root.css"
import "@steffo/bluelib/dist/fonts-fira-ghpages.root.css"
import "@steffo/bluelib/dist/classic.root.css"
import "@steffo/bluelib/dist/glass.root.css"
import "@steffo/bluelib/dist/fun.root.css"
2022-02-19 02:29:14 +00:00
import "./_app.css"
2022-10-16 02:33:33 +00:00
import type {AppProps} from "next/app"
2022-02-19 02:29:14 +00:00
2022-10-16 02:33:33 +00:00
const App = ({Component, pageProps}: AppProps) => {
return <>
<h1>
Steffo's website
</h1>
<Component {...pageProps}/>
<footer>
© {new Date().getFullYear()} Stefano Pigozzi | <Link href={"https://github.com/Steffo99/steffoweb-2021"}>Source code</Link>
</footer>
</>
2022-02-19 02:29:14 +00:00
}
2022-10-16 02:33:33 +00:00
// noinspection JSUnusedGlobalSymbols
2022-02-19 02:29:14 +00:00
export default App;