2022-02-03 18:47:06 +00:00
|
|
|
import { ListUnordered } from "@steffo/bluelib-react"
|
|
|
|
import {Heading, Chapter, Box, Panel, Idiomatic as I} from "@steffo/bluelib-react"
|
2022-02-04 01:14:51 +00:00
|
|
|
import { Link } from "../../../components/link"
|
2022-02-04 17:41:40 +00:00
|
|
|
import { Warn1024 } from "../../../components/warn"
|
2022-02-03 18:47:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
export default function Fisica() {
|
|
|
|
return <>
|
|
|
|
<Heading level={2}>
|
|
|
|
Fisica
|
|
|
|
</Heading>
|
|
|
|
<Chapter>
|
|
|
|
<Box>
|
|
|
|
<Heading level={3}>
|
|
|
|
Premessa
|
|
|
|
</Heading>
|
|
|
|
<p>
|
2022-02-04 01:14:51 +00:00
|
|
|
<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.
|
2022-02-03 18:47:06 +00:00
|
|
|
</p>
|
|
|
|
</Box>
|
|
|
|
</Chapter>
|
|
|
|
<Chapter>
|
|
|
|
<Box>
|
|
|
|
<Heading level={3}>
|
|
|
|
Materiale raccolto
|
|
|
|
</Heading>
|
|
|
|
<Chapter>
|
|
|
|
<Panel>
|
|
|
|
<Heading level={4}>
|
|
|
|
Appuntiweb
|
|
|
|
</Heading>
|
2022-02-04 17:41:40 +00:00
|
|
|
<Warn1024/>
|
2022-02-03 18:47:06 +00:00
|
|
|
<ListUnordered>
|
|
|
|
<ListUnordered.Item>
|
|
|
|
<Link href="/year2/fisica/teoria">
|
|
|
|
Appunti di teoria
|
|
|
|
</Link>
|
|
|
|
</ListUnordered.Item>
|
|
|
|
</ListUnordered>
|
|
|
|
</Panel>
|
|
|
|
</Chapter>
|
|
|
|
</Box>
|
|
|
|
</Chapter>
|
|
|
|
</>
|
|
|
|
}
|