mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 20:26:49 +00:00
🎨 styles: component recipe detail
:%s
This commit is contained in:
13
pages/demo.tsx
Normal file
13
pages/demo.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import { Layout, RecipeDetail } from 'src/components/common';
|
||||
import { ProductInfoDetail } from 'src/components/modules/product-detail'
|
||||
|
||||
|
||||
|
||||
export default function Demo() {
|
||||
return <>
|
||||
<ProductInfoDetail />
|
||||
<RecipeDetail />
|
||||
</>
|
||||
}
|
||||
|
||||
Demo.Layout = Layout
|
@@ -14,7 +14,7 @@ export default function Home() {
|
||||
<HomeRecipe />
|
||||
<HomeSubscribe />
|
||||
|
||||
// todo: uncomment
|
||||
{/* // todo: uncomment */}
|
||||
{/* <ModalCreateUserInfo/> */}
|
||||
</>
|
||||
)
|
||||
|
@@ -1,10 +1,11 @@
|
||||
|
||||
import { Layout } from 'src/components/common'
|
||||
import { Layout, RecipeDetail } from 'src/components/common'
|
||||
import { ProductInfoDetail } from 'src/components/modules/product-detail'
|
||||
|
||||
export default function Slug() {
|
||||
return <>
|
||||
<ProductInfoDetail/>
|
||||
<RecipeDetail/>
|
||||
</>
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user