drfeely.com/app/page.tsx

16 lines
377 B
TypeScript
Raw Normal View History

2023-07-25 03:14:18 +00:00
import Accomplishments from "./views/Accomplishments";
import ClinicalPhilosophy from "./views/ClinicalPhilosophy";
import Introduction from "./views/Introduction";
2023-07-25 03:14:18 +00:00
2023-07-23 22:26:35 +00:00
const Home = () => {
2023-07-25 03:14:18 +00:00
return (
<main>
<Introduction></Introduction>
<ClinicalPhilosophy></ClinicalPhilosophy>
2023-07-25 03:14:18 +00:00
<Accomplishments></Accomplishments>
</main>
);
2023-07-23 22:26:35 +00:00
};
2023-07-23 14:44:58 +00:00
2023-07-23 22:26:35 +00:00
export default Home;