()
| 4 | import { |
| 5 | GithubFormFallback, |
| 6 | SubmitGithubForm, |
| 7 | } from "@/components/forms/github-form"; |
| 8 | |
| 9 | export default function Page() { |
| 10 | return ( |
| 11 | <main className="mt-20 flex flex-col items-center justify-center gap-5 px-2"> |
| 12 | <Suspense fallback={<GithubFormFallback />}> |
| 13 | <SubmitGithubForm /> |
| 14 | </Suspense> |
| 15 | |
| 16 | <CreaturesShowcase /> |
| 17 | </main> |
| 18 | ); |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected