stacker.news/components/layout-static.js

16 lines
366 B
JavaScript
Raw Normal View History

2022-05-18 15:55:06 -05:00
import Footer from './footer'
import { HeaderStatic } from './header'
import styles from './layout-center.module.css'
2023-05-01 15:58:30 -05:00
export default function LayoutStatic ({ children, ...props }) {
2022-05-18 15:55:06 -05:00
return (
<div className={styles.page}>
<HeaderStatic />
<div className={`${styles.content} pt-5`}>
{children}
</div>
<Footer />
</div>
)
}