product View

This commit is contained in:
CHIEFSOFT\ameye
2025-10-06 18:31:33 -04:00
parent bd4cdb1ae9
commit d37026c868
5 changed files with 92 additions and 4 deletions
+69
View File
@@ -0,0 +1,69 @@
import BreadcrumbCom from '../breadcrumb/BreadcrumbCom'
import getDateTimeFromDateString from '../../helpers/getDateTimeFromDateString'
export default function ProductView() {
return (
<div className='w-full flex flex-col gap-8'>
<BreadcrumbCom title='Product View [ProductID]' paths={['Dashboard', 'Product View']}/>
<div className='box bg-white dark:bg-black-box text-black-body dark:text-white-body'>
<table className="py-2 w-full text-sm">
<thead className="py-2 text-sm text-slate-500 text-left">
<tr>
<th scope="col" className="px-2 py-2">
Added
</th>
<th scope="col" className="px-2">
Name
</th>
<th scope="col" className="px-2">
Product ID
</th>
<th scope="col" className="px-2 text-right">
Status
</th>
<th scope="col" className="px-2 text-right">
Action
</th>
</tr>
</thead>
<tbody>
<tr className="py-2 border-t border-dashed border-slate-300">
<td className="px-2 py-2">
<div
className='w-full min-w-48 flex items-center gap-2 whitespace-nowrap'>
<div className="text-left">
</div>
</div>
</td>
<td className="px-2">
<div className="text-left">
</div>
</td>
<td className="px-2">
<div className="text-left">
</div>
</td>
<td className="px-2">
<div className="text-right">
</div>
</td>
<td className="px-2">
</td>
</tr>
</tbody>
</table>
</div>
</div>
)
}