We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61107f1 commit a59a14eCopy full SHA for a59a14e
apps/site/components/withFooter.tsx
@@ -8,6 +8,7 @@ import { siteNavigation } from '#site/next.json.mjs';
8
9
import type { FC } from 'react';
10
11
+import WithLegal from './withLegal';
12
import WithNodeRelease from './withNodeRelease';
13
14
const WithFooter: FC = () => {
@@ -50,12 +51,14 @@ const WithFooter: FC = () => {
50
51
</div>
52
);
53
54
+ const legal = <WithLegal footerLinks={navigation.footerLinks} />;
55
+
56
return (
57
<Footer
58
navigation={navigation}
59
as={Link}
60
pathname={pathname}
- slots={{ primary }}
61
+ slots={{ primary, legal }}
62
/>
63
64
};
0 commit comments