1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-11-22 07:54:22 +00:00
triennale-appunti-steffo/pages/_app.tsx
2022-02-02 05:36:02 +01:00

23 lines
723 B
TypeScript

import "../styles/global.css"
import type { AppProps } from 'next/app'
import Link from "next/link"
import {Bluelib, Heading, LayoutThreeCol, Anchor as A} from "@steffo/bluelib-react"
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>
</Bluelib>
)
}
export default MyApp