import { Server, Database, Shield, Gauge } from "lucide-react" const highlights = [ { icon: Server, label: "Backend Architecture" }, { icon: Database, label: "Database Design" }, { icon: Shield, label: "Security" }, { icon: Gauge, label: "Performance" }, ] export function About() { return (
{/* Section label */}

About

{/* Content */}

I'm a backend developer who cares about what happens after the request hits the server. My work is focused on building reliable, maintainable systems. APIs that don't break, databases that stay fast, infrastructure that handles real-world load.

As co-founder of{" "} crowware.com , I've learnt that good engineering isn't about using the newest tools. It's about making pragmatic choices that serve the product and the team. I prefer boring technology that works over shiny frameworks that don't.

When I write code, I think about the person who has to maintain it at 2am. I optimize for clarity, readability and the ability to debug production issues without losing sleep. (also for my own sanity)

{/* Highlight badges */}
{highlights.map((item) => (
{item.label}
))}
) }