import Link from "next/link"; import { Navigation } from "@/components/navigation"; import { BlogCard } from "@/components/blog-card"; import { ProjectCard } from "@/components/project-card"; import { getBlogPosts, getProjects } from "@/lib/content"; import { ArrowRight } from "lucide-react"; export default function Home() { const allPosts = getBlogPosts(); const recentPosts = allPosts.slice(0, 3); const allProjects = getProjects(); const recentProjects = allProjects.slice(0, 3); return (

Hi, I'm Alex Muszynski.

I'm a tinkerer that works in the realm of software. Welcome to my portfolio where I share my projects and thoughts on tech.

Learn more about me

Recent Posts

View all posts
{recentPosts.map((post) => ( ))}

Recent Projects

View all projects
{recentProjects.map((project) => ( ))}
); }