summaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-02-23 15:29:35 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-02-23 15:29:35 +0700
commit2dd5b10049ff62656f160a9aa5b6627cd7ccbefc (patch)
tree30b3b273f7a5542b39d2634a3d5dc4a5d4665547 /src/pages
parentccf4174e7e2e8a3f4cc35f243695f900f2172bb4 (diff)
fix
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/shop/brands/index.jsx10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/pages/shop/brands/index.jsx b/src/pages/shop/brands/index.jsx
new file mode 100644
index 00000000..5c01fd19
--- /dev/null
+++ b/src/pages/shop/brands/index.jsx
@@ -0,0 +1,10 @@
+import BasicLayout from '@/core/components/layouts/BasicLayout'
+import BrandsComponent from '@/lib/brand/components/Brands'
+
+export default function Brands() {
+ return (
+ <BasicLayout>
+ <BrandsComponent />
+ </BasicLayout>
+ )
+}