Files
ai-creator-partnership/app/contact/page.tsx
T
2026-07-21 13:06:43 +02:00

3 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { ContactForm } from "../../components/ContactForm";import { PageHero } from "../../components/PageHero";import { SiteShell } from "../../components/SiteShell";
export default function Contact(){return <SiteShell><main><PageHero eyebrow="START A PARTNERSHIP" title={<>Your next growth curve<br/>starts with an <span className="accent">honest conversation</span>.</>} description="Share a few details about your creator profile and goals. Well identify the strongest opportunity to validate before designing a deeper partnership."/><section className="section shell contact"><aside><p className="kicker">WHAT HAPPENS NEXT</p><h2>What happens after you submit?</h2><ol>{[["01","Partnership Fit Review","We assess whether the timing and opportunity are a strong fit."],["02","Priority Opportunity","We recommend the most valuable scenario to test first."],["03","Next-Step Conversation","If there is a strong fit, we move into solution design."]].map(x=><li key={x[0]}><span>{x[0]}</span><div><strong>{x[1]}</strong><p>{x[2]}</p></div></li>)}</ol><div className="privacy"><strong>Privacy Note</strong><p>Do not submit identity documents, account passwords, or confidential business information.</p></div></aside><ContactForm/></section></main></SiteShell>}