()
| 12 | export const metadata: Metadata = { |
| 13 | description: |
| 14 | "Generate a creature based on your GitHub profile. Just enter your GitHub profile URL and get your inner creature.", |
| 15 | title: "GitHub Creature - Summon your code creature", |
| 16 | }; |
| 17 | |
| 18 | export default function Page() { |
| 19 | return ( |
| 20 | <main className="flex flex-col items-center justify-center h-screen gap-5 px-2"> |
| 21 | <Suspense fallback={<GithubFormFallback />}> |
| 22 | <SubmitGithubForm /> |
| 23 | </Suspense> |
| 24 | |
| 25 | <Suspense |
| 26 | fallback={ |
| 27 | <div className="flex flex-col gap-2 min-h-30"> |
| 28 | <Skeleton className="h-2 w-20 mt-3" /> |
| 29 | <div className="flex flex-wrap gap-2"> |
| 30 | <Skeleton className="h-7 w-24" /> |
| 31 | <Skeleton className="h-7 w-24" /> |
| 32 | <Skeleton className="h-7 w-24" /> |
| 33 | <Skeleton className="h-7 w-24" /> |
| 34 | <Skeleton className="h-7 w-24" /> |
| 35 | </div> |
| 36 | |
| 37 | <div className="flex flex-wrap gap-2"> |
| 38 | <Skeleton className="h-7 w-24" /> |
| 39 | <Skeleton className="h-7 w-24" /> |
| 40 | <Skeleton className="h-7 w-24" /> |
| 41 | <Skeleton className="h-7 w-24" /> |
| 42 | <Skeleton className="h-7 w-24" /> |
| 43 | </div> |
| 44 | </div> |
| 45 | } |
| 46 | > |
| 47 | <LatestCreatures /> |
| 48 | </Suspense> |
| 49 | </main> |
| 50 | ); |
nothing calls this directly
no outgoing calls
no test coverage detected