├── .DS_Store ├── README.md └── fashify ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html └── robots.txt └── src ├── App.css ├── App.js ├── DataReducer ├── DataReducer.jsx └── constants.js ├── Hooks ├── FilterHook.js ├── Pagination.js └── outsideClickHandler.js ├── Services ├── index.js └── services.js ├── backend ├── controllers │ ├── AuthController.js │ ├── CartController.js │ ├── CategoryController.js │ ├── ProductController.js │ ├── SizeController.js │ └── WishlistController.js ├── db │ ├── categories.js │ ├── products.js │ ├── sizes.js │ └── users.js └── utils │ └── authUtils.js ├── components ├── Footer │ ├── Footer.css │ └── Footer.jsx ├── Loader │ ├── Loader.css │ └── Loader.jsx ├── Nav │ ├── Nav.css │ └── Nav.jsx ├── PrivateRoute │ └── PrivateRoute.js └── index.js ├── contexts ├── auth-context.js ├── data-context.js └── index.js ├── index.js ├── logo ├── Fashify Transparent pr 2.png ├── Fashify Transparent pr.png ├── FashifySoli.png ├── FashifyTransparent.png ├── logout re.png ├── logout reduced.png └── logout.png ├── logos └── hero-logo.png ├── pages ├── Auth │ ├── Auth.css │ ├── Login │ │ └── Login.jsx │ ├── Logout │ │ └── Logout.jsx │ └── Signup │ │ └── Signup.jsx ├── Cart │ ├── CartList.css │ ├── CartList.jsx │ └── components │ │ └── CartCard │ │ ├── CartCard.css │ │ └── CartCard.jsx ├── Checkout │ ├── Checkout.css │ └── Checkout.jsx ├── ErrorPage │ ├── ErrorPage.css │ └── ErrorPage.jsx ├── Home │ ├── Home.css │ └── Home.jsx ├── MockApi │ ├── MockApi.css │ └── MockApi.jsx ├── ProductDetails │ ├── ProductDetails.css │ └── ProductDetails.jsx ├── ProductList │ ├── ProductList.css │ ├── ProductList.jsx │ └── components │ │ ├── ProductCard │ │ ├── ProductCard.css │ │ └── ProductCard.jsx │ │ ├── ProductListAside │ │ ├── ProductListAside.css │ │ └── ProductListAside.jsx │ │ ├── ProductListDrawar │ │ ├── ProductlistDrawar.css │ │ └── ProductlistDrawar.jsx │ │ ├── ProductListMain │ │ ├── ProductListMain.css │ │ └── ProductListMain.jsx │ │ ├── ProductlistFooter │ │ ├── ProductlistFooter.css │ │ └── ProductlistFooter.jsx │ │ └── index.js ├── Profile │ ├── Profile.css │ ├── Profile.jsx │ └── components │ │ ├── Addresses │ │ ├── Addresses.css │ │ ├── Addresses.jsx │ │ └── components │ │ │ ├── AddressForm │ │ │ ├── AddressForm.css │ │ │ └── AddressForm.jsx │ │ │ └── AddressList │ │ │ ├── AddressList.css │ │ │ ├── AddressList.jsx │ │ │ └── components │ │ │ ├── Address.css │ │ │ └── Address.jsx │ │ ├── Details │ │ ├── Details.css │ │ └── Details.jsx │ │ ├── Orders │ │ ├── Orders.css │ │ └── Orders.jsx │ │ └── index.js ├── WishList │ ├── WishList.css │ └── WishList.jsx └── index.js ├── server.js └── utils ├── popper.js └── utils.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/README.md -------------------------------------------------------------------------------- /fashify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/.gitignore -------------------------------------------------------------------------------- /fashify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/README.md -------------------------------------------------------------------------------- /fashify/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/package-lock.json -------------------------------------------------------------------------------- /fashify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/package.json -------------------------------------------------------------------------------- /fashify/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/public/favicon.ico -------------------------------------------------------------------------------- /fashify/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/public/index.html -------------------------------------------------------------------------------- /fashify/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/public/robots.txt -------------------------------------------------------------------------------- /fashify/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/App.css -------------------------------------------------------------------------------- /fashify/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/App.js -------------------------------------------------------------------------------- /fashify/src/DataReducer/DataReducer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/DataReducer/DataReducer.jsx -------------------------------------------------------------------------------- /fashify/src/DataReducer/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/DataReducer/constants.js -------------------------------------------------------------------------------- /fashify/src/Hooks/FilterHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/Hooks/FilterHook.js -------------------------------------------------------------------------------- /fashify/src/Hooks/Pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/Hooks/Pagination.js -------------------------------------------------------------------------------- /fashify/src/Hooks/outsideClickHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/Hooks/outsideClickHandler.js -------------------------------------------------------------------------------- /fashify/src/Services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/Services/index.js -------------------------------------------------------------------------------- /fashify/src/Services/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/Services/services.js -------------------------------------------------------------------------------- /fashify/src/backend/controllers/AuthController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/backend/controllers/AuthController.js -------------------------------------------------------------------------------- /fashify/src/backend/controllers/CartController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/backend/controllers/CartController.js -------------------------------------------------------------------------------- /fashify/src/backend/controllers/CategoryController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/backend/controllers/CategoryController.js -------------------------------------------------------------------------------- /fashify/src/backend/controllers/ProductController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/backend/controllers/ProductController.js -------------------------------------------------------------------------------- /fashify/src/backend/controllers/SizeController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/backend/controllers/SizeController.js -------------------------------------------------------------------------------- /fashify/src/backend/controllers/WishlistController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/backend/controllers/WishlistController.js -------------------------------------------------------------------------------- /fashify/src/backend/db/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/backend/db/categories.js -------------------------------------------------------------------------------- /fashify/src/backend/db/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/backend/db/products.js -------------------------------------------------------------------------------- /fashify/src/backend/db/sizes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/backend/db/sizes.js -------------------------------------------------------------------------------- /fashify/src/backend/db/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/backend/db/users.js -------------------------------------------------------------------------------- /fashify/src/backend/utils/authUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/backend/utils/authUtils.js -------------------------------------------------------------------------------- /fashify/src/components/Footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/components/Footer/Footer.css -------------------------------------------------------------------------------- /fashify/src/components/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/components/Footer/Footer.jsx -------------------------------------------------------------------------------- /fashify/src/components/Loader/Loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/components/Loader/Loader.css -------------------------------------------------------------------------------- /fashify/src/components/Loader/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/components/Loader/Loader.jsx -------------------------------------------------------------------------------- /fashify/src/components/Nav/Nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/components/Nav/Nav.css -------------------------------------------------------------------------------- /fashify/src/components/Nav/Nav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/components/Nav/Nav.jsx -------------------------------------------------------------------------------- /fashify/src/components/PrivateRoute/PrivateRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/components/PrivateRoute/PrivateRoute.js -------------------------------------------------------------------------------- /fashify/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/components/index.js -------------------------------------------------------------------------------- /fashify/src/contexts/auth-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/contexts/auth-context.js -------------------------------------------------------------------------------- /fashify/src/contexts/data-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/contexts/data-context.js -------------------------------------------------------------------------------- /fashify/src/contexts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/contexts/index.js -------------------------------------------------------------------------------- /fashify/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/index.js -------------------------------------------------------------------------------- /fashify/src/logo/Fashify Transparent pr 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/logo/Fashify Transparent pr 2.png -------------------------------------------------------------------------------- /fashify/src/logo/Fashify Transparent pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/logo/Fashify Transparent pr.png -------------------------------------------------------------------------------- /fashify/src/logo/FashifySoli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/logo/FashifySoli.png -------------------------------------------------------------------------------- /fashify/src/logo/FashifyTransparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/logo/FashifyTransparent.png -------------------------------------------------------------------------------- /fashify/src/logo/logout re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/logo/logout re.png -------------------------------------------------------------------------------- /fashify/src/logo/logout reduced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/logo/logout reduced.png -------------------------------------------------------------------------------- /fashify/src/logo/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/logo/logout.png -------------------------------------------------------------------------------- /fashify/src/logos/hero-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/logos/hero-logo.png -------------------------------------------------------------------------------- /fashify/src/pages/Auth/Auth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Auth/Auth.css -------------------------------------------------------------------------------- /fashify/src/pages/Auth/Login/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Auth/Login/Login.jsx -------------------------------------------------------------------------------- /fashify/src/pages/Auth/Logout/Logout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Auth/Logout/Logout.jsx -------------------------------------------------------------------------------- /fashify/src/pages/Auth/Signup/Signup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Auth/Signup/Signup.jsx -------------------------------------------------------------------------------- /fashify/src/pages/Cart/CartList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Cart/CartList.css -------------------------------------------------------------------------------- /fashify/src/pages/Cart/CartList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Cart/CartList.jsx -------------------------------------------------------------------------------- /fashify/src/pages/Cart/components/CartCard/CartCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Cart/components/CartCard/CartCard.css -------------------------------------------------------------------------------- /fashify/src/pages/Cart/components/CartCard/CartCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Cart/components/CartCard/CartCard.jsx -------------------------------------------------------------------------------- /fashify/src/pages/Checkout/Checkout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Checkout/Checkout.css -------------------------------------------------------------------------------- /fashify/src/pages/Checkout/Checkout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Checkout/Checkout.jsx -------------------------------------------------------------------------------- /fashify/src/pages/ErrorPage/ErrorPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/ErrorPage/ErrorPage.css -------------------------------------------------------------------------------- /fashify/src/pages/ErrorPage/ErrorPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/ErrorPage/ErrorPage.jsx -------------------------------------------------------------------------------- /fashify/src/pages/Home/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Home/Home.css -------------------------------------------------------------------------------- /fashify/src/pages/Home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Home/Home.jsx -------------------------------------------------------------------------------- /fashify/src/pages/MockApi/MockApi.css: -------------------------------------------------------------------------------- 1 | .mock-api{ 2 | margin-top: 6rem; 3 | } -------------------------------------------------------------------------------- /fashify/src/pages/MockApi/MockApi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/MockApi/MockApi.jsx -------------------------------------------------------------------------------- /fashify/src/pages/ProductDetails/ProductDetails.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/ProductDetails/ProductDetails.css -------------------------------------------------------------------------------- /fashify/src/pages/ProductDetails/ProductDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/ProductDetails/ProductDetails.jsx -------------------------------------------------------------------------------- /fashify/src/pages/ProductList/ProductList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/ProductList/ProductList.css -------------------------------------------------------------------------------- /fashify/src/pages/ProductList/ProductList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/ProductList/ProductList.jsx -------------------------------------------------------------------------------- /fashify/src/pages/ProductList/components/ProductCard/ProductCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/ProductList/components/ProductCard/ProductCard.css -------------------------------------------------------------------------------- /fashify/src/pages/ProductList/components/ProductCard/ProductCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/ProductList/components/ProductCard/ProductCard.jsx -------------------------------------------------------------------------------- /fashify/src/pages/ProductList/components/ProductListAside/ProductListAside.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/ProductList/components/ProductListAside/ProductListAside.css -------------------------------------------------------------------------------- /fashify/src/pages/ProductList/components/ProductListAside/ProductListAside.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/ProductList/components/ProductListAside/ProductListAside.jsx -------------------------------------------------------------------------------- /fashify/src/pages/ProductList/components/ProductListDrawar/ProductlistDrawar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/ProductList/components/ProductListDrawar/ProductlistDrawar.css -------------------------------------------------------------------------------- /fashify/src/pages/ProductList/components/ProductListDrawar/ProductlistDrawar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/ProductList/components/ProductListDrawar/ProductlistDrawar.jsx -------------------------------------------------------------------------------- /fashify/src/pages/ProductList/components/ProductListMain/ProductListMain.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/ProductList/components/ProductListMain/ProductListMain.css -------------------------------------------------------------------------------- /fashify/src/pages/ProductList/components/ProductListMain/ProductListMain.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/ProductList/components/ProductListMain/ProductListMain.jsx -------------------------------------------------------------------------------- /fashify/src/pages/ProductList/components/ProductlistFooter/ProductlistFooter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/ProductList/components/ProductlistFooter/ProductlistFooter.css -------------------------------------------------------------------------------- /fashify/src/pages/ProductList/components/ProductlistFooter/ProductlistFooter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/ProductList/components/ProductlistFooter/ProductlistFooter.jsx -------------------------------------------------------------------------------- /fashify/src/pages/ProductList/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/ProductList/components/index.js -------------------------------------------------------------------------------- /fashify/src/pages/Profile/Profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Profile/Profile.css -------------------------------------------------------------------------------- /fashify/src/pages/Profile/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Profile/Profile.jsx -------------------------------------------------------------------------------- /fashify/src/pages/Profile/components/Addresses/Addresses.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Profile/components/Addresses/Addresses.css -------------------------------------------------------------------------------- /fashify/src/pages/Profile/components/Addresses/Addresses.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Profile/components/Addresses/Addresses.jsx -------------------------------------------------------------------------------- /fashify/src/pages/Profile/components/Addresses/components/AddressForm/AddressForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Profile/components/Addresses/components/AddressForm/AddressForm.css -------------------------------------------------------------------------------- /fashify/src/pages/Profile/components/Addresses/components/AddressForm/AddressForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Profile/components/Addresses/components/AddressForm/AddressForm.jsx -------------------------------------------------------------------------------- /fashify/src/pages/Profile/components/Addresses/components/AddressList/AddressList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Profile/components/Addresses/components/AddressList/AddressList.css -------------------------------------------------------------------------------- /fashify/src/pages/Profile/components/Addresses/components/AddressList/AddressList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Profile/components/Addresses/components/AddressList/AddressList.jsx -------------------------------------------------------------------------------- /fashify/src/pages/Profile/components/Addresses/components/AddressList/components/Address.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Profile/components/Addresses/components/AddressList/components/Address.css -------------------------------------------------------------------------------- /fashify/src/pages/Profile/components/Addresses/components/AddressList/components/Address.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Profile/components/Addresses/components/AddressList/components/Address.jsx -------------------------------------------------------------------------------- /fashify/src/pages/Profile/components/Details/Details.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Profile/components/Details/Details.css -------------------------------------------------------------------------------- /fashify/src/pages/Profile/components/Details/Details.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Profile/components/Details/Details.jsx -------------------------------------------------------------------------------- /fashify/src/pages/Profile/components/Orders/Orders.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Profile/components/Orders/Orders.css -------------------------------------------------------------------------------- /fashify/src/pages/Profile/components/Orders/Orders.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Profile/components/Orders/Orders.jsx -------------------------------------------------------------------------------- /fashify/src/pages/Profile/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/Profile/components/index.js -------------------------------------------------------------------------------- /fashify/src/pages/WishList/WishList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/WishList/WishList.css -------------------------------------------------------------------------------- /fashify/src/pages/WishList/WishList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/WishList/WishList.jsx -------------------------------------------------------------------------------- /fashify/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/pages/index.js -------------------------------------------------------------------------------- /fashify/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/server.js -------------------------------------------------------------------------------- /fashify/src/utils/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/utils/popper.js -------------------------------------------------------------------------------- /fashify/src/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohanmond/FashiFy-react/HEAD/fashify/src/utils/utils.js --------------------------------------------------------------------------------