1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-10-16 06:17:32 +00:00

scidata: Create page

This commit is contained in:
Steffo 2022-09-30 12:30:08 +02:00
parent c847b8bee9
commit e1a349ef13
2 changed files with 83 additions and 0 deletions

View file

@ -0,0 +1,55 @@
import {Heading, Chapter, Box, Idiomatic as I, Panel, ListUnordered, Parenthesis} from "@steffo/bluelib-react"
import type { NextPage, NextPageContext } from 'next'
import { Link } from '../../../components/link'
import { Warn1024 } from '../../../components/warn'
export async function getStaticProps(_context: NextPageContext) {
return {
props: {}
}
}
const Page: NextPage = () => {
return <>
<Heading level={2}>
Elaborazione dati scientifici
</Heading>
<Chapter>
<Box todo>
<Heading level={3}>
Premessa
</Heading>
<p>
TODO
</p>
</Box>
</Chapter>
<Chapter>
<Box todo>
<Heading level={3}>
Materiale raccolto
</Heading>
<p>
TODO
</p>
<Chapter>
<Panel>
<Heading level={4}>
Appuntiweb
</Heading>
<Warn1024/>
<ListUnordered>
<ListUnordered.Item>
<Link href="/year4/privacy/teoria">Appunti di teoria</Link>
</ListUnordered.Item>
</ListUnordered>
</Panel>
</Chapter>
</Box>
</Chapter>
</>
}
export default Page

View file

@ -0,0 +1,28 @@
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