mirror of
https://github.com/Steffo99/unisteffo.git
synced 2024-11-21 23:44:22 +00:00
scidata
: Create page
This commit is contained in:
parent
c847b8bee9
commit
e1a349ef13
2 changed files with 83 additions and 0 deletions
55
pages/year4/scidata/index.tsx
Normal file
55
pages/year4/scidata/index.tsx
Normal 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
|
28
pages/year4/scidata/teoria.tsx
Normal file
28
pages/year4/scidata/teoria.tsx
Normal 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
|
Loading…
Reference in a new issue