Home / Function/ ContributingPage() — supabase Function Reference

ContributingPage() — supabase Function Reference

Architecture documentation for the ContributingPage() function in page.tsx from the supabase codebase.

Entity Profile

Relationship Graph

Source Code

apps/docs/app/contributing/page.tsx lines 13–37

export default async function ContributingPage() {
  if (!isFeatureEnabled('docs:contribution')) {
    notFound()
  }

  const contentFile = join(dirname(fileURLToPath(import.meta.url)), 'content.mdx')
  const content = await readFile(contentFile, 'utf-8')

  return (
    <SidebarSkeleton>
      <LayoutMainContent className="pb-0 grid grid-cols-12 relative gap-4">
        <div className="col-span-12 lg:col-span-9">
          <Breadcrumbs className="mb-2 col-span-full" />
          <article
            id="contributing"
            className="prose max-w-none relative transition-all ease-out duration-100"
          >
            <MDXRemoteBase source={content} />
          </article>
        </div>
        <ContributingToc />
      </LayoutMainContent>
    </SidebarSkeleton>
  )
}

Subdomains

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free