2022-09-29 15:33:59 +00:00
|
|
|
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}>
|
|
|
|
Privacy e tutela dei dati
|
|
|
|
</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>
|
2022-10-26 15:36:18 +00:00
|
|
|
<ListUnordered.Item>
|
|
|
|
<Link href="/year4/privacy/esame">Preappello ed esame</Link>
|
|
|
|
</ListUnordered.Item>
|
2022-09-29 15:33:59 +00:00
|
|
|
</ListUnordered>
|
|
|
|
</Panel>
|
|
|
|
</Chapter>
|
|
|
|
</Box>
|
|
|
|
</Chapter>
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Page
|