Files
2026-07-21 13:19:18 +02:00

4 lines
2.5 KiB
TypeScript

import Link from "next/link";import { PageHero } from "../../components/PageHero";import { SiteShell } from "../../components/SiteShell";
const steps=[["01","Partnership Diagnosis","Review your content assets, core audience, platform mix, and commercial goals to identify the highest-priority opportunity.","Opportunity Map"],["02","Avatar Model & Boundaries","Choose a current-image avatar, an iconic younger-era avatar, or a fully original digital human. Then define the persona, story, use cases, authorization scope, and review rules.","Digital Human IP Guide"],["03","AI Avatar Production","Calibrate authorized avatars from photos, videos, and voice assets—or build an original digital human from appearance, voice, personality, and content universe.","Testable Version"],["04","Focused Validation","Start with one platform or use case and measure reach, engagement, retention, and payment signals.","Validation Data"],["05","Scale Growth","Expand content formats, channels, and monetization paths into a repeatable operating rhythm.","Long-Term Growth Plan"]];
export default function Process(){return <SiteShell><main><PageHero eyebrow="HOW WE WORK" title={<>From our first conversation<br/>to a <span className="accent">long-term growth system</span></>} description="We begin with focused validation, keeping every step visible, controlled, and measurable. The partnership expands as real results emerge." extra={<Link className="btn primary small" href="/contact">Start a Partnership Review <b></b></Link>}/><section className="section shell process-list">{steps.map(x=><article key={x[0]}><span>{x[0]}</span><h2>{x[1]}</h2><p>{x[2]}</p><strong>DELIVERABLE: {x[3]}</strong></article>)}</section><section className="section dark"><div className="shell principles"><div><p className="kicker">OUR PRINCIPLES</p><h2>You stay in control<br/>throughout the partnership</h2></div><div>{[["01","Validate Before Scaling","Let real feedback guide investment."],["02","Set Boundaries Before Creating","Content and interactions stay within the authorized scope."],["03","Prioritize Long-Term Value","Never sacrifice fan trust for short-term results."]].map(x=><article key={x[0]}><span>{x[0]}</span><strong>{x[1]}</strong><p>{x[2]}</p></article>)}</div></div></section><section className="cta compact shell"><div><p className="kicker">READY WHEN YOU ARE</p><h2>Tell us what you want to solve first</h2></div><Link className="btn primary" href="/contact">Submit Your Interest <b></b></Link></section></main></SiteShell>}