MCPcopy Create free account
hub / github.com/TheOrcDev/github-creature / Page

Function Page

app/summon/page.tsx:14–47  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

12export 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
18export 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 );

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected