detail order fix bug

This commit is contained in:
hamid zarghami
2025-08-26 16:13:20 +03:30
parent 09a210c943
commit 39d01d6e2e
+5 -1
View File
@@ -13,6 +13,7 @@ import Select from '@/components/Select'
import Input from '@/components/Input' import Input from '@/components/Input'
import withLayout from '@/hoc/withLayout' import withLayout from '@/hoc/withLayout'
import Image from 'next/image' import Image from 'next/image'
import Menu from '../../components/Menu'
// Mock data // Mock data
const mockOrderDetail = { const mockOrderDetail = {
@@ -134,7 +135,10 @@ const OrderDetail: FC = () => {
return ( return (
<div className='w-full lg:px-10 px-4 mt-20'> <div className='w-full lg:px-10 px-4 mt-20'>
<div className='border p-6 rounded-2xl text-sm'>
<Menu pageActive='orders' />
<div className='border p-6 rounded-2xl text-sm mt-7'>
<div className='flex gap-2 items-center border-b pb-6'> <div className='flex gap-2 items-center border-b pb-6'>
<button <button
onClick={() => router.push('/profile/orders')} onClick={() => router.push('/profile/orders')}