import Link from "next/link" import { CAREERS } from "@/lib/careers-data" const CAREERS_BY_DEPARTMENT = CAREERS.reduce>((acc, career) => { if (!acc[career.department]) { acc[career.department] = [] } acc[career.department].push(career) return acc }, {}) const CAREER_GROUPS = Object.entries(CAREERS_BY_DEPARTMENT) export default function ValuesSection() { return (

当前重点建设方向

我们把官网里的“职位”改成能力建设清单,用更真实的方式展示 DAL Code 接下来 12 个月的投入重点。

查看全部方向
{CAREER_GROUPS.map(([department, roles], index) => (

{department}

{roles.map((career) => (

{career.title}

{career.location}
{career.type}
))}
{index < CAREER_GROUPS.length - 1 ? (
) : null}
))}
) }