drfeely.com/website/app/page.tsx

25 lines
611 B
TypeScript

import { Metadata } from "next";
import AcademicWork from "./views/AcademicWork";
import CertsAndFellows from "./views/CertsAndFellows";
import EduAndProExp from "./views/EduAndProExp";
import Introduction from "./views/Introduction";
import { metaDesc } from "@/shared/meta";
export const metadata: Metadata = {
title: "Dr. Richard A. Feely",
description: metaDesc,
};
const Home = () => {
return (
<main>
<Introduction></Introduction>
<EduAndProExp></EduAndProExp>
<CertsAndFellows></CertsAndFellows>
<AcademicWork></AcademicWork>
</main>
);
};
export default Home;