drfeely.com/website/app/page.tsx

18 lines
438 B
TypeScript

import AcademicWork from "./views/AcademicWork";
import CertsAndFellows from "./views/CertsAndFellows";
import EduAndProExp from "./views/EduAndProExp";
import Introduction from "./views/Introduction";
const Home = () => {
return (
<main>
<Introduction></Introduction>
<EduAndProExp></EduAndProExp>
<CertsAndFellows></CertsAndFellows>
<AcademicWork></AcademicWork>
</main>
);
};
export default Home;