From 66b4412514d52802786ca1ee765589a1312717ae Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 16:27:21 +0000 Subject: [PATCH] Update components/about.tsx --- components/about.tsx | 75 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 components/about.tsx diff --git a/components/about.tsx b/components/about.tsx new file mode 100644 index 0000000..57b1fb1 --- /dev/null +++ b/components/about.tsx @@ -0,0 +1,75 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { motion } from "framer-motion"; +import { Award, Users, Rocket, Heart } from "lucide-react"; + +const stats = [ + { number: "150+", label: "Projects Delivered", icon: Rocket }, + { number: "50+", label: "Happy Clients", icon: Heart }, + { number: "25+", label: "Team Members", icon: Users }, + { number: "15+", label: "Awards Won", icon: Award }, +]; + +export function About() { + return ( +
+ +
+ + About NEXUS +
+

+ We're a collective of designers, developers, and strategists who believe in the power of exceptional digital experiences. +

+

+ Founded in 2018, NEXUS has grown from a small studio to an award-winning agency, working with startups and Fortune 500 companies alike. +

+

+ Our approach combines creative excellence with technical expertise, ensuring every project not only looks stunning but performs flawlessly. +

+

+ We don't just build websites—we craft digital experiences that drive real business results. +

+
+
+ + + {stats.map((stat, index) => { + const Icon = stat.icon; + return ( + + +
+ {stat.number} +
+
+ {stat.label} +
+
+ ); + })} +
+
+
+
+ ); +}