specifications section

This commit is contained in:
hamid zarghami
2025-08-11 14:37:29 +03:30
parent 94a173dd87
commit 0af6006ca3
3 changed files with 71 additions and 1 deletions
+6
View File
@@ -11,6 +11,7 @@ import {
import ProductImage from '../components/ProductImage'
import BaseInformation from '../components/BaseInformation'
import ShopInformation from '../components/ShopInformation'
import Specifications from '../components/Specifications'
const SingleProduct: NextPage = () => {
return (
@@ -40,6 +41,11 @@ const SingleProduct: NextPage = () => {
<BaseInformation />
<ShopInformation />
</div>
<div className='flex gap-6'>
<Specifications />
<div className='min-w-[325px] px-7'></div>
</div>
</div>
)
}