1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-11-28 19:04:18 +00:00
triennale-appunti-steffo/app/page.tsx

28 lines
566 B
TypeScript
Raw Normal View History

2023-03-15 11:13:11 +00:00
import { Chapter } from "../components/Chapter";
import { Topic } from "../components/Topic";
import { Layout } from "../components/Layout";
2023-03-15 09:07:38 +00:00
export default function Page() {
2023-03-15 11:13:11 +00:00
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>
}
/>
)
}