MCPcopy Create free account
hub / github.com/code100x/daily-code / ProfileLayout

Function ProfileLayout

apps/web/app/profile/layout.tsx:11–23  ·  view source on GitHub ↗
({ children }: { children: React.ReactNode })

Source from the content-addressed store, hash-verified

9};
10
11export default function ProfileLayout({ children }: { children: React.ReactNode }): JSX.Element {
12 return (
13 <div className="min-h-screen bg-background font-sans antialiased">
14 <AppbarClient />
15 <div className="max-w-screen-xl flex p-4 m-auto">
16 <div className="p-2 w-full grid grid-cols-8 gap-2">
17 <ProfileSidebar />
18 <ProfileChilldren>{children}</ProfileChilldren>
19 </div>
20 </div>
21 </div>
22 );
23}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected