Skip to content

Commit 5cd1b33

Browse files
committed
add footer to article layout
1 parent 967676d commit 5cd1b33

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

apps/site/layouts/ArticlePage.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import Article from '@node-core/ui-components/Containers/Article';
22
import type { FC, PropsWithChildren } from 'react';
33

4+
import WithFooter from '#site/components/withFooter';
45
import WithMetaBar from '#site/components/withMetaBar';
56
import WithNavBar from '#site/components/withNavBar';
67
import WithSidebar from '#site/components/withSidebar';
@@ -18,6 +19,8 @@ const ArticlePageLayout: FC<PropsWithChildren> = ({ children }) => (
1819
<WithMetaBar />
1920
</div>
2021
</Article>
22+
23+
<WithFooter />
2124
</>
2225
);
2326

0 commit comments

Comments
 (0)