{copy.valueA}
{copy.valueAText}
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.intro}
{copy.valueAText}
{copy.valueBText}
{copy.valueCText}
{step}