add product route, separate layouts between home & pages

This commit is contained in:
andr-ew
2023-06-21 18:53:04 -05:00
parent c174b6ad79
commit f0187e9f7a
7 changed files with 45 additions and 9 deletions

12
app/(page)/layout.js Normal file
View File

@@ -0,0 +1,12 @@
export default function ProductLayout({ children }) {
return (
<>
{/* <header> */}
{/* <nav> */}
{/* <a>back</a> */}
{/* </nav> */}
{/* </header> */}
<main>{children}</main>
</>
);
}