mirror of
https://github.com/vercel/commerce.git
synced 2025-05-15 14:06:59 +00:00
20 lines
451 B
JavaScript
20 lines
451 B
JavaScript
import { HomeNav, HomeFooter } from '/components/home';
|
|
|
|
import styles from './styles.module.scss';
|
|
|
|
export default function HomeLayout({ children }) {
|
|
return (
|
|
<>
|
|
<header>
|
|
<nav>
|
|
<HomeNav />
|
|
</nav>
|
|
</header>
|
|
<main className={styles.main}>{children}</main>
|
|
<footer>
|
|
<HomeFooter />
|
|
</footer>
|
|
</>
|
|
);
|
|
}
|