"use client"; import { motion } from "framer-motion"; import { Users, Target, Lightbulb, ShieldCheck, Linkedin } from "lucide-react"; import Image from "next/image"; import Link from "next/link"; const leaders = [ { name: "Amit Sharma", role: "Founder & CEO", image: "https://images.unsplash.com/photo-1595152772835-219674b2a8a6?crop=faces&fit=crop&w=400&q=80", linkedin: "#", }, { name: "Neha Verma", role: "Head of Product", image: "https://images.unsplash.com/photo-1595152772835-219674b2a8a6?crop=faces&fit=crop&w=400&q=80", linkedin: "#", }, { name: "Rahul Mehta", role: "CTO", image: "https://images.unsplash.com/photo-1595152772835-219674b2a8a6?crop=faces&fit=crop&w=400&q=80", linkedin: "#", }, ]; export default function AboutUs() { return (
{/* HERO */}
Empowering Businesses with Smart CRM Innovation We help companies build stronger customer relationships through intelligent automation and seamless workflows.
{/* OUR MISSION / VISION */}

Our Mission

To simplify customer management through powerful yet user-friendly CRM tools, enabling businesses of every size to scale faster and smarter.

Our Vision

To be a global leader in CRM innovation — transforming how teams connect, collaborate and grow with their customers.

{/* COMPANY STORY TIMELINE */}

Our Journey

From a small team with a big dream to a growing global technology partner.

{[ { year: "2021", text: "Founded with a mission to reinvent CRM efficiency." }, { year: "2022", text: "Launched our first CRM suite for SMEs." }, { year: "2023", text: "Expanded to enterprise CRM solutions across industries." }, { year: "2024", text: "Serving customers globally with AI-powered CRM intelligence." }, ].map((item, i) => (
{item.year}

{item.text}

))}
{/* LEADERSHIP SECTION */}

Leadership Team

Guiding our mission with innovation and excellence.

{leaders.map((leader, idx) => ( {leader.name}

{leader.name}

{leader.role}

Connect
))}
{/* CTA */}

We Grow Together

Become part of a story that’s transforming the future of CRM.

Explore Careers
); }