You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
547 B
19 lines
547 B
import React from "react";
|
|
import type { CareersData } from "../types";
|
|
|
|
interface CareersSectionProps {
|
|
data: CareersData;
|
|
}
|
|
|
|
export function CareersSection({ data }: CareersSectionProps) {
|
|
|
|
return (
|
|
<section id="careers" className="py-10 md:py-14 border-t border-[rgba(255,255,255,0.02)]">
|
|
<div className="max-w-[1200px] mx-auto px-4 md:px-6">
|
|
<h2 className="text-lg md:text-xl mb-4 md:mb-[18px] text-white">{data.title}</h2>
|
|
<p className="text-huilong-muted">{data.content}</p>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|
|
|
|
|