feat: add footer component to full-width layout

This commit is contained in:
2026-03-17 16:44:54 -06:00
parent 1771924c69
commit 5ffb305bb0
2 changed files with 130 additions and 1 deletions

View File

@@ -7,7 +7,12 @@ export interface FullWidthProps {
}
const FullWidth: FC<FullWidthProps> = ({ className, children }) => {
return <main className={cx(css({ flexGrow: 1 }), className)}>{children}</main>
return (
<>
<main className={cx(css({ flexGrow: 1 }), className)}>{children}</main>
<Footer />
</>
)
}
export default FullWidth