mirror of
https://github.com/Steffo99/unisteffo.git
synced 2024-11-22 16:04:21 +00:00
53 lines
1.7 KiB
TypeScript
53 lines
1.7 KiB
TypeScript
import { ListUnordered } from "@steffo/bluelib-react"
|
|
import {Heading, Chapter, Box, Panel, Idiomatic as I} from "@steffo/bluelib-react"
|
|
import { NextPageContext } from "next"
|
|
import { Link } from "../../../components/link"
|
|
import { Warn1024 } from "../../../components/warn"
|
|
|
|
|
|
export async function getStaticProps(_context: NextPageContext) {
|
|
return {
|
|
props: {}
|
|
}
|
|
}
|
|
|
|
|
|
export default function Fisica() {
|
|
return <>
|
|
<Heading level={2}>
|
|
Fisica
|
|
</Heading>
|
|
<Chapter>
|
|
<Box>
|
|
<Heading level={3}>
|
|
Premessa
|
|
</Heading>
|
|
<p>
|
|
<I>Fisica</I> è stato il corso che mi ha spinto a sviluppare il progetto Appuntiweb: avendo tante definizioni e formule, avere una visualizzazione "a carte mnemoniche" mi ha aiutato molto a studiare per l'esame.
|
|
</p>
|
|
</Box>
|
|
</Chapter>
|
|
<Chapter>
|
|
<Box>
|
|
<Heading level={3}>
|
|
Materiale raccolto
|
|
</Heading>
|
|
<Chapter>
|
|
<Panel>
|
|
<Heading level={4}>
|
|
Appuntiweb
|
|
</Heading>
|
|
<Warn1024/>
|
|
<ListUnordered>
|
|
<ListUnordered.Item>
|
|
<Link href="/year2/fisica/teoria">
|
|
Appunti di teoria
|
|
</Link>
|
|
</ListUnordered.Item>
|
|
</ListUnordered>
|
|
</Panel>
|
|
</Chapter>
|
|
</Box>
|
|
</Chapter>
|
|
</>
|
|
}
|