import type { Metadata } from "next";
import ContentPage from "@/components/shared/ContentPage";

export const metadata: Metadata = {
  title: "Careers",
};

export default function CareersPage() {
  return (
    <ContentPage
      eyebrow="CAREERS"
      title="Build useful technology with Teja Technology."
      description="We work across software engineering, product development, sales, customer support and digital operations."
      items={[
        "Software Development",
        "Frontend Development",
        "Backend Development",
        "Mobile Development",
        "UI/UX Design",
        "Quality Assurance",
        "Project Management",
        "Sales & CRM",
        "Customer Support",
        "Digital Operations",
      ]}
      cta="Contact Our Team"
    />
  );
}
