summaryrefslogtreecommitdiff
path: root/src/pages/my/recomendation/components
diff options
context:
space:
mode:
authorHATEC\SPVDEV001 <tri.susilo@altama.co.id>2024-03-01 09:20:11 +0700
committerHATEC\SPVDEV001 <tri.susilo@altama.co.id>2024-03-01 09:20:11 +0700
commit65377952fbd0721ce1550c42384d723ccd7b9b1a (patch)
treebd3d0e7546ec89a1c1c8e0c1889240a92d1e01c3 /src/pages/my/recomendation/components
parent756f93807a33bb1398931ae894b071504dfec3b8 (diff)
generate recomendation
Diffstat (limited to 'src/pages/my/recomendation/components')
-rw-r--r--src/pages/my/recomendation/components/products-recomendatison.jsx65
1 files changed, 65 insertions, 0 deletions
diff --git a/src/pages/my/recomendation/components/products-recomendatison.jsx b/src/pages/my/recomendation/components/products-recomendatison.jsx
new file mode 100644
index 00000000..9438eb46
--- /dev/null
+++ b/src/pages/my/recomendation/components/products-recomendatison.jsx
@@ -0,0 +1,65 @@
+import Menu from '@/lib/auth/components/Menu';
+import { cons } from 'lodash-contrib';
+
+const ProductsRecomendation = ({ id }) => {
+ const handleSubmit = () => {}
+ const handleFileChange = () => {}
+ return (
+ <div className='container mx-auto flex py-10'>
+ <div className='w-3/12 pr-4'>
+ <Menu />
+ </div>
+ <div className='w-9/12 p-4 bg-white border border-gray_r-6 rounded'>
+ <div className='flex mb-6 items-center justify-between'>
+ <h1 className='text-title-sm font-semibold'>
+ Generate Recomendation
+ </h1>
+ </div>
+ <div className='group'>
+ <h1 className='text-sm font-semibold'>Contoh Excel</h1>
+ <table className='table-data'>
+ <thead>
+ <tr>
+ <th>Product</th>
+ <th>Qty</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>Tekiro Long Nose Pliers Tang Lancip</td>
+ <td>10</td>
+ </tr>
+ </tbody>
+ </table>
+ </div>
+ <div className='container mx-auto mt-8'>
+ <form onSubmit={handleSubmit} >
+ <div className='mb-4'>
+ <label
+ htmlFor='excelFile'
+ className='text-sm font-semibold'
+ >
+ Upload Excel File (.xlsx)
+ </label>
+ <input
+ type='file'
+ id='excelFile'
+ accept='.xlsx'
+ onChange={handleFileChange}
+ className='mt-1 p-2 block w-full border border-gray-300 rounded-md focus:outline-none focus:border-blue-500'
+ />
+ </div>
+ <button
+ type='submit'
+ className='bg-blue-500 text-white py-2 px-4 rounded-md hover:bg-blue-600'
+ >
+ Generate
+ </button>
+ </form>
+ </div>
+ </div>
+ </div>
+ );
+};
+
+export default ProductsRecomendation;