/** * Campaign demo data โ€” "MycoFi Earth Launch" campaign. * * Extracted from server/seed-campaign.ts. This data drives the * /campaign page in rSocials and the /api/campaigns endpoint. */ export interface CampaignPost { id: string; platform: string; postType: string; stepNumber: number; content: string; scheduledAt: string; status: string; hashtags: string[]; phase: number; phaseLabel: string; } export interface Campaign { id: string; title: string; description: string; duration: string; platforms: string[]; phases: { name: string; label: string; days: string }[]; posts: CampaignPost[]; } const PLATFORM_ICONS: Record = { x: "๐•", linkedin: "in", instagram: "๐Ÿ“ท", youtube: "โ–ถ๏ธ", threads: "๐Ÿงต", bluesky: "๐Ÿฆ‹", }; const PLATFORM_COLORS: Record = { x: "#000000", linkedin: "#0A66C2", instagram: "#E4405F", youtube: "#FF0000", threads: "#000000", bluesky: "#0085FF", }; export { PLATFORM_ICONS, PLATFORM_COLORS }; export const MYCOFI_CAMPAIGN: Campaign = { id: "mycofi-earth-launch", title: "MycoFi Earth Launch Campaign", description: "Multi-platform product launch campaign for MycoFi Earth โ€” a regenerative finance platform modeled on mycelial networks.", duration: "Feb 21โ€“25, 2026 (5 days)", platforms: ["X", "LinkedIn", "Instagram", "YouTube", "Threads", "Bluesky"], phases: [ { name: "pre-launch", label: "Pre-Launch Hype", days: "Day -3 to -1" }, { name: "launch", label: "Launch Day", days: "Day 0" }, { name: "amplification", label: "Amplification", days: "Day +1" }, ], posts: [ { id: "post-x-teaser", platform: "x", postType: "thread", stepNumber: 1, content: "Something is growing in the mycelium... ๐Ÿ„\n\nFor the past 2 years, we've been building the infrastructure for a regenerative economy.\n\nOn Feb 24, we reveal everything.\n\nA thread on why the old financial system is composting itself ๐Ÿงต๐Ÿ‘‡", scheduledAt: "2026-02-21T09:00:00", status: "scheduled", hashtags: ["MycoFi", "RegenFinance", "Web3", "ComingSoon"], phase: 1, phaseLabel: "Pre-Launch Hype", }, { id: "post-linkedin-thought", platform: "linkedin", postType: "article", stepNumber: 2, content: "The regenerative finance movement isn't just about returns โ€” it's about redesigning incentive structures from the ground up.\n\nIn this article, I break down why mycelial network theory offers the best model for decentralized economic coordination.\n\n3 key insights from 2 years of building MycoFi Earth...", scheduledAt: "2026-02-22T11:00:00", status: "scheduled", hashtags: ["RegenerativeFinance", "DeFi", "SystemsThinking", "Leadership"], phase: 1, phaseLabel: "Pre-Launch Hype", }, { id: "post-ig-carousel", platform: "instagram", postType: "carousel", stepNumber: 3, content: "5 Ways Mycelium Networks Mirror the Future of Finance ๐ŸŒ๐Ÿ„\n\nSlide 1: The problem with extractive finance\nSlide 2: How mycelium redistributes nutrients\nSlide 3: Token-weighted funding circles\nSlide 4: Community governance that actually works\nSlide 5: Join the launch โ€” Feb 24", scheduledAt: "2026-02-23T14:00:00", status: "scheduled", hashtags: ["MycoFi", "RegenerativeEconomy", "Infographic", "Web3Education"], phase: 1, phaseLabel: "Pre-Launch Hype", }, { id: "post-yt-launch", platform: "youtube", postType: "video", stepNumber: 4, content: "MycoFi Earth โ€” Official Launch Video\n\nThe regenerative economy starts here. Watch how mycelial intelligence is reshaping finance, governance, and community coordination.\n\nFeaturing interviews with 12 builders from the ecosystem.\n\n[18:42]", scheduledAt: "2026-02-24T10:00:00", status: "draft", hashtags: ["MycoFiLaunch", "RegenerativeFinance", "Documentary", "Web3"], phase: 2, phaseLabel: "Launch Day", }, { id: "post-x-launch", platform: "x", postType: "thread", stepNumber: 5, content: "๐Ÿ„ MycoFi Earth is LIVE ๐Ÿ„\n\nAfter 2 years of building, the regenerative finance platform is here.\n\nWhat is it?\nโ€ข Token-weighted funding circles\nโ€ข Mycelial governance (no whales)\nโ€ข Composting mechanism for failed proposals\nโ€ข 100% on-chain, 100% community-owned\n\n๐Ÿ‘‡ Full breakdown thread", scheduledAt: "2026-02-24T10:15:00", status: "draft", hashtags: ["MycoFi", "Launch", "RegenFinance", "DeFi", "DAO"], phase: 2, phaseLabel: "Launch Day", }, { id: "post-linkedin-launch", platform: "linkedin", postType: "text", stepNumber: 6, content: "Today we're launching MycoFi Earth โ€” a regenerative finance platform modeled on mycelial networks.\n\nWhy it matters for the future of organizational design:\n\n1. Composting mechanism: Failed proposals return resources to the network\n2. Nutrient routing: Funds flow to where they're needed most\n3. No single point of failure: True decentralization\n\nFull video + docs in comments โ†“", scheduledAt: "2026-02-24T11:00:00", status: "draft", hashtags: ["Launch", "RegenerativeFinance", "Innovation", "FutureOfWork"], phase: 2, phaseLabel: "Launch Day", }, { id: "post-ig-reel", platform: "instagram", postType: "reel", stepNumber: 7, content: "60-second explainer: How MycoFi Earth works ๐Ÿ„โœจ\n\nVisual breakdown of the token flow from contributor โ†’ funding circle โ†’ project โ†’ compost.\n\nSet to lo-fi beats with mycelium time-lapse footage.\n\nCTA: Link in bio to join the first funding circle.", scheduledAt: "2026-02-25T12:00:00", status: "draft", hashtags: ["MycoFi", "RegenFinance", "Explainer", "Web3", "Reels"], phase: 3, phaseLabel: "Amplification", }, { id: "post-threads-xpost", platform: "threads", postType: "text", stepNumber: 8, content: "We just launched MycoFi Earth and the response has been incredible ๐ŸŒŸ\n\nThe idea is simple: what if finance worked like mycelium?\n\nMycelium doesn't hoard โ€” it redistributes. MycoFi applies that logic to community funding.\n\nEarly access is open. Come grow with us ๐ŸŒฑ", scheduledAt: "2026-02-25T14:00:00", status: "draft", hashtags: ["MycoFi", "RegenEconomy", "Community"], phase: 3, phaseLabel: "Amplification", }, { id: "post-bluesky-launch", platform: "bluesky", postType: "text", stepNumber: 9, content: "MycoFi Earth just went live ๐Ÿ„\n\nIt's a regenerative finance platform where funding flows like nutrients through a mycelial network.\n\nNo VCs. No whales. Just communities funding what matters.\n\nmycofi.earth", scheduledAt: "2026-02-25T15:00:00", status: "draft", hashtags: ["MycoFi", "RegenFinance", "Bluesky"], phase: 3, phaseLabel: "Amplification", }, ], };