mirror of
https://github.com/Steffo99/unisteffo.git
synced 2024-11-25 09:24:21 +00:00
23 lines
535 B
TypeScript
23 lines
535 B
TypeScript
|
import { Heading, Chapter, Box, Idiomatic as I, Anchor as A, ListUnordered, ListOrdered } from '@steffo/bluelib-react'
|
||
|
import type { NextPage } from 'next'
|
||
|
|
||
|
const Page: NextPage = () => {
|
||
|
return <>
|
||
|
<Heading level={2}>
|
||
|
Titolo
|
||
|
</Heading>
|
||
|
<Chapter>
|
||
|
<Box>
|
||
|
<Heading level={3}>
|
||
|
Introduzione
|
||
|
</Heading>
|
||
|
<p>
|
||
|
Cose
|
||
|
</p>
|
||
|
</Box>
|
||
|
</Chapter>
|
||
|
</>
|
||
|
}
|
||
|
|
||
|
export default Page
|