2023-08-31 03:18:58 +00:00
|
|
|
import View from "@/components/View";
|
2023-09-04 22:51:13 +00:00
|
|
|
import AcademicAppts from "./components/AcademicAppts";
|
|
|
|
import Books from "./components/Books";
|
|
|
|
import Articles from "./components/Articles";
|
2023-08-31 03:18:58 +00:00
|
|
|
|
2023-08-25 19:06:28 +00:00
|
|
|
const AcademicWork = () => {
|
|
|
|
return (
|
2023-08-31 03:18:58 +00:00
|
|
|
<View
|
|
|
|
bg_color="bg-primary-100"
|
|
|
|
txt_color="text-primary-500"
|
|
|
|
id="academicwork"
|
|
|
|
>
|
2023-09-04 22:51:13 +00:00
|
|
|
<h1>Academic Work</h1>
|
|
|
|
<AcademicAppts />
|
|
|
|
<div className="mt-10 flex flex-col gap-10 md:flex-row">
|
|
|
|
<div className="basis-1/2">
|
|
|
|
<Books />
|
|
|
|
</div>
|
|
|
|
<div className="basis-1/2">
|
|
|
|
<Articles />
|
2023-08-26 02:18:11 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-08-31 03:18:58 +00:00
|
|
|
</View>
|
2023-08-25 19:06:28 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default AcademicWork;
|