RESTfulMC/Frontend/src/app/(pages)/page.tsx
2024-04-15 22:31:55 -04:00

14 lines
224 B
TypeScript

import Hero from "@/components/landing/hero";
/**
* The landing page of the site.
*
* @returns the landing page jsx
*/
const LandingPage = (): JSX.Element => (
<main>
<Hero />
</main>
);
export default LandingPage;