"use client"; import { m, useReducedMotion } from "motion/react"; import { manifesto } from "@/lib/portfolio"; export function Manifesto() { const shouldReduceMotion = useReducedMotion(); const [beforeSurvive, afterSurvive = ""] = manifesto.split("survive contact"); const [betweenAccents, afterProof = ""] = afterSurvive.split("proof"); return (

OPERATING PRINCIPLE

{beforeSurvive} survive contact {betweenAccents} proof {afterProof}

); }