├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.js ├── App.test.js ├── Assets │ ├── 404.svg │ ├── about.svg │ ├── bg.png │ ├── contact.svg │ ├── footerbg.png │ ├── info.svg │ ├── log.svg │ ├── register.svg │ ├── s1.png │ ├── s2.png │ ├── s3.png │ ├── s4.png │ ├── s5.png │ ├── s6.png │ └── user.svg ├── component │ ├── Dashoboard │ │ ├── AddService │ │ │ ├── AddService.css │ │ │ └── AddService.jsx │ │ ├── AdminDashboard │ │ │ └── AdminDashboard.jsx │ │ ├── Dashboard │ │ │ ├── Dashboard.css │ │ │ └── Dashboard.jsx │ │ ├── MakeAdmin │ │ │ └── MakeAdmin.jsx │ │ ├── ManageServices │ │ │ └── ManageServices.jsx │ │ ├── OrderList │ │ │ ├── Order.css │ │ │ ├── Order.jsx │ │ │ ├── OrderList.css │ │ │ └── OrderList.jsx │ │ ├── Profile │ │ │ ├── Profile.css │ │ │ └── Profile.jsx │ │ ├── Sidebar │ │ │ ├── Sidebar.css │ │ │ └── Sidebar.jsx │ │ └── UserDashboard │ │ │ ├── AddReview │ │ │ ├── Review.css │ │ │ ├── Review.jsx │ │ │ └── ReviewFrom.jsx │ │ │ ├── Book │ │ │ ├── Book.css │ │ │ ├── Book.jsx │ │ │ └── Checkout.jsx │ │ │ ├── BookList │ │ │ ├── BookList.css │ │ │ └── BookList.jsx │ │ │ └── UserDashboard │ │ │ └── UserDashboard.jsx │ ├── FooterData.jsx │ ├── Home │ │ ├── About │ │ │ └── About.jsx │ │ ├── BrowserSupport │ │ │ └── BrowserSupport.jsx │ │ ├── BuildTools │ │ │ └── BuildTools.jsx │ │ ├── Contact │ │ │ ├── Contact.css │ │ │ └── Contact.jsx │ │ ├── Footer │ │ │ ├── Footer.css │ │ │ ├── Footer.jsx │ │ │ ├── FooterCol.jsx │ │ │ └── FooterInfo.jsx │ │ ├── HappyClient │ │ │ ├── HappyClient.css │ │ │ └── HappyClient.jsx │ │ ├── Header │ │ │ ├── Header.css │ │ │ └── Header.jsx │ │ ├── Hero │ │ │ └── Hero.jsx │ │ ├── Home │ │ │ └── Home.jsx │ │ ├── Pricing │ │ │ ├── Pricing.css │ │ │ ├── Pricing.jsx │ │ │ └── PricingCard.jsx │ │ ├── Reviews │ │ │ ├── Review.jsx │ │ │ ├── Reviews.css │ │ │ └── Reviews.jsx │ │ └── Services │ │ │ ├── Service.css │ │ │ ├── Service.jsx │ │ │ └── Services.jsx │ ├── Login │ │ ├── LoginManager.jsx │ │ ├── LoginModal.css │ │ ├── LoginModal.jsx │ │ ├── PrivateRoute.jsx │ │ ├── SignInForm.jsx │ │ ├── SignUpForm.jsx │ │ └── SocialMedia.jsx │ ├── NotFound.jsx │ ├── PricingData.jsx │ └── Shared │ │ ├── Navbar │ │ ├── Navbar.css │ │ └── Navbar.jsx │ │ ├── PopOver │ │ ├── PopOver.css │ │ └── PopOver.jsx │ │ ├── ScrollTop │ │ ├── ScrollTop.css │ │ └── ScrollTop.jsx │ │ ├── Spinner │ │ └── Spinner.jsx │ │ └── TableOrder │ │ ├── ListSkeleton.jsx │ │ └── TableOrder.jsx ├── context │ ├── actionTypes.js │ ├── app-context.js │ ├── index.js │ └── reducer.js ├── firebaseBaseConfig.js ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js └── setupTests.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Assets/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/Assets/404.svg -------------------------------------------------------------------------------- /src/Assets/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/Assets/about.svg -------------------------------------------------------------------------------- /src/Assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/Assets/bg.png -------------------------------------------------------------------------------- /src/Assets/contact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/Assets/contact.svg -------------------------------------------------------------------------------- /src/Assets/footerbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/Assets/footerbg.png -------------------------------------------------------------------------------- /src/Assets/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/Assets/info.svg -------------------------------------------------------------------------------- /src/Assets/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/Assets/log.svg -------------------------------------------------------------------------------- /src/Assets/register.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/Assets/register.svg -------------------------------------------------------------------------------- /src/Assets/s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/Assets/s1.png -------------------------------------------------------------------------------- /src/Assets/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/Assets/s2.png -------------------------------------------------------------------------------- /src/Assets/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/Assets/s3.png -------------------------------------------------------------------------------- /src/Assets/s4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/Assets/s4.png -------------------------------------------------------------------------------- /src/Assets/s5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/Assets/s5.png -------------------------------------------------------------------------------- /src/Assets/s6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/Assets/s6.png -------------------------------------------------------------------------------- /src/Assets/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/Assets/user.svg -------------------------------------------------------------------------------- /src/component/Dashoboard/AddService/AddService.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/AddService/AddService.css -------------------------------------------------------------------------------- /src/component/Dashoboard/AddService/AddService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/AddService/AddService.jsx -------------------------------------------------------------------------------- /src/component/Dashoboard/AdminDashboard/AdminDashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/AdminDashboard/AdminDashboard.jsx -------------------------------------------------------------------------------- /src/component/Dashoboard/Dashboard/Dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/Dashboard/Dashboard.css -------------------------------------------------------------------------------- /src/component/Dashoboard/Dashboard/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/Dashboard/Dashboard.jsx -------------------------------------------------------------------------------- /src/component/Dashoboard/MakeAdmin/MakeAdmin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/MakeAdmin/MakeAdmin.jsx -------------------------------------------------------------------------------- /src/component/Dashoboard/ManageServices/ManageServices.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/ManageServices/ManageServices.jsx -------------------------------------------------------------------------------- /src/component/Dashoboard/OrderList/Order.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/OrderList/Order.css -------------------------------------------------------------------------------- /src/component/Dashoboard/OrderList/Order.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/OrderList/Order.jsx -------------------------------------------------------------------------------- /src/component/Dashoboard/OrderList/OrderList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/OrderList/OrderList.css -------------------------------------------------------------------------------- /src/component/Dashoboard/OrderList/OrderList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/OrderList/OrderList.jsx -------------------------------------------------------------------------------- /src/component/Dashoboard/Profile/Profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/Profile/Profile.css -------------------------------------------------------------------------------- /src/component/Dashoboard/Profile/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/Profile/Profile.jsx -------------------------------------------------------------------------------- /src/component/Dashoboard/Sidebar/Sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/Sidebar/Sidebar.css -------------------------------------------------------------------------------- /src/component/Dashoboard/Sidebar/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/Sidebar/Sidebar.jsx -------------------------------------------------------------------------------- /src/component/Dashoboard/UserDashboard/AddReview/Review.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/UserDashboard/AddReview/Review.css -------------------------------------------------------------------------------- /src/component/Dashoboard/UserDashboard/AddReview/Review.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/UserDashboard/AddReview/Review.jsx -------------------------------------------------------------------------------- /src/component/Dashoboard/UserDashboard/AddReview/ReviewFrom.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/UserDashboard/AddReview/ReviewFrom.jsx -------------------------------------------------------------------------------- /src/component/Dashoboard/UserDashboard/Book/Book.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/UserDashboard/Book/Book.css -------------------------------------------------------------------------------- /src/component/Dashoboard/UserDashboard/Book/Book.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/UserDashboard/Book/Book.jsx -------------------------------------------------------------------------------- /src/component/Dashoboard/UserDashboard/Book/Checkout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/UserDashboard/Book/Checkout.jsx -------------------------------------------------------------------------------- /src/component/Dashoboard/UserDashboard/BookList/BookList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/UserDashboard/BookList/BookList.css -------------------------------------------------------------------------------- /src/component/Dashoboard/UserDashboard/BookList/BookList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/UserDashboard/BookList/BookList.jsx -------------------------------------------------------------------------------- /src/component/Dashoboard/UserDashboard/UserDashboard/UserDashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Dashoboard/UserDashboard/UserDashboard/UserDashboard.jsx -------------------------------------------------------------------------------- /src/component/FooterData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/FooterData.jsx -------------------------------------------------------------------------------- /src/component/Home/About/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/About/About.jsx -------------------------------------------------------------------------------- /src/component/Home/BrowserSupport/BrowserSupport.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/BrowserSupport/BrowserSupport.jsx -------------------------------------------------------------------------------- /src/component/Home/BuildTools/BuildTools.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/BuildTools/BuildTools.jsx -------------------------------------------------------------------------------- /src/component/Home/Contact/Contact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/Contact/Contact.css -------------------------------------------------------------------------------- /src/component/Home/Contact/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/Contact/Contact.jsx -------------------------------------------------------------------------------- /src/component/Home/Footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/Footer/Footer.css -------------------------------------------------------------------------------- /src/component/Home/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/Footer/Footer.jsx -------------------------------------------------------------------------------- /src/component/Home/Footer/FooterCol.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/Footer/FooterCol.jsx -------------------------------------------------------------------------------- /src/component/Home/Footer/FooterInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/Footer/FooterInfo.jsx -------------------------------------------------------------------------------- /src/component/Home/HappyClient/HappyClient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/HappyClient/HappyClient.css -------------------------------------------------------------------------------- /src/component/Home/HappyClient/HappyClient.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/HappyClient/HappyClient.jsx -------------------------------------------------------------------------------- /src/component/Home/Header/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/Header/Header.css -------------------------------------------------------------------------------- /src/component/Home/Header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/Header/Header.jsx -------------------------------------------------------------------------------- /src/component/Home/Hero/Hero.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/Hero/Hero.jsx -------------------------------------------------------------------------------- /src/component/Home/Home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/Home/Home.jsx -------------------------------------------------------------------------------- /src/component/Home/Pricing/Pricing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/Pricing/Pricing.css -------------------------------------------------------------------------------- /src/component/Home/Pricing/Pricing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/Pricing/Pricing.jsx -------------------------------------------------------------------------------- /src/component/Home/Pricing/PricingCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/Pricing/PricingCard.jsx -------------------------------------------------------------------------------- /src/component/Home/Reviews/Review.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/Reviews/Review.jsx -------------------------------------------------------------------------------- /src/component/Home/Reviews/Reviews.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/Reviews/Reviews.css -------------------------------------------------------------------------------- /src/component/Home/Reviews/Reviews.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/Reviews/Reviews.jsx -------------------------------------------------------------------------------- /src/component/Home/Services/Service.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/Services/Service.css -------------------------------------------------------------------------------- /src/component/Home/Services/Service.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/Services/Service.jsx -------------------------------------------------------------------------------- /src/component/Home/Services/Services.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Home/Services/Services.jsx -------------------------------------------------------------------------------- /src/component/Login/LoginManager.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Login/LoginManager.jsx -------------------------------------------------------------------------------- /src/component/Login/LoginModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Login/LoginModal.css -------------------------------------------------------------------------------- /src/component/Login/LoginModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Login/LoginModal.jsx -------------------------------------------------------------------------------- /src/component/Login/PrivateRoute.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Login/PrivateRoute.jsx -------------------------------------------------------------------------------- /src/component/Login/SignInForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Login/SignInForm.jsx -------------------------------------------------------------------------------- /src/component/Login/SignUpForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Login/SignUpForm.jsx -------------------------------------------------------------------------------- /src/component/Login/SocialMedia.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Login/SocialMedia.jsx -------------------------------------------------------------------------------- /src/component/NotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/NotFound.jsx -------------------------------------------------------------------------------- /src/component/PricingData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/PricingData.jsx -------------------------------------------------------------------------------- /src/component/Shared/Navbar/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Shared/Navbar/Navbar.css -------------------------------------------------------------------------------- /src/component/Shared/Navbar/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Shared/Navbar/Navbar.jsx -------------------------------------------------------------------------------- /src/component/Shared/PopOver/PopOver.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Shared/PopOver/PopOver.css -------------------------------------------------------------------------------- /src/component/Shared/PopOver/PopOver.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Shared/PopOver/PopOver.jsx -------------------------------------------------------------------------------- /src/component/Shared/ScrollTop/ScrollTop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Shared/ScrollTop/ScrollTop.css -------------------------------------------------------------------------------- /src/component/Shared/ScrollTop/ScrollTop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Shared/ScrollTop/ScrollTop.jsx -------------------------------------------------------------------------------- /src/component/Shared/Spinner/Spinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Shared/Spinner/Spinner.jsx -------------------------------------------------------------------------------- /src/component/Shared/TableOrder/ListSkeleton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Shared/TableOrder/ListSkeleton.jsx -------------------------------------------------------------------------------- /src/component/Shared/TableOrder/TableOrder.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/component/Shared/TableOrder/TableOrder.jsx -------------------------------------------------------------------------------- /src/context/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/context/actionTypes.js -------------------------------------------------------------------------------- /src/context/app-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/context/app-context.js -------------------------------------------------------------------------------- /src/context/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/context/index.js -------------------------------------------------------------------------------- /src/context/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/context/reducer.js -------------------------------------------------------------------------------- /src/firebaseBaseConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/firebaseBaseConfig.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ujjalzaman/Easy-Consulting-react/HEAD/yarn.lock --------------------------------------------------------------------------------