mirror of
https://github.com/Steffo99/unisteffo.git
synced 2024-11-22 16:04:21 +00:00
29 lines
679 B
TypeScript
29 lines
679 B
TypeScript
|
import {Heading, Chapter, Box, ListUnordered, ListOrdered, Parenthesis, Idiomatic as I, BringAttention as B} from "@steffo/bluelib-react"
|
||
|
import type { NextPage, NextPageContext } from 'next'
|
||
|
import { Link } from '../../../components/link'
|
||
|
|
||
|
|
||
|
export async function getStaticProps(_context: NextPageContext) {
|
||
|
return {
|
||
|
props: {}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
const Page: NextPage = () => {
|
||
|
return <>
|
||
|
<Heading level={2}>
|
||
|
<Link href="/year4/scidata">
|
||
|
Elaborazione dati scientifici
|
||
|
</Link>
|
||
|
</Heading>
|
||
|
<Chapter>
|
||
|
<Box todo>
|
||
|
TODO
|
||
|
</Box>
|
||
|
</Chapter>
|
||
|
</>
|
||
|
}
|
||
|
|
||
|
export default Page
|