"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}
); })}
); }