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

Function GlowingBackdropLayout

apps/site/layouts/GlowingBackdrop.tsx:17–37  ·  view source on GitHub ↗
({ kind = 'home', children })

Source from the content-addressed store, hash-verified

15const GlowingBackdropLayout: FC<
16 PropsWithChildren<GlowingBackdropLayoutProps>
17> = ({ kind = 'home', children }) => (
18 <>
19 <WithNavBar />
20
21 <div className={styles.centeredLayout}>
22 <GlowingBackdrop />
23
24 <main
25 id="main"
26 tabIndex={-1}
27 className={classNames({
28 [styles.homeLayout]: kind === 'home',
29 })}
30 >
31 {children}
32 </main>
33 </div>
34
35 <WithFooter />
36 </>
37);
38
39export default GlowingBackdropLayout;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected