This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // page.tsx | |
| const slug = 'home' | |
| export default async function HomePage(_: PageProps<'/'>) { | |
| return ( | |
| <PageLayout breadcrumbs={<PageBreadcrumbs slug={slug} />} footer={<Footnotes />}> | |
| <ErrorBoundary FallbackComponent={ErrorFallback}> | |
| <HeroSlice slug={slug} /> | |
| <SliceRenderer slug={slug} /> |