2025-08-06 18:45:55 +01:00
|
|
|
import MainTemplate from "@/templates/MainTemplate"
|
2025-07-23 14:40:41 +01:00
|
|
|
import RecentEdits from "@/containers/RecentEdits"
|
2025-07-18 13:49:46 +01:00
|
|
|
export default function Home() {
|
2025-08-06 18:45:55 +01:00
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<MainTemplate pageTitle="Home">
|
|
|
|
|
<div className="flex-1 flex flex-col overflow-auto">
|
|
|
|
|
<div className="@container/main flex flex-col">
|
|
|
|
|
<div className="p-4 lg:p-6 flex flex-1">
|
|
|
|
|
<div className="border w-full">
|
|
|
|
|
<div className="border-b py-2 px-4 lg:px-6 bg-sidebar">
|
|
|
|
|
<h2 className="scroll-m-20 font-semibold">Welcome</h2>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="p-4 lg:p-6">
|
|
|
|
|
<p className="leading-7 [&:not(:first-child)]:mt-6 font-normal">
|
2025-11-07 15:55:32 +00:00
|
|
|
Hi,{" "}
|
2025-08-06 18:45:55 +01:00
|
|
|
<a
|
|
|
|
|
className="text-foreground underline-offset-3 font-medium underline hover:text-gray-700 dark:hover:text-green-300"
|
2025-11-07 15:55:32 +00:00
|
|
|
href="https://systemsobscure.blog/about"
|
|
|
|
|
target="_blank"
|
2025-08-06 18:45:55 +01:00
|
|
|
>
|
2025-11-07 15:55:32 +00:00
|
|
|
I'm Thomas
|
|
|
|
|
</a>
|
|
|
|
|
, Eólas is my technical knowledge management system, or
|
|
|
|
|
"second-brain", comprising notes from the study of software
|
|
|
|
|
engineering and computer science.{" "}
|
2025-08-06 18:45:55 +01:00
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-07-20 17:24:52 +01:00
|
|
|
|
2025-08-06 18:45:55 +01:00
|
|
|
<div className="px-4 lg:px-6 flex-1 flex">
|
|
|
|
|
<RecentEdits />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</MainTemplate>
|
|
|
|
|
</>
|
|
|
|
|
)
|
2025-07-18 13:49:46 +01:00
|
|
|
}
|