diff --git a/apps/site/layouts/About.tsx b/apps/site/layouts/About.tsx index ef2258cab5999..5599ecbccfda3 100644 --- a/apps/site/layouts/About.tsx +++ b/apps/site/layouts/About.tsx @@ -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'; @@ -21,6 +22,8 @@ const AboutLayout: FC = ({ children }) => ( + + ); diff --git a/apps/site/layouts/Learn.tsx b/apps/site/layouts/Learn.tsx index 6b4f6763f1925..a42e6ae5a221c 100644 --- a/apps/site/layouts/Learn.tsx +++ b/apps/site/layouts/Learn.tsx @@ -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'; @@ -26,6 +27,8 @@ const LearnLayout: FC = ({ children }) => ( + + ); diff --git a/apps/site/layouts/layouts.module.css b/apps/site/layouts/layouts.module.css index 8466b99416d5a..d21bd7ef4c462 100644 --- a/apps/site/layouts/layouts.module.css +++ b/apps/site/layouts/layouts.module.css @@ -1,6 +1,8 @@ .baseLayout { @apply grid - size-full + h-max + min-h-full + w-full grid-cols-[1fr] grid-rows-[auto_1fr_auto]; }