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

OPERATING PRINCIPLE

{beforeSurvive} {SURVIVE_PHRASE} {betweenAccents} {PROOF_PHRASE} {afterProof}

); }