Added more routes, and CV!

This commit is contained in:
Hannah 2026-02-17 13:35:00 +01:00
commit bb4d8f2004
12 changed files with 83 additions and 0 deletions

View file

@ -0,0 +1,9 @@
export default function UnderConstruction() {
return (
<div className="w-full h-full mx-auto flex justify-center align-middle bg-amber-400">
<h1 className="text-3xl font-bold leading-tight text-gray-800">
Route currently under construction
</h1>
</div>
)
}