File tree 3 files changed +9
-1
lines changed
3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
1
import type { FC , PropsWithChildren } from 'react' ;
2
2
3
3
import WithBreadcrumbs from '@/components/withBreadcrumbs' ;
4
+ import WithFooter from '@/components/withFooter' ;
4
5
import WithMetaBar from '@/components/withMetaBar' ;
5
6
import WithNavBar from '@/components/withNavBar' ;
6
7
import WithSidebar from '@/components/withSidebar' ;
@@ -21,6 +22,8 @@ const AboutLayout: FC<PropsWithChildren> = ({ children }) => (
21
22
22
23
< WithBreadcrumbs navKeys = { [ 'about' , 'getInvolved' ] } />
23
24
</ ArticleLayout >
25
+
26
+ < WithFooter />
24
27
</ >
25
28
) ;
26
29
Original file line number Diff line number Diff line change 1
1
import type { FC , PropsWithChildren } from 'react' ;
2
2
3
3
import WithBreadcrumbs from '@/components/withBreadcrumbs' ;
4
+ import WithFooter from '@/components/withFooter' ;
4
5
import WithMetaBar from '@/components/withMetaBar' ;
5
6
import WithNavBar from '@/components/withNavBar' ;
6
7
import WithProgressionSidebar from '@/components/withProgressionSidebar' ;
@@ -26,6 +27,8 @@ const LearnLayout: FC<PropsWithChildren> = ({ children }) => (
26
27
27
28
< WithBreadcrumbs navKeys = { [ 'learn' ] } />
28
29
</ ArticleLayout >
30
+
31
+ < WithFooter />
29
32
</ >
30
33
) ;
31
34
Original file line number Diff line number Diff line change 1
1
.baseLayout {
2
2
@apply grid
3
- size-full
3
+ h-max
4
+ min-h-full
5
+ w-full
4
6
grid-cols-[1fr ]
5
7
grid-rows-[auto_1fr_auto];
6
8
}
You can’t perform that action at this time.
0 commit comments