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, Mail } from "lucide-react"; export default function Home() { return ( <> ߸ home
{/* Gradient Blob */}

Interests

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

Tools & Technologies

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

Projects

{Projects.map((project) => ( {project.name} {project.name} {project.description}
{project.badges.map((badge) => ( {badge} ))}
))}
); }