1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-11-22 16:04:21 +00:00
triennale-appunti-steffo/pages/_app.tsx

35 lines
1.5 KiB
TypeScript
Raw Normal View History

2022-02-02 04:36:02 +00:00
import "../styles/global.css"
import type { AppProps } from 'next/app'
import Link from "next/link"
2022-02-03 02:15:39 +00:00
import {Bluelib, Heading, LayoutThreeCol, Anchor as A, Footer} from "@steffo/bluelib-react"
2022-02-02 04:36:02 +00:00
function MyApp({ Component, pageProps }: AppProps) {
return (
<Bluelib theme="sophon" id="root">
<LayoutThreeCol>
<LayoutThreeCol.Center>
<Heading level={1}>
<Link href="/">
<A href="#">Unisteffo</A>
</Link>
</Heading>
<Component {...pageProps} />
</LayoutThreeCol.Center>
</LayoutThreeCol>
2022-02-03 02:15:39 +00:00
<Footer>
<p>
© {new Date().getFullYear()} <A href="https://steffo.eu/">Stefano Pigozzi</A> - Tutto il contenuto del sito è reso disponibile con la licenza <A href="https://creativecommons.org/licenses/by-sa/3.0/it/">CC-BY-SA 3.0 IT</A>.
</p>
<p>
Sito web <A href="https://github.com/Steffo99/appuntiweb-omega">open source</A> basato su <A href="https://github.com/Steffo99/bluelib">Bluelib</A> e <A href="https://github.com/Steffo99/bluelib-react">Bluelib React</A>
</p>
<p>
Se il contenuto di questo sito ti è utile, <A href="https://ko-fi.com/steffo">offrimi un caffè</A>!
</p>
</Footer>
2022-02-02 04:36:02 +00:00
</Bluelib>
)
}
export default MyApp