import { WhyYoungEngineersData } from "@/src/lib/types/home";
import ClientWhyYoungEngineers from "./Client";


interface Props {
  data: WhyYoungEngineersData;
}

export default function WhyYoungEngineers({ data }: Props) {
  return <ClientWhyYoungEngineers data={data} />;
}