From d8251de74cb1f37a5a723d4ad74d5ef10983d1ba Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:22:13 +0000 Subject: [PATCH] Update components/business-gtm.tsx --- components/business-gtm.tsx | 104 ++++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 components/business-gtm.tsx 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} +
+ ))} +
+
+
+
+ +
+ ); +}