14 lines
224 B
TypeScript
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;
|