2023-08-31 03:18:58 +00:00
|
|
|
import View from "@/components/View";
|
2023-09-04 22:51:13 +00:00
|
|
|
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-08-31 03:18:58 +00:00
|
|
|
<View
|
|
|
|
bg_color="bg-primary-100"
|
|
|
|
txt_color="text-primary-500"
|
|
|
|
id="eduandproexp"
|
|
|
|
>
|
2023-09-04 22:51:13 +00:00
|
|
|
<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;
|