"use client"; import { motion } from "framer-motion"; import { Briefcase, Users, Target, HeartHandshake, ArrowRight } from "lucide-react"; import Link from "next/link"; const openRoles = [ { title: "Frontend Developer", department: "Engineering", type: "Full Time", location: "Remote / India", }, { title: "Backend Developer", department: "Engineering", type: "Full Time", location: "Remote", }, { title: "Sales Executive", department: "Sales & Marketing", type: "Full Time", location: "Kolkata, India", }, { title: "UI/UX Designer", department: "Design", type: "Full Time", location: "Remote", }, ]; export default function Careers() { return (
{/* HERO */}
Build Your Future With Us Join a passionate team shaping the future of CRM solutions across the globe.
{/* CULTURE SECTION */}

Life at Our Company

A culture built to encourage creativity, innovation, and collaboration.

{[ { icon: , title: "Collaborative Team", desc: "Work with talented individuals who uplift each other every day.", }, { icon: , title: "Performance Driven", desc: "We believe in rewarding effort, creativity & dedication.", }, { icon: , title: "People First", desc: "We focus on employee happiness, growth, and well-being.", }, ].map((item, i) => (
{item.icon}

{item.title}

{item.desc}

))}
{/* OPEN ROLES */}

Open Positions

We’re looking for dreamers, doers & problem solvers.

{openRoles.map((role, index) => (

{role.title}

{role.department}

{role.type} {role.location}
Apply Now
))}
{/* CTA SECTION */}

Didn’t find a suitable role?

We are always looking for great talent. Send us your resume!

Contact Us
); }