diff --git a/src/pages/home.tsx b/src/pages/home.tsx index f29d576..a9e616a 100644 --- a/src/pages/home.tsx +++ b/src/pages/home.tsx @@ -1,19 +1,45 @@ import { Card, CardContent } from "@/components/ui/card" import Main from "@/templates/Main" +// const scoreData = [ +// { label: "Total Posts", count: "548" }, +// { label: "Tags", count: "68" }, +// { label: "Backlinks", count: "766" }, +// ] + export default function Home() { return ( <>
+ {/* +
+ {scoreData.map((item, index) => ( + + ))} +
+ */} +
- - + + +

Welcome

- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas eget - justo non ipsum venenatis suscipit. + I'm Thomas. Eólas is my technical knowledge management system, or + "second-brain", comprising notes from my study of software engineering + and computer science.

+ +
+

+ {" "} + 🇮🇪 "Eólas" is Irish for "knowledge", + especially knowledge gained through practical experience. +

+
+ +

Recent edits

@@ -23,3 +49,12 @@ export default function Home() { ) } + +// const ScoreCard = ({ label, count }) => ( +//
+//
+//

{count}

+//

{label}

+//
+//
+// )