From 01a06eaab3101266f05956410c55058700b093f8 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:22:11 +0000 Subject: [PATCH] Update components/hero.tsx --- components/hero.tsx | 56 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 components/hero.tsx diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..a48d2a0 --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,56 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Button } from "@/components/ui/button"; +import { motion } from "framer-motion"; + +export function Hero() { + return ( +
+ +
+ + + Skill-first learning platform helping Indian students discover, learn, and grow. + + + + + + We solve the problem of career confusion, boring theory-based learning, and lack of practical skills. + + + + + + + +
+
+ + {/* Background decoration */} +
+
+
+
+
+ ); +}