├── .eslintrc.cjs ├── .gitattributes ├── .gitignore ├── README.md ├── index.html ├── package.json ├── postcss.config.js ├── public └── vite.svg ├── src ├── App.css ├── App.jsx ├── assets │ ├── GeoGitHero.JPG │ └── GeogitIcon.png ├── components │ ├── AutoGlobe.jsx │ ├── GlobeComponent.jsx │ ├── LocationAutosuggest.jsx │ ├── LocationOptions.jsx │ ├── Separator.jsx │ ├── TopGitHubUsers.jsx │ ├── TypingAnimation.jsx │ ├── dialog.jsx │ ├── dropdown-menu.jsx │ ├── github-colors.css │ ├── tooltip.jsx │ └── utils.js ├── index.css ├── main.jsx └── pages │ ├── About.jsx │ ├── Home.jsx │ ├── Search.jsx │ ├── SignIn.jsx │ └── terms.jsx ├── tailwind.config.js ├── vercel.json ├── vite.config.js └── yarn.lock /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/GeoGitHero.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/assets/GeoGitHero.JPG -------------------------------------------------------------------------------- /src/assets/GeogitIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/assets/GeogitIcon.png -------------------------------------------------------------------------------- /src/components/AutoGlobe.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/components/AutoGlobe.jsx -------------------------------------------------------------------------------- /src/components/GlobeComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/components/GlobeComponent.jsx -------------------------------------------------------------------------------- /src/components/LocationAutosuggest.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/components/LocationAutosuggest.jsx -------------------------------------------------------------------------------- /src/components/LocationOptions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/components/LocationOptions.jsx -------------------------------------------------------------------------------- /src/components/Separator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/components/Separator.jsx -------------------------------------------------------------------------------- /src/components/TopGitHubUsers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/components/TopGitHubUsers.jsx -------------------------------------------------------------------------------- /src/components/TypingAnimation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/components/TypingAnimation.jsx -------------------------------------------------------------------------------- /src/components/dialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/components/dialog.jsx -------------------------------------------------------------------------------- /src/components/dropdown-menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/components/dropdown-menu.jsx -------------------------------------------------------------------------------- /src/components/github-colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/components/github-colors.css -------------------------------------------------------------------------------- /src/components/tooltip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/components/tooltip.jsx -------------------------------------------------------------------------------- /src/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/components/utils.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/pages/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/pages/About.jsx -------------------------------------------------------------------------------- /src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/pages/Home.jsx -------------------------------------------------------------------------------- /src/pages/Search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/pages/Search.jsx -------------------------------------------------------------------------------- /src/pages/SignIn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/pages/SignIn.jsx -------------------------------------------------------------------------------- /src/pages/terms.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/src/pages/terms.jsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/vite.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerrahulofficial/locationGit/HEAD/yarn.lock --------------------------------------------------------------------------------