1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-11-25 17:34:20 +00:00
triennale-appunti-steffo/app/page.tsx

27 lines
566 B
TypeScript

import { Chapter } from "../components/Chapter";
import { Topic } from "../components/Topic";
import { Layout } from "../components/Layout";
export default function Page() {
return (
<Layout
heading="Unisteffo"
main={
<Chapter heading="Dove sono?" columns={1}>
<Topic heading="Su Unisteffo!">
<p>
Il mio sito di appunti.
</p>
</Topic>
</Chapter>
}
sidebar={
<Chapter heading="Indice" columns={1}>
<div className="panel box" style={{height: "200vh"}}>
sus
</div>
</Chapter>
}
/>
)
}