diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..45e22e8 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,149 @@ +"use client"; + +import { ThemeProvider } from "@/components/theme/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; +import TeamCardFive from "@/components/sections/team/TeamCardFive"; +import TimelineCardStack from "@/components/cardStack/layouts/timelines/TimelineCardStack"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; +import { Users, Sparkles } from "lucide-react"; + +export default function About() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "FAQ", id: "/faq" }, + { name: "Contact", id: "/contact" }, + ]; + + return ( + + + +
+ +
+ +
+ +
+

2020: The Beginning

+

+ A group of passionate automotive engineers and designers gathered online to share ideas and collaborate on projects. What started as a small Discord server quickly grew into something much larger. +

+
+
+

2021: Community Growth

+

+ We launched our official platform and community hub. Within months, we reached 2,000 active members and began hosting monthly virtual meetups and project showcases. +

+
+
+

2022: Global Expansion

+

+ CarLed expanded internationally with regional chapters in North America, Europe, and Asia. We launched collaborative tools for project management and knowledge sharing. +

+
+
+

2023: Innovation Hub

+

+ We established partnerships with leading automotive brands and launched our innovation fund to support cutting-edge community projects and research initiatives. +

+
+
+

2024: The Future

+

+ Today, CarLed stands as the go-to community for petrolheads worldwide. We're committed to driving innovation, fostering collaboration, and celebrating the automotive passion that unites us all. +

+
+
+
+ +
+ +
+ + +
+ ); +}