🎨 styles: component recipe detail

:%s
This commit is contained in:
lytrankieio123
2021-09-01 16:04:07 +07:00
parent a7d0eb051c
commit 6169634dca
13 changed files with 224 additions and 3 deletions

13
pages/demo.tsx Normal file
View 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

View File

@@ -14,7 +14,7 @@ export default function Home() {
<HomeRecipe />
<HomeSubscribe />
// todo: uncomment
{/* // todo: uncomment */}
{/* <ModalCreateUserInfo/> */}
</>
)

View File

@@ -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/>
</>
}