RESTfulMC/Frontend/src/app/(pages)/page.tsx

14 lines
224 B
TypeScript
Raw Normal View History

2024-04-15 19:31:55 -07:00
import Hero from "@/components/landing/hero";
2024-04-15 15:00:47 -07:00
/**
2024-04-15 19:31:55 -07:00
* The landing page of the site.
2024-04-15 15:00:47 -07:00
*
2024-04-15 19:31:55 -07:00
* @returns the landing page jsx
2024-04-15 15:00:47 -07:00
*/
2024-04-15 19:31:55 -07:00
const LandingPage = (): JSX.Element => (
<main>
<Hero />
2024-04-15 15:00:47 -07:00
</main>
);
2024-04-15 19:31:55 -07:00
export default LandingPage;