We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 967676d commit 5cd1b33Copy full SHA for 5cd1b33
apps/site/layouts/ArticlePage.tsx
@@ -1,6 +1,7 @@
1
import Article from '@node-core/ui-components/Containers/Article';
2
import type { FC, PropsWithChildren } from 'react';
3
4
+import WithFooter from '#site/components/withFooter';
5
import WithMetaBar from '#site/components/withMetaBar';
6
import WithNavBar from '#site/components/withNavBar';
7
import WithSidebar from '#site/components/withSidebar';
@@ -18,6 +19,8 @@ const ArticlePageLayout: FC<PropsWithChildren> = ({ children }) => (
18
19
<WithMetaBar />
20
</div>
21
</Article>
22
+
23
+ <WithFooter />
24
</>
25
);
26
0 commit comments