summaryrefslogtreecommitdiff
path: root/src/lib/category/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/category/components')
-rw-r--r--src/lib/category/components/Category.jsx31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/lib/category/components/Category.jsx b/src/lib/category/components/Category.jsx
new file mode 100644
index 00000000..21e2ec6f
--- /dev/null
+++ b/src/lib/category/components/Category.jsx
@@ -0,0 +1,31 @@
+import Link from '@/core/components/elements/Link/Link'
+import DesktopView from '@/core/components/views/DesktopView'
+
+const Category = () => {
+ return (
+ <DesktopView>
+ <div className='category-box'>
+ <div>
+ <Link href='/'>Alat Potong & Pelengkap Mesin</Link>
+ <div>
+ <div className='font-medium'>Alat Potong & Pelengkap Mesin</div>
+ </div>
+ </div>
+ <div>
+ <Link href='/'>Alat Ukur & Instrument</Link>
+ <div>
+ <div className='font-medium'>Alat Ukur & Instrument</div>
+ </div>
+ </div>
+ <div>
+ <Link href='/'>Komponen Mekanikal & Hardware</Link>
+ <div>
+ <div className='font-medium'>Komponen Mekanikal & Hardware</div>
+ </div>
+ </div>
+ </div>
+ </DesktopView>
+ )
+}
+
+export default Category