1- import HeroSection from "./sections/Hero";
2- import MissionVision from "./sections/MissionVision";
31import WhoWeAre from "./sections/WhoWeAre";
42import Offerings from "./sections/Offerings";
53import CoreValues from "./sections/CoreValues";
6- import TeamSection from "./sections/TeamSection";
7- import CallToAction from "./sections/CallToAction";
4+ import { Sparkles } from "lucide-react";
85
96const About = () => {
107 return (
118 <div className="min-h-screen bg-white dark:bg-gray-900 overflow-x-hidden">
12- <HeroSection />
13- <MissionVision />
9+ {/* <HeroSection /> */}
10+ <section className="relative overflow-hidden bg-gradient-to-br from-blue-900 via-purple-900 to-indigo-900 text-white">
11+ <div className="absolute inset-0 bg-[url('data:image/svg+xml,%3Csvg width=%2260%22 height=%2260%22 viewBox=%220 0 60 60%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cg fill=%22none%22 fill-rule=%22evenodd%22%3E%3Cg fill=%22%239C92AC%22 fill-opacity=%220.1%22%3E%3Ccircle cx=%2230%22 cy=%2230%22 r=%224%22/%3E%3C/g%3E%3C/g%3E%3C/svg%3E')] opacity-30"></div>
12+ <div className="relative max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-24 lg:py-32">
13+ <div className="text-center">
14+ <div className="flex justify-center mb-8">
15+ <div className="flex items-center space-x-2 bg-white/10 backdrop-blur-sm rounded-full px-6 py-3 border border-white/20">
16+ <Sparkles className="w-5 h-5 text-yellow-400" />
17+ <span className="text-sm font-medium">ABOUT CODEHARBORHUB</span>
18+ </div>
19+ </div>
20+ <h1 className="text-4xl md:text-6xl font-extrabold mb-6 bg-gradient-to-r from-white via-blue-200 to-purple-200 bg-clip-text text-transparent p-2">
21+ Where Knowledge Meets Innovation
22+ </h1>
23+ <p className="text-xl text-blue-100 mx-auto leading-relaxed">
24+ At CodeHarborHub, we believe that learning is more than just
25+ acquiring knowledge — it’s about transforming ideas into reality,
26+ creativity into innovation, and passion into purpose. Our mission
27+ is to empower learners, creators, and dreamers from every corner
28+ of the world to explore their potential, build real-world
29+ projects, and grow with a community that values collaboration and
30+ curiosity.
31+ </p>
32+ </div>
33+ </div>
34+ </section>
35+ {/* Our Mission */}
36+ <section className="py-20">
37+ <h2 className="text-4xl md:text-5xl text-center pb-6 font-bold">Our Mission</h2>
38+ <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
39+ <div className="grid lg:grid-cols-2 gap-12 items-center">
40+ <div>
41+ <div className="space-y-6">
42+ <p className="text-lg leading-relaxed">
43+ We're on a mission to democratize education and make
44+ high-quality learning accessible to everyone, regardless of
45+ their background, location, or financial circumstances.
46+ </p>
47+ <p className="text-lg leading-relaxed">
48+ By breaking down traditional barriers in tech education, we're
49+ creating pathways for millions to unlock their potential and
50+ build the skills needed for tomorrow's world.
51+ </p>
52+ </div>
53+ </div>
54+ <div className="rounded-2xl bg-white dark:bg-gray-700 p-8 shadow-lg border border-gray-100">
55+ <div className="grid grid-cols-2 gap-6 text-center">
56+ <div className="p-4 bg-blue-50 dark:bg-gray-800 rounded-xl">
57+ <div className="text-3xl font-bold text-blue-600 mb-2">
58+ 10M+
59+ </div>
60+ <div className="text-sm">Learners Worldwide</div>
61+ </div>
62+ <div className="p-4 bg-purple-50 dark:bg-gray-800 rounded-xl">
63+ <div className="text-3xl font-bold text-purple-600 mb-2">
64+ 50+
65+ </div>
66+ <div className="text-sm">Expert Instructors</div>
67+ </div>
68+ <div className="p-4 bg-green-50 dark:bg-gray-800 rounded-xl">
69+ <div className="text-3xl font-bold text-green-600 mb-2">
70+ 100+
71+ </div>
72+ <div className="text-sm">Courses Available</div>
73+ </div>
74+ <div className="p-4 bg-orange-50 dark:bg-gray-800 rounded-xl">
75+ <div className="text-3xl font-bold text-orange-600 mb-2">
76+ 150+
77+ </div>
78+ <div className="text-sm">Countries Reached</div>
79+ </div>
80+ </div>
81+ </div>
82+ </div>
83+ </div>
84+ </section>
1485 <WhoWeAre />
1586 <Offerings />
1687 <CoreValues />
17- <TeamSection />
18- <CallToAction />
1988 </div>
2089 );
2190};
2291
23- export default About;
92+ export default About;
0 commit comments