"use client"; import { m, useReducedMotion } from "motion/react"; import { featuredDossier } from "@/lib/portfolio"; const fieldRows = [ { label: "MISSION", value: featuredDossier.mission }, { label: "CONSTRAINT", value: featuredDossier.constraint ?? "—" }, { label: "SYSTEM", value: featuredDossier.system }, { label: "RESULT", value: featuredDossier.result }, ]; export function FeaturedDossier() { const shouldReduceMotion = useReducedMotion(); return (

FEATURED /.01

{fieldRows.map((row) => (

{row.label}

{row.value}

))}
); }