import { CaseStudyFlipStack } from "@/components/ui/case-study-flip-stack"export default function WorkPage() {
return (
<CaseStudyFlipStack
items={[
{
eyebrow: "Fintech",
title: "Boosted conversion by 42% with a product-led redesign",
description: "We rebuilt onboarding around the moments that matter.",
image: "/work/fintech.jpg",
imageAlt: "Portrait from the fintech campaign",
background: "#a94808",
foreground: "#fff7ed",
},
{
eyebrow: "Hospitality",
title: "A slower digital experience for a faster-growing retreat",
description: "A cinematic booking journey with a stronger sense of place.",
image: "/work/retreat.jpg",
imageAlt: "A mountain retreat at dusk",
background: "#067b8f",
foreground: "#ecfeff",
},
]}
/>
)
}