MCPcopy Create free account
hub / github.com/nodejs/nodejs.org / AboutLayout

Function AboutLayout

apps/site/layouts/About.tsx:11–31  ·  view source on GitHub ↗
({ children })

Source from the content-addressed store, hash-verified

9import type { FC, PropsWithChildren } from 'react';
10
11const AboutLayout: FC<PropsWithChildren> = ({ children }) => (
12 <>
13 <WithNavBar />
14
15 <Article>
16 <WithSidebar navKeys={['about', 'getInvolved']} />
17
18 <div>
19 <main id="main" tabIndex={-1}>
20 {children}
21 </main>
22
23 <WithMetaBar />
24 </div>
25
26 <WithBreadcrumbs navKeys={['about', 'getInvolved']} />
27 </Article>
28
29 <WithFooter />
30 </>
31);
32
33export default AboutLayout;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected