import React from "react"; import type { CareersData } from "../types"; interface CareersSectionProps { data: CareersData; } export function CareersSection({ data }: CareersSectionProps) { return (

{data.title}

{data.content}

); }