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

16 lines
373 B
TypeScript
Raw Normal View History

2023-08-31 03:18:58 +00:00
import View from "@/components/View";
import ProExp from "./components/ProExp";
import Edu from "./components/Edu";
2023-08-31 03:18:58 +00:00
2023-08-25 19:06:28 +00:00
const EduAndProExp = () => {
return (
2023-09-10 06:03:26 +00:00
<View bg_color="bg-primary-100" txt_color="text-primary-500" id="eduandbiz">
<h1>Education & Business</h1>
<Edu className="mb-10" />
<ProExp />
2023-08-31 03:18:58 +00:00
</View>
2023-08-25 19:06:28 +00:00
);
};
export default EduAndProExp;