import { ToolsGrid } from "@/components/tools-grid"; import { ProjectsGrid } from "@/components/projects-grid"; import { PostCard } from "@/components/post-card"; import { compareDesc } from 'date-fns' import { allPosts } from 'contentlayer/generated' import MapWrapper from "@/components/map-wrapper"; export default function Home() { const posts = allPosts.sort((a, b) => compareDesc(new Date(a.date), new Date(b.date))) return ( <>

Hi, I'm Leander.

Passionate about hardware & software, pursuing computer science studies. Currently building 3D-printing projects and exploring homelabing.

{posts.map((post, idx) => ( ))}
); }