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

5
app/(home)/page.js Normal file
View File

@@ -0,0 +1,5 @@
import { HomeProductsList } from '/components/home.js';
export default async function HomePage() {
return <HomeProductsList collection={process.env.HOMEPAGE_COLLECTION} />;
}