import { Compass, Layers3, Users } from "lucide-react"; import { MotionFade } from "@/components/motion-fade"; import { resolveLocale } from "@/lib/site-data"; type AboutPageProps = { params: { locale: string; }; }; export default function AboutPage({ params: { locale } }: AboutPageProps) { const localeKey = resolveLocale(locale); const copy = localeKey === "de" ? { title: "Ueber uns", intro: "Wir bauen klare digitale Erlebnisse fuer Marken, Produkte und Teams.", valuesTitle: "Wie wir arbeiten", valueA: "Strategie zuerst", valueAText: "Jedes Projekt startet mit Zielbild, Scope und Prioritaeten.", valueB: "Saubere Systeme", valueBText: "Wir setzen auf wartbare Komponenten und klare Strukturen.", valueC: "Enge Zusammenarbeit", valueCText: "Kurze Schleifen mit direktem Feedback im gesamten Ablauf.", processTitle: "Unser Ablauf", processOne: "Discovery und Zieldefinition", processTwo: "Design und Prototyping", processThree: "Build, Test und Launch", } : { title: "About", intro: "We build clear digital experiences for brands, products and teams.", valuesTitle: "How we work", valueA: "Strategy first", valueAText: "Each project starts with goals, scope and priorities.", valueB: "Clean systems", valueBText: "We rely on maintainable components and clear structure.", valueC: "Close collaboration", valueCText: "Short loops with direct feedback across the full process.", processTitle: "Our process", processOne: "Discovery and goal definition", processTwo: "Design and prototyping", processThree: "Build, test and launch", }; return (

{copy.title}

{copy.intro}

{copy.valuesTitle}

{copy.valueA}

{copy.valueAText}

{copy.valueB}

{copy.valueBText}

{copy.valueC}

{copy.valueCText}

{copy.processTitle}

    {[copy.processOne, copy.processTwo, copy.processThree].map((step, index) => (
  1. {index + 1}

    {step}

  2. ))}
); }