import { useState } from "react"; const TOOL_URL = "https://www.the360.coach/360-financial-freedom-index"; const posts = [ { day: "Day 1", platform: "LinkedIn", format: "Rewritten Original", label: "Personal Story", color: "#3b82f6", hook: "If you stopped working tomorrow — how long would your money last?", body: `A few years ago, I actually modelled this for myself. The numbers surprised me. I was earning well. Saving consistently. Investing regularly. But when I adjusted for inflation, education costs, and 30+ years of post-retirement expenses — The gap was real. Not alarming. But real. That exercise didn't create fear. It created direction. I knew exactly what needed to change — and by how much. That's what led me to build the 360 Financial Freedom Index™. It answers one question clearly: Are you actually on track — or just feeling on track? 3 minutes. No guesswork. 🔗 Link in first comment. Do you know your exact retirement corpus requirement right now? Comment Yes or Not yet ↓`, comment: `Take the 360 Financial Freedom Index™ here (3 mins): ${TOOL_URL}`, hashtags: ["#FinancialFreedom", "#RetirementPlanning", "#PersonalFinanceIndia"], tip: "Post Tuesday or Wednesday 8–10am. Drop the link as the first comment immediately after posting. Pin that comment.", }, { day: "Day 3", platform: "LinkedIn", format: "Client Story", label: "Disguised Case Study", color: "#f59e0b", hook: "He earned ₹40L a year. His Financial Freedom Index score: 48/100.", body: `A senior executive came to me recently. 14 years at the same company. Solid salary. Annual bonuses. Two properties. On paper — doing great. But he'd never run the actual numbers. When we did: → His retirement corpus requirement: ₹8.2Cr → His projected corpus at 55: ₹4.1Cr → His gap: ₹4.1Cr He wasn't broke. He wasn't reckless. He just had a false sense of security built on income — not capital. That one session changed how he thought about money entirely. The 360 Financial Freedom Index™ does in 3 minutes what took us a full session. It shows you exactly where you stand — before it's too late to course-correct. 🔗 Link in first comment. Are you confident you know your actual retirement gap? Comment below 👇`, comment: `Calculate your 360 Financial Freedom Index™ (free, 3 mins): ${TOOL_URL}`, hashtags: ["#WealthBuilding", "#FinancialPlanning", "#ExecutiveCoaching"], tip: "Change the numbers if needed — but keep it specific. Specific numbers (₹8.2Cr, not 'a lot') are what make people stop scrolling.", }, { day: "Day 5", platform: "LinkedIn", format: "Poll Post", label: "Engagement Poll", color: "#8b5cf6", hook: "Quick poll for professionals aged 35–52:", body: `Do you know your exact retirement corpus requirement right now? A) Yes — I've calculated it properly B) I have a rough estimate C) Not really D) Never thought about it Most people I speak to vote B or C. They're saving. They're investing. But they haven't run the actual inflation-adjusted numbers. The gap between "I think I'm okay" and "I know I'm okay" is often ₹2–5Cr. If you're curious where you actually stand — I built a tool for exactly this. 3 minutes. No signup required upfront. 🔗 Link in first comment.`, comment: `Find out your actual score here: ${TOOL_URL}`, hashtags: ["#FinancialIndependence", "#RetirementPlanning", "#MoneyMindset"], tip: "Polls get 3–5x the reach of regular posts on LinkedIn. Comment on every reply — the algorithm rewards conversation velocity in the first 60 minutes.", }, { day: "Day 7", platform: "LinkedIn", format: "Provocative Stat", label: "Pattern Interrupt", color: "#ef4444", hook: "Most Indian professionals will retire underprepared. Not because they didn't earn enough.", body: `Because they never calculated the actual number. Here's what most people miss: At 6% inflation, ₹1.5L/month today becomes ₹4.8L/month in 20 years. That means a ₹2Cr corpus — which sounds safe — lasts roughly 4 years at retirement. Not 20. The math isn't scary. It's just unfamiliar. And once you see it clearly, everything changes: → How much you save → Where you invest → When you can actually stop I built the 360 Financial Freedom Index™ to make this calculation take 3 minutes, not 3 hours. It gives you a score, your corpus requirement, and your actual gap. No jargon. No signup wall. 🔗 Link in first comment. What number do you think you need to retire comfortably? Drop it below — let's see the range 👇`, comment: `Calculate your actual retirement readiness in 3 mins: ${TOOL_URL}`, hashtags: ["#PersonalFinanceIndia", "#FinancialFreedom", "#WealthBuilding"], tip: "The inflation math is the hook here. People will share this if the numbers feel real to them — so keep the figures India-specific.", }, { day: "WhatsApp", platform: "WhatsApp", format: "1-on-1 Message", label: "Personal Outreach", color: "#22c55e", hook: "For 10–15 people you know personally who fit the profile", body: `Hey [Name], was thinking of you — I built a tool for executives and professionals trying to figure out if they're actually on track for financial independence. Takes 2 minutes. Shows you a score and your exact corpus gap. Curious what number you'd get: ${TOOL_URL} Let me know what your score is! 😊`, comment: "", hashtags: [], tip: "Send this 1-on-1, NOT to groups. Personalise the first line if you can ('was thinking of you after our conversation last week'). This will have a 40–60% response rate if sent personally.", }, { day: "Instagram", platform: "Instagram", format: "Carousel / Reel Hook", label: "Awareness Content", color: "#ec4899", hook: "5 signs you might be behind on financial freedom (even if you feel okay)", body: `Slide 1: 5 signs you might be behind on financial freedom — even if you feel okay Slide 2: You're saving, but haven't calculated your actual corpus requirement Slide 3: Your lifestyle costs are growing faster than your investments Slide 4: You've never inflation-adjusted your retirement expenses Slide 5: Your plan is "I'll figure it out later" — and later is getting closer Slide 6: You don't know your Financial Freedom Score Caption: Most professionals feel financially okay — but haven't run the actual numbers. The 360 Financial Freedom Index™ tells you exactly where you stand in 3 minutes. Link in bio → Take the free assessment`, comment: "", hashtags: ["#FinancialFreedom", "#PersonalFinance", "#MoneyTips", "#RetirementIndia", "#FinancialIndependence"], tip: "For Reels: record yourself asking 'Do you know how long your money would last if you stopped working tomorrow?' — no editing needed. Just the question, then 'link in bio to find out'. Authenticity beats polish on Instagram.", }, ]; const platformColors = { LinkedIn: "#0a66c2", WhatsApp: "#25d366", Instagram: "#e1306c", }; const platformIcons = { LinkedIn: "in", WhatsApp: "W", Instagram: "IG", }; export default function ContentCalendar() { const [active, setActive] = useState(0); const [copied, setCopied] = useState(null); const copy = (text, key) => { navigator.clipboard.writeText(text); setCopied(key); setTimeout(() => setCopied(null), 2000); }; const post = posts[active]; const fullPost = `${post.hook}\n\n${post.body}${post.hashtags.length ? "\n\n" + post.hashtags.join(" ") : ""}`; return ( <>
360 Financial Freedom Index™
Your Lead Generation
Content Playbook
6 posts · 3 platforms · ready to copy & post
{posts.map((p, i) => ( ))}
{/* Meta */}
{platformIcons[post.platform]} {post.platform}
{post.format}
{/* Hook */}
Opening Hook
{post.hook}
{/* Full post */}
Full Post Body
{post.body}
{post.hashtags.length > 0 && (
{post.hashtags.map((h) => ( {h} ))}
)}
{/* First comment */} {post.comment && (
📌 Post as First Comment (not in the post body)
{post.comment}
)} {/* Tip */}
💡 Posting tip: {post.tip}
{/* Copy buttons */}
{post.comment && ( )}
); }