stacker.news/components/layout-static.js

16 lines
366 B
JavaScript
Raw Normal View History

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