├── .gitignore ├── .vscode └── settings.json ├── README.md ├── README.old.md ├── craco.config.js ├── package.json ├── public ├── Assets │ ├── apple-touch-icon.png │ ├── carMarker.png │ ├── destination.png │ ├── favicon.ico │ ├── favicon_io.zip │ ├── maskable.png │ ├── site.webmanifest │ ├── stop.avif │ ├── uberIcon-192.png │ ├── uberIcon-256.png │ ├── uberIcon-384.png │ ├── uberIcon-512.png │ └── uberIcon.png ├── _redirects ├── favicon.ico ├── index.html ├── manifest.json ├── robots.txt └── sw.js ├── src ├── App.test.tsx ├── App.tsx ├── Component │ ├── ErrorFallBack.tsx │ ├── Loading.tsx │ ├── account │ │ └── index.tsx │ ├── const │ │ ├── api.ts │ │ └── svg.tsx │ ├── formCard │ │ ├── heading.tsx │ │ ├── index.tsx │ │ ├── input.tsx │ │ └── suggestion.tsx │ ├── header │ │ ├── accountDetails.tsx │ │ ├── dropdown.tsx │ │ ├── index.tsx │ │ ├── menubar.tsx │ │ └── mobile │ │ │ ├── index.tsx │ │ │ └── sidebar.tsx │ ├── map │ │ ├── driversLocation.ts │ │ ├── index.tsx │ │ ├── infoComponent.tsx │ │ └── mapStyle.ts │ └── styles │ │ ├── card.ts │ │ ├── header.ts │ │ └── index.ts ├── Pages │ ├── Nopage.tsx │ ├── auth │ │ └── index.tsx │ ├── drop │ │ ├── category.tsx │ │ ├── index.tsx │ │ └── response.tsx │ ├── home │ │ └── index.tsx │ └── pick │ │ └── index.tsx ├── Service │ └── address.ts ├── Store │ ├── hooks.ts │ ├── index.ts │ └── slice.tsx ├── firebase.ts ├── index.css ├── index.tsx ├── react-app-env.d.ts ├── reportWebVitals.ts ├── service-worker.js ├── serviceWorkerRegistration.js ├── setupTests.ts └── swDev.js ├── tailwind.config.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5502 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/README.md -------------------------------------------------------------------------------- /README.old.md: -------------------------------------------------------------------------------- 1 | # Uber-clone -------------------------------------------------------------------------------- /craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/craco.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/package.json -------------------------------------------------------------------------------- /public/Assets/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/public/Assets/apple-touch-icon.png -------------------------------------------------------------------------------- /public/Assets/carMarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/public/Assets/carMarker.png -------------------------------------------------------------------------------- /public/Assets/destination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/public/Assets/destination.png -------------------------------------------------------------------------------- /public/Assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/public/Assets/favicon.ico -------------------------------------------------------------------------------- /public/Assets/favicon_io.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/public/Assets/favicon_io.zip -------------------------------------------------------------------------------- /public/Assets/maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/public/Assets/maskable.png -------------------------------------------------------------------------------- /public/Assets/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/public/Assets/site.webmanifest -------------------------------------------------------------------------------- /public/Assets/stop.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/public/Assets/stop.avif -------------------------------------------------------------------------------- /public/Assets/uberIcon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/public/Assets/uberIcon-192.png -------------------------------------------------------------------------------- /public/Assets/uberIcon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/public/Assets/uberIcon-256.png -------------------------------------------------------------------------------- /public/Assets/uberIcon-384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/public/Assets/uberIcon-384.png -------------------------------------------------------------------------------- /public/Assets/uberIcon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/public/Assets/uberIcon-512.png -------------------------------------------------------------------------------- /public/Assets/uberIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/public/Assets/uberIcon.png -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- 1 | console.warn('sw file in public folder') -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/App.test.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Component/ErrorFallBack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/ErrorFallBack.tsx -------------------------------------------------------------------------------- /src/Component/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/Loading.tsx -------------------------------------------------------------------------------- /src/Component/account/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/account/index.tsx -------------------------------------------------------------------------------- /src/Component/const/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/const/api.ts -------------------------------------------------------------------------------- /src/Component/const/svg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/const/svg.tsx -------------------------------------------------------------------------------- /src/Component/formCard/heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/formCard/heading.tsx -------------------------------------------------------------------------------- /src/Component/formCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/formCard/index.tsx -------------------------------------------------------------------------------- /src/Component/formCard/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/formCard/input.tsx -------------------------------------------------------------------------------- /src/Component/formCard/suggestion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/formCard/suggestion.tsx -------------------------------------------------------------------------------- /src/Component/header/accountDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/header/accountDetails.tsx -------------------------------------------------------------------------------- /src/Component/header/dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/header/dropdown.tsx -------------------------------------------------------------------------------- /src/Component/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/header/index.tsx -------------------------------------------------------------------------------- /src/Component/header/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/header/menubar.tsx -------------------------------------------------------------------------------- /src/Component/header/mobile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/header/mobile/index.tsx -------------------------------------------------------------------------------- /src/Component/header/mobile/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/header/mobile/sidebar.tsx -------------------------------------------------------------------------------- /src/Component/map/driversLocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/map/driversLocation.ts -------------------------------------------------------------------------------- /src/Component/map/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/map/index.tsx -------------------------------------------------------------------------------- /src/Component/map/infoComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/map/infoComponent.tsx -------------------------------------------------------------------------------- /src/Component/map/mapStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/map/mapStyle.ts -------------------------------------------------------------------------------- /src/Component/styles/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/styles/card.ts -------------------------------------------------------------------------------- /src/Component/styles/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/styles/header.ts -------------------------------------------------------------------------------- /src/Component/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Component/styles/index.ts -------------------------------------------------------------------------------- /src/Pages/Nopage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Pages/Nopage.tsx -------------------------------------------------------------------------------- /src/Pages/auth/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Pages/auth/index.tsx -------------------------------------------------------------------------------- /src/Pages/drop/category.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Pages/drop/category.tsx -------------------------------------------------------------------------------- /src/Pages/drop/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Pages/drop/index.tsx -------------------------------------------------------------------------------- /src/Pages/drop/response.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Pages/drop/response.tsx -------------------------------------------------------------------------------- /src/Pages/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Pages/home/index.tsx -------------------------------------------------------------------------------- /src/Pages/pick/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Pages/pick/index.tsx -------------------------------------------------------------------------------- /src/Service/address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Service/address.ts -------------------------------------------------------------------------------- /src/Store/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Store/hooks.ts -------------------------------------------------------------------------------- /src/Store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Store/index.ts -------------------------------------------------------------------------------- /src/Store/slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/Store/slice.tsx -------------------------------------------------------------------------------- /src/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/firebase.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /src/serviceWorkerRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/serviceWorkerRegistration.js -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/swDev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/src/swDev.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-doctor/uber-clone/HEAD/tsconfig.json --------------------------------------------------------------------------------