2024-04-15 20:24:50 -07:00
|
|
|
import FeaturedContent from "@/components/landing/featured-content";
|
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 20:24:50 -07:00
|
|
|
<FeaturedContent />
|
2024-04-15 15:00:47 -07:00
|
|
|
</main>
|
|
|
|
);
|
2024-04-15 19:31:55 -07:00
|
|
|
export default LandingPage;
|