()
| 30 | ); |
| 31 | } |
| 32 | export default function Index() { |
| 33 | const { toastMessage } = useLoaderData<LoaderData>(); |
| 34 | |
| 35 | return ( |
| 36 | <div className="overflow-x-hidden"> |
| 37 | {toastMessage && ( |
| 38 | <ToastPopover |
| 39 | message={toastMessage.message} |
| 40 | title={toastMessage.title} |
| 41 | type={toastMessage.type} |
| 42 | key={toastMessage.id} |
| 43 | /> |
| 44 | )} |
| 45 | |
| 46 | <HomeHeader fixed={true} /> |
| 47 | <HomeHeroSection /> |
| 48 | <HomeInfoBoxSection /> |
| 49 | <HomeEdgeCasesSection /> |
| 50 | <HomeSearchSection /> |
| 51 | <HomeCollaborateSection /> |
| 52 | <HomeFeatureGridSection /> |
| 53 | <HomeFooter /> |
| 54 | </div> |
| 55 | ); |
| 56 | } |
nothing calls this directly
no outgoing calls
no test coverage detected