diff --git a/components/business-gtm.tsx b/components/business-gtm.tsx new file mode 100644 index 0000000..4fe8043 --- /dev/null +++ b/components/business-gtm.tsx @@ -0,0 +1,104 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Card, CardHeader, CardTitle, CardContent } from "@/components/ui/card"; +import { TrendingUp, Users, Globe, ShieldCheck } from "lucide-react"; + +export function BusinessGTM() { + return ( +
+ +
+ {/* Business Model */} +
+ Business Model +
+ + + + Subscription ₹500/month + + + +

Access to all skill roadmaps, projects, and community.

+
+
+ + + Certifications + + +

Secondary revenue from industry-recognized skill badges.

+
+
+
+
+

CAC

+

₹150

+
+
+

LTV

+

₹4500

+
+
+

Margin

+

85%

+
+
+
+
+ + {/* GTM Strategy */} +
+ Go-To-Market +
+
+ +
+

Influencers

+

Collabs with education creators.

+
+
+
+ +
+

Referrals

+

Student-led growth loops.

+
+
+
+ +
+

College Events

+

Live workshops and clubs.

+
+
+
+ +
+

Scalability

+

AI layer for millions of users.

+
+
+
+ +
+

Vision for Scale

+
+ {[1000, 10000, 50000, "1M+"].map((val, i) => ( +
+
+ {val} +
+ ))} +
+
+
+
+ +
+ ); +}