├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── app └── store.js ├── components ├── CustomInput.js ├── CustomModal.js └── MainLayout.js ├── features ├── auth │ ├── authServices.js │ └── authSlice.js ├── bcategory │ ├── bcategoryService.js │ └── bcategorySlice.js ├── blogs │ ├── blogService.js │ └── blogSlice.js ├── brand │ ├── brandService.js │ └── brandSlice.js ├── color │ ├── colorService.js │ └── colorSlice.js ├── coupon │ ├── couponService.js │ └── couponSlice.js ├── cutomers │ ├── customerService.js │ └── customerSlice.js ├── enquiry │ ├── enquiryService.js │ └── enquirySlice.js ├── pcategory │ ├── pcategoryService.js │ └── pcategorySlice.js ├── product │ ├── productService.js │ └── productSlice.js └── upload │ ├── uploadService.js │ └── uploadSlice.js ├── index.css ├── index.js ├── pages ├── AddCoupon.js ├── Addblog.js ├── Addblogcat.js ├── Addbrand.js ├── Addcat.js ├── Addcolor.js ├── Addproduct.js ├── Blogcatlist.js ├── Bloglist.js ├── Brandlist.js ├── Categorylist.js ├── Colotlist.js ├── Couponlist.js ├── Customers.js ├── Dashboard.js ├── Enquiries.js ├── Forgotpassword.js ├── Login.js ├── Orders.js ├── Productlist.js ├── Resetpassword.js ├── ViewEnq.js └── ViewOrder.js └── utils ├── axiosconfig.js └── baseUrl.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/App.js -------------------------------------------------------------------------------- /src/app/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/app/store.js -------------------------------------------------------------------------------- /src/components/CustomInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/components/CustomInput.js -------------------------------------------------------------------------------- /src/components/CustomModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/components/CustomModal.js -------------------------------------------------------------------------------- /src/components/MainLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/components/MainLayout.js -------------------------------------------------------------------------------- /src/features/auth/authServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/auth/authServices.js -------------------------------------------------------------------------------- /src/features/auth/authSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/auth/authSlice.js -------------------------------------------------------------------------------- /src/features/bcategory/bcategoryService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/bcategory/bcategoryService.js -------------------------------------------------------------------------------- /src/features/bcategory/bcategorySlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/bcategory/bcategorySlice.js -------------------------------------------------------------------------------- /src/features/blogs/blogService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/blogs/blogService.js -------------------------------------------------------------------------------- /src/features/blogs/blogSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/blogs/blogSlice.js -------------------------------------------------------------------------------- /src/features/brand/brandService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/brand/brandService.js -------------------------------------------------------------------------------- /src/features/brand/brandSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/brand/brandSlice.js -------------------------------------------------------------------------------- /src/features/color/colorService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/color/colorService.js -------------------------------------------------------------------------------- /src/features/color/colorSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/color/colorSlice.js -------------------------------------------------------------------------------- /src/features/coupon/couponService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/coupon/couponService.js -------------------------------------------------------------------------------- /src/features/coupon/couponSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/coupon/couponSlice.js -------------------------------------------------------------------------------- /src/features/cutomers/customerService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/cutomers/customerService.js -------------------------------------------------------------------------------- /src/features/cutomers/customerSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/cutomers/customerSlice.js -------------------------------------------------------------------------------- /src/features/enquiry/enquiryService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/enquiry/enquiryService.js -------------------------------------------------------------------------------- /src/features/enquiry/enquirySlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/enquiry/enquirySlice.js -------------------------------------------------------------------------------- /src/features/pcategory/pcategoryService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/pcategory/pcategoryService.js -------------------------------------------------------------------------------- /src/features/pcategory/pcategorySlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/pcategory/pcategorySlice.js -------------------------------------------------------------------------------- /src/features/product/productService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/product/productService.js -------------------------------------------------------------------------------- /src/features/product/productSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/product/productSlice.js -------------------------------------------------------------------------------- /src/features/upload/uploadService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/upload/uploadService.js -------------------------------------------------------------------------------- /src/features/upload/uploadSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/features/upload/uploadSlice.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/AddCoupon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/AddCoupon.js -------------------------------------------------------------------------------- /src/pages/Addblog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/Addblog.js -------------------------------------------------------------------------------- /src/pages/Addblogcat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/Addblogcat.js -------------------------------------------------------------------------------- /src/pages/Addbrand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/Addbrand.js -------------------------------------------------------------------------------- /src/pages/Addcat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/Addcat.js -------------------------------------------------------------------------------- /src/pages/Addcolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/Addcolor.js -------------------------------------------------------------------------------- /src/pages/Addproduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/Addproduct.js -------------------------------------------------------------------------------- /src/pages/Blogcatlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/Blogcatlist.js -------------------------------------------------------------------------------- /src/pages/Bloglist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/Bloglist.js -------------------------------------------------------------------------------- /src/pages/Brandlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/Brandlist.js -------------------------------------------------------------------------------- /src/pages/Categorylist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/Categorylist.js -------------------------------------------------------------------------------- /src/pages/Colotlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/Colotlist.js -------------------------------------------------------------------------------- /src/pages/Couponlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/Couponlist.js -------------------------------------------------------------------------------- /src/pages/Customers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/Customers.js -------------------------------------------------------------------------------- /src/pages/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/Dashboard.js -------------------------------------------------------------------------------- /src/pages/Enquiries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/Enquiries.js -------------------------------------------------------------------------------- /src/pages/Forgotpassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/Forgotpassword.js -------------------------------------------------------------------------------- /src/pages/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/Login.js -------------------------------------------------------------------------------- /src/pages/Orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/Orders.js -------------------------------------------------------------------------------- /src/pages/Productlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/Productlist.js -------------------------------------------------------------------------------- /src/pages/Resetpassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/Resetpassword.js -------------------------------------------------------------------------------- /src/pages/ViewEnq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/ViewEnq.js -------------------------------------------------------------------------------- /src/pages/ViewOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/pages/ViewOrder.js -------------------------------------------------------------------------------- /src/utils/axiosconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navdeep1676/digitic-admin/HEAD/src/utils/axiosconfig.js -------------------------------------------------------------------------------- /src/utils/baseUrl.js: -------------------------------------------------------------------------------- 1 | export const base_url = "http://localhost:5000/api/"; 2 | --------------------------------------------------------------------------------