Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 3 additions & 0 deletions apps/site/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,8 @@ const AboutLayout: FC<PropsWithChildren> = ({ children }) => (

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

<WithFooter />
</>
);

Expand Down
3 changes: 3 additions & 0 deletions apps/site/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,8 @@ const LearnLayout: FC<PropsWithChildren> = ({ children }) => (

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

<WithFooter />
</>
);

Expand Down
4 changes: 3 additions & 1 deletion apps/site/layouts/layouts.module.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
.baseLayout {
@apply grid
size-full
h-max
min-h-full
w-full
grid-cols-[1fr]
grid-rows-[auto_1fr_auto];
}
Expand Down