1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-11-22 16:04:21 +00:00
triennale-appunti-steffo/old_pages/year3/protocolli/index.tsx

34 lines
964 B
TypeScript
Raw Normal View History

2022-02-04 05:04:59 +00:00
import { Heading, Chapter, Box, Idiomatic as I, Panel, ListUnordered } from '@steffo/bluelib-react'
2022-06-28 17:13:40 +00:00
import type { NextPage, NextPageContext } from 'next'
export async function getStaticProps(_context: NextPageContext) {
return {
props: {}
}
}
2022-02-04 05:04:59 +00:00
const Page: NextPage = () => {
return <>
<Heading level={2}>
Protocolli e architetture di rete
</Heading>
<Chapter>
<Box>
<Heading level={3}>
Premessa
</Heading>
<p>
Un esame decisamente ben fatto, ma il cui materiale trattava la materia di indirizzo delle mie scuole superiori. Niente miei appunti qui, mi spiace...
</p>
<p>
Le slides del prof. erano ottime: se le fornisce ancora, vi consiglio di studiare su quelle!
</p>
</Box>
</Chapter>
</>
}
export default Page