+ Competitive compensation, flexible remote work, and continuous
+ learning opportunities. Everything you need to do career-defining
+ work on enterprise AI projects.
+
+ A certified best workplace culture built on trust, technical excellence,
+ and a shared commitment to delivering production AI systems that
+ transform enterprises.
+
+ A transparent and efficient process designed to identify
+ exceptional talent. From application to offer, we move quickly
+ while ensuring the right fit for both sides.
+
+
+
+ {/* Timeline - Desktop (Horizontal) */}
+
+
+ {/* Connecting line */}
+
+
+
+ {hiringSteps.map((item, idx) => (
+
+ {/* Step number circle */}
+
+
+ {/* Glow effect */}
+
+
+
{item.icon}
+
+
+
+
+ {/* Card */}
+
+
+
+
+ STEP {item.step}
+
+
+ {item.title}
+
+
+ {item.description}
+
+
+
+
+ ))}
+
+
+
+
+ {/* Timeline - Mobile (Vertical) */}
+
+ {hiringSteps.map((item, idx) => (
+
+ {/* Timeline line */}
+ {idx < 4 && (
+
+ )}
+
+ {/* Step number circle */}
+
+
+
+
{item.icon}
+
+
+
+ {/* Card */}
+
+
+
+
+ STEP {item.step}
+
+
+ {item.title}
+
+
+ {item.description}
+
+
+
+
+ ))}
+
+
+ {/* Additional info */}
+
+
+
+ Total timeline: 2-3 weeks.
+ {" "}
+ We value your time and move quickly through each stage. You will
+ have a dedicated point of contact throughout the process to answer
+ questions and provide updates.
+
+ Exceptional AI talent is rare, and we are always building our
+ pipeline. Submit your resume with a note about your ideal role,
+ and we will reach out when the right opportunity emerges.
+
+
+
+
+ Submit Your Application
+
+
+
+ Learn About Procedure
+
+
+
+
+
+
+ );
+}
+
+// Hiring steps data (extracted to avoid duplication between desktop/mobile)
+const hiringSteps = [
+ {
+ step: 1,
+ title: "Application Received",
+ description:
+ "Submit your application through our careers portal. We review all applications within 3-5 business days.",
+ icon: (
+
+ ),
+ },
+ {
+ step: 2,
+ title: "TA Screening",
+ description:
+ "Quick call with our Talent Acquisition team to discuss your experience, career goals, and role expectations.",
+ icon: (
+
+ ),
+ },
+ {
+ step: 3,
+ title: "HM Screening",
+ description:
+ "Technical conversation with the Hiring Manager to explore your skills, project experience, and approach.",
+ icon: (
+
+ ),
+ },
+ {
+ step: 4,
+ title: "Interviews",
+ description:
+ "Technical assessments and team conversations covering coding exercises, system design, and cultural fit.",
+ icon: (
+
+ ),
+ },
+ {
+ step: 5,
+ title: "Offer Release",
+ description:
+ "Receive your offer with a detailed compensation breakdown. We move fast and keep the process transparent.",
+ icon: (
+
+ ),
+ },
+];
diff --git a/app/careers/page.tsx b/app/careers/page.tsx
index 474d167..0107d6d 100644
--- a/app/careers/page.tsx
+++ b/app/careers/page.tsx
@@ -1,786 +1,14 @@
-"use client";
+import { getJobListings, getJobDepartments } from "@/lib/keka-jobs";
+import { CareersClient } from "./CareersClient";
-import { motion } from "framer-motion";
-import Image from "next/image";
-import Link from "next/link";
-import { PageHero } from "@/components/ui";
-import { KekaJobsEmbed } from "@/components/KekaJobsEmbed";
+export const dynamic = "force-static";
+export const revalidate = false;
-// Benefits data
-const benefits = [
- {
- icon: (
-
- ),
- title: "100% Remote Positions",
- description:
- "Work from anywhere with a globally distributed team spanning 4 continents. Async-first communication means no mandatory meetings disrupting your focus time.",
- },
- {
- icon: (
-
- ),
- title: "Top-Tier Compensation",
- description:
- "Above-market salaries benchmarked against top tech companies, plus equity participation. We invest in talent that delivers enterprise-grade results.",
- },
- {
- icon: (
-
- ),
- title: "$3,000 Learning Budget",
- description:
- "Annual stipend for courses, conferences, and certifications. Stay current with AI advancements and earn credentials that accelerate your career trajectory.",
- },
- {
- icon: (
-
- ),
- title: "Comprehensive Health Coverage",
- description:
- "Full medical, dental, and vision insurance for you and your dependents. Plus a dedicated wellness stipend for gym memberships, mental health support, or whatever keeps you performing at your best.",
- },
- {
- icon: (
-
- ),
- title: "Unlimited PTO Policy",
- description:
- "Flexible time off with a minimum of 4 weeks encouraged annually. Sustainable performance requires genuine rest, and we trust senior professionals to manage their own schedules.",
- },
- {
- icon: (
-
- ),
- title: "Enterprise AI Projects",
- description:
- "Solve complex AI challenges for industry-leading clients. Direct access to cutting-edge models from OpenAI, Anthropic, and Google, plus the latest MLOps tooling and infrastructure.",
- },
-];
+export default async function CareersPage() {
+ const [jobs, departments] = await Promise.all([
+ getJobListings(),
+ getJobDepartments(),
+ ]);
-// Values data
-const values = [
- {
- title: "Production-First Engineering",
- description:
- "Every system we build is designed for enterprise-scale production. Our engineers take pride in delivering AI solutions that handle millions of requests and meet the strictest SLAs.",
- },
- {
- title: "Continuous Technical Growth",
- description:
- "AI evolves rapidly, and so do we. Weekly knowledge sharing, dedicated learning time, and a culture of experimentation ensure you stay at the forefront of the industry. Our Best Workplace certification reflects this commitment to your growth.",
- },
- {
- title: "Direct, Transparent Communication",
- description:
- "We value candid feedback, thoughtful debate, and clear expectations. No politics or ambiguity, just honest collaboration focused on delivering exceptional results for our clients.",
- },
- {
- title: "Ownership and Accountability",
- description:
- "Senior engineers own their projects end-to-end. You will have the autonomy to make architectural decisions and the responsibility to deliver outcomes that drive real business impact.",
- },
-];
-
-export default function CareersPage() {
- return (
-
- {/* ============================================
- HERO SECTION
- ============================================ */}
-
- {/* TSOW Certification Badge */}
-
-
-
-
- Officially a TSOW Certified Best Workplace
-
-
- Recognized for creating a culture where people thrive.
-
- Competitive compensation, flexible remote work, and continuous
- learning opportunities. Everything you need to do career-defining
- work on enterprise AI projects.
-
- A certified best workplace culture built on trust, technical excellence,
- and a shared commitment to delivering production AI systems that
- transform enterprises.
-
- A transparent and efficient process designed to identify
- exceptional talent. From application to offer, we move quickly
- while ensuring the right fit for both sides.
-
-
-
- {/* Timeline - Desktop (Horizontal) */}
-
-
- {/* Connecting line */}
-
-
-
- {[
- {
- step: 1,
- title: "Application Received",
- description:
- "Submit your application through our careers portal. We review all applications within 3-5 business days.",
- icon: (
-
- ),
- },
- {
- step: 2,
- title: "TA Screening",
- description:
- "Quick call with our Talent Acquisition team to discuss your experience, career goals, and role expectations.",
- icon: (
-
- ),
- },
- {
- step: 3,
- title: "HM Screening",
- description:
- "Technical conversation with the Hiring Manager to explore your skills, project experience, and approach.",
- icon: (
-
- ),
- },
- {
- step: 4,
- title: "Interviews",
- description:
- "Technical assessments and team conversations covering coding exercises, system design, and cultural fit.",
- icon: (
-
- ),
- },
- {
- step: 5,
- title: "Offer Release",
- description:
- "Receive your offer with a detailed compensation breakdown. We move fast and keep the process transparent.",
- icon: (
-
- ),
- },
- ].map((item, idx) => (
-
- {/* Step number circle */}
-
-
- {/* Glow effect */}
-
-
-
{item.icon}
-
-
-
-
- {/* Card */}
-
-
-
-
- STEP {item.step}
-
-
- {item.title}
-
-
- {item.description}
-
-
-
-
- ))}
-
-
-
-
- {/* Timeline - Mobile (Vertical) */}
-
- {[
- {
- step: 1,
- title: "Application Received",
- description:
- "Submit your application through our careers portal. We review all applications within 3-5 business days.",
- icon: (
-
- ),
- },
- {
- step: 2,
- title: "TA Screening",
- description:
- "Quick call with our Talent Acquisition team to discuss your experience, career goals, and role expectations.",
- icon: (
-
- ),
- },
- {
- step: 3,
- title: "HM Screening",
- description:
- "Technical conversation with the Hiring Manager to explore your skills, project experience, and approach.",
- icon: (
-
- ),
- },
- {
- step: 4,
- title: "Interviews",
- description:
- "Technical assessments and team conversations covering coding exercises, system design, and cultural fit.",
- icon: (
-
- ),
- },
- {
- step: 5,
- title: "Offer Release",
- description:
- "Receive your offer with a detailed compensation breakdown. We move fast and keep the process transparent.",
- icon: (
-
- ),
- },
- ].map((item, idx) => (
-
- {/* Timeline line */}
- {idx < 4 && (
-
- )}
-
- {/* Step number circle */}
-
-
-
-
{item.icon}
-
-
-
- {/* Card */}
-
-
-
-
- STEP {item.step}
-
-
- {item.title}
-
-
- {item.description}
-
-
-
-
- ))}
-
-
- {/* Additional info */}
-
-
-
- Total timeline: 2-3 weeks.
- {" "}
- We value your time and move quickly through each stage. You will
- have a dedicated point of contact throughout the process to answer
- questions and provide updates.
-
- Exceptional AI talent is rare, and we are always building our
- pipeline. Submit your resume with a note about your ideal role,
- and we will reach out when the right opportunity emerges.
-
-
-
-
- Submit Your Application
-
-
-
- Learn About Procedure
-
-