File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 11import type { FC , PropsWithChildren } from 'react' ;
22
33import WithBreadcrumbs from '@/components/withBreadcrumbs' ;
4+ import WithFooter from '@/components/withFooter' ;
45import WithMetaBar from '@/components/withMetaBar' ;
56import WithNavBar from '@/components/withNavBar' ;
67import WithSidebar from '@/components/withSidebar' ;
@@ -21,6 +22,8 @@ const AboutLayout: FC<PropsWithChildren> = ({ children }) => (
2122
2223 < WithBreadcrumbs navKeys = { [ 'about' , 'getInvolved' ] } />
2324 </ ArticleLayout >
25+
26+ < WithFooter />
2427 </ >
2528) ;
2629
Original file line number Diff line number Diff line change 11import type { FC , PropsWithChildren } from 'react' ;
22
33import WithBreadcrumbs from '@/components/withBreadcrumbs' ;
4+ import WithFooter from '@/components/withFooter' ;
45import WithMetaBar from '@/components/withMetaBar' ;
56import WithNavBar from '@/components/withNavBar' ;
67import WithProgressionSidebar from '@/components/withProgressionSidebar' ;
@@ -26,6 +27,8 @@ const LearnLayout: FC<PropsWithChildren> = ({ children }) => (
2627
2728 < WithBreadcrumbs navKeys = { [ 'learn' ] } />
2829 </ ArticleLayout >
30+
31+ < WithFooter />
2932 </ >
3033) ;
3134
Original file line number Diff line number Diff line change 11.baseLayout {
22 @apply grid
3- size-full
3+ h-max
4+ min-h-full
5+ w-full
46 grid-cols-[1fr ]
57 grid-rows-[auto_1fr_auto];
68}
You can’t perform that action at this time.
0 commit comments