app-stellar-gecko-hug/components/hero.tsx

57 lines
2.3 KiB
TypeScript

"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 (
<section className="relative pt-32 pb-20 md:pt-48 md:pb-32 overflow-hidden">
<Container className="relative z-10">
<div className="flex flex-col items-center text-center max-w-4xl mx-auto">
<motion.div
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.5 }}
>
<Heading className="text-4xl md:text-6xl lg:text-7xl font-bold tracking-tight">
Skill-first learning platform helping Indian students <span className="text-blue-600">discover, learn, and grow.</span>
</Heading>
</motion.div>
<motion.div
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.5, delay: 0.1 }}
>
<Subheading className="mt-6 text-lg md:text-xl text-neutral-600 max-w-2xl">
We solve the problem of career confusion, boring theory-based learning, and lack of practical skills.
</Subheading>
</motion.div>
<motion.div
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.5, delay: 0.2 }}
className="flex flex-col sm:flex-row gap-4 mt-10"
>
<Button size="lg" className="h-12 px-8 text-base font-medium">
Start Skill Discovery
</Button>
<Button size="lg" variant="outline" className="h-12 px-8 text-base font-medium">
View Platform Vision
</Button>
</motion.div>
</div>
</Container>
{/* Background decoration */}
<div className="absolute top-0 left-1/2 -translate-x-1/2 w-full h-full -z-10 opacity-10 pointer-events-none">
<div className="absolute top-[-10%] left-[-10%] w-[40%] h-[40%] bg-blue-400 rounded-full blur-[120px]" />
<div className="absolute bottom-[-10%] right-[-10%] w-[40%] h-[40%] bg-indigo-400 rounded-full blur-[120px]" />
</div>
</section>
);
}