feat: add footer component to full-width layout
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user