From 44f70c0e3a0f05eed6e211215bd44e3f1c408ce8 Mon Sep 17 00:00:00 2001 From: schererleander Date: Mon, 14 Jul 2025 18:06:54 +0200 Subject: feat: add tools, project section --- src/pages/Home.tsx | 103 +++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 76 insertions(+), 27 deletions(-) (limited to 'src/pages/Home.tsx') diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx index 9b73c05..3e65128 100644 --- a/src/pages/Home.tsx +++ b/src/pages/Home.tsx @@ -1,36 +1,85 @@ -import Gallery from "../components/Gallery"; +import { Badge } from "@/components/ui/badge"; +import { Button } from "@/components/ui/button"; +import { Card, CardTitle, CardDescription, CardContent } from "@/components/ui/card"; +import { Projects } from "@/data/projects"; +import { Tools } from "@/data/tools"; +import { Github, Linkedin, Mail } from "lucide-react"; export default function Home() { return ( <> - ߸ hi -

Hi, I'm Leander.

+ Hi, I'm Leander +
+
+ {/* Gradient Blob */} + +
+

Interests

+
    +
  • *nix systems
  • +
  • 3D printing
  • +
  • Homelab & self-hosting
  • +
+
-

- I have a passion for hardware and software, studying computer science. Currently building own 3d printing projects and learning nix. -

+
+

Tools & Technologies

+
+ {Tools.map((tool) => ( + +
+
+ {tool.name} +
+
+ {tool.name} + {tool.description} +
+
+
+ ))} +
+
- - -

A few things I'm interrested in:

- -
    -
  • Digital minimalism
  • -
  • *nix systems
  • -
  • 3D printing
  • -
  • Homelab / self-hosting
  • -
  • Seinen manga
  • -
+
+

Projects

+ +
+
); } -- cgit v1.3.1