'use client'; import Hero from "@/components/content/Hero"; import Testimonials from "@/components/content/Testimonials"; import RotatingWord from "@/components/content/RotatingWord"; import SectionLabel from "@/components/layout/SectionLabel"; import AccentLink from "@/components/navigation/AccentLink"; import ProjectCard from "@/components/content/ProjectCard"; import { testimonials, projects } from "@/constants"; export default function HomePage() { return (

I'm{" "} .

I build software people actually use, and I care about the people on the other side of it as much as the code.

I'll pick up whatever a problem needs and keep digging until it works. The constant isn't a particular stack — it's the curiosity that got me here.

{/* Projects */}
{projects.slice(0,3).map((project, index) => ( ))}
{/* Testimonials */}
); }