mirror of
https://github.com/vercel/commerce.git
synced 2025-05-15 05:56:59 +00:00
17 lines
365 B
JavaScript
17 lines
365 B
JavaScript
import { HomeNav } 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>
|
|
</>
|
|
);
|
|
}
|