import React, { useState } from 'react';
import { Sparkles, Zap, Newspaper, Heart, BarChart3, Layers, Rocket, Target } from 'lucide-react';
const StrategyCard = ({ label, title, content, icon: Icon }) => {
const [isFlipped, setIsFlipped] = useState(false);
const handleFlip = () => {
setIsFlipped(!isFlipped);
};
return (
{/* --- Front of Card --- */}
{/* Neon Glowing Corner Animation */}
{/* Top Left */}
{/* Top Right */}
{/* Bottom Left */}
{/* Bottom Right */}
{/* Decorative Markers */}
+
+
+
+
{/* Front Content */}
{label}
{title}
{/* --- Back of Card --- */}
{/* Decorative Markers (Back) */}
+
+
+
+
{title}
{content}
);
};
export default function App() {
// Strategy Data Mapped from your content
const strategyData = [
{
id: 1,
label: "Bucket 01",
title: "Motivation + Build-in-Public",
icon: Zap,
content: "• Focused on motivating viewers to build, vibe-code, and generate apps using real case studies.\n• Inspires action rather than just consumption.\n• Uses high-energy BGM to keep engagement high.\n• Case-study-driven storytelling helps viewers relate.\n\nResult: Contributing significantly to follower growth and bonding."
},
{
id: 2,
label: "Bucket 02",
title: "AI Updates & Breaking News",
icon: Newspaper,
content: "• We cover major developments: Google launches, new AI tools, Agents, and updates.\n• Speed is the key differentiator.\n• Positions the account as a go-to source for AI.\n\nResult: Consistently drives high reach and visibility."
},
{
id: 3,
label: "Bucket 03",
title: "Resource-First Content",
icon: Heart,
content: "• Purely designed to give back to the audience.\n• Intent is long-term trust and attachment, not immediate conversion.\n• Resources act as a strong follower acquisition lever."
},
{
id: 4,
label: "Metrics",
title: "Case Study Performance",
icon: BarChart3,
content: "Strong Top-of-Funnel Performance:\n\n• Motivation + Case Study videos have crossed 46K and 12K views.\n• Update-based content has hit 87.6K and 21.9K views."
},
{
id: 5,
label: "Format",
title: "Carousels + Heavy Resources",
icon: Layers,
content: "• Experimenting with light but resource-dense carousels.\n• These are performing exceptionally well for Saves and Shares.\n• Validates that the audience values density of information."
},
{
id: 6,
label: "Next Steps",
title: "Short-Term Plan",
icon: Rocket,
content: "1. Double down on Agentic AI videos (focus on market disruptors).\n2. Introduce Ajay’s tutorial snippets from sessions.\n\nWhy? Core content buckets are already validated and working."
},
{
id: 7,
label: "Summary",
title: "Overall Strategy",
icon: Target,
content: "The strategy is stable, scalable, and performance-driven.\n\nWe have clear buckets serving specific goals:\n• Reach\n• Engagement\n• Trust\n• Growth"
}
];
return (
{/* Background Ambience */}
{/* Header Section */}
{/* Cards Grid */}
{strategyData.map((item) => (
))}
{/* Footer */}
{/* Global CSS for 3D Transforms and Scrollbars */}
);
}