15 lines
373 B
TypeScript
15 lines
373 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="eduandbiz">
|
|
<h1>Education & Business</h1>
|
|
<Edu className="mb-10" />
|
|
<ProExp />
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default EduAndProExp;
|