import type { Metadata } from "next" import Link from "next/link" import { CAREERS } from "@/lib/careers-data" export const metadata: Metadata = { title: "Careers", description: "Join our team and help shape the future of AI. Explore open positions at DalCode.", openGraph: { title: "Careers at DalCode", description: "Join our team and help shape the future of AI.", }, } export default function CareersPage() { return (
Careers

Join our team

We're looking for talented people to help us build the future of AI-powered development tools.

{CAREERS.map((career) => (

{career.title}

{career.department}
·
{career.location}
·
{career.type}
))}
) }