import { Code } from "lucide-react" const principles = [ { title: "Reliability over cleverness", description: "Clever code is fun to write and painful to debug. I optimize for systems that fail gracefully and recover quickly.", }, { title: "Measure before optimizing", description: "Intuition about performance is usually wrong. Profile first, optimize the actual bottleneck, verify the improvement.", }, { title: "Boring technology", description: "New tools have unknown failure modes. I prefer proven solutions unless there's a compelling reason to experiment.", }, { title: "Make it debuggable", description: "Good logs, clear error messages, and observability aren't afterthoughts. They're how you survive production.", }, ] export function Philosophy() { return (
{/* Section label */}

How I Build

{/* Content */}
{/* Code block syle quote */}
philosophy.md
                                
                                    {`# Engineering principles

The best code is code you don't have to think about.
It handles edge cases, logs what matters, and
fails in predictable ways.

Ship small, ship often, and always have a rollback plan.`}
                                
                            
{/* Principles grid */}
{principles.map((principle) => (

{principle.title}

{principle.description}

))}
) }