drfeely.com/website/app/views/EduAndProExp.tsx

20 lines
399 B
TypeScript

import View from "@/components/View";
import ProExp from "./components/ProExp";
import Edu from "./components/Edu";
const EduAndProExp = () => {
return (
<View
bg_color="bg-primary-100"
txt_color="text-primary-500"
id="eduandproexp"
>
<h1>Education & Business</h1>
<Edu className="mb-10" />
<ProExp />
</View>
);
};
export default EduAndProExp;