Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
issue #6829 fixed
  • Loading branch information
Wellitsabhi committed Jun 11, 2024
commit 017d6f7765c61c7310d50c1906107c3c584e2f9f
2 changes: 2 additions & 0 deletions layouts/About.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type { FC, PropsWithChildren } from 'react';

import WithBreadcrumbs from '@/components/withBreadcrumbs';
import WithFooter from '@/components/withFooter';
import WithMetaBar from '@/components/withMetaBar';
import WithNavBar from '@/components/withNavBar';
import WithSidebar from '@/components/withSidebar';
Expand All @@ -21,6 +22,7 @@ const AboutLayout: FC<PropsWithChildren> = ({ children }) => (

<WithBreadcrumbs navKeys={['about', 'getInvolved']} />
</ArticleLayout>
<WithFooter />
</>
);

Expand Down
2 changes: 2 additions & 0 deletions layouts/Learn.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type { FC, PropsWithChildren } from 'react';

import WithBreadcrumbs from '@/components/withBreadcrumbs';
import WithFooter from '@/components/withFooter';
import WithMetaBar from '@/components/withMetaBar';
import WithNavBar from '@/components/withNavBar';
import WithProgressionSidebar from '@/components/withProgressionSidebar';
Expand All @@ -26,6 +27,7 @@ const LearnLayout: FC<PropsWithChildren> = ({ children }) => (

<WithBreadcrumbs navKeys={['learn']} />
</ArticleLayout>
<WithFooter />
</>
);

Expand Down