├── .github ├── ISSUE_TEMPLATE │ └── ADD_ISSUE.yml ├── dependabot.yml └── pull_request_template.md ├── .gitignore ├── ADDBUTTON.md ├── BACKEND.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FRONTEND.md ├── LICENSE ├── README.md ├── package.json ├── public ├── Buttons │ ├── medakshchoudhary_1 │ │ ├── index.html │ │ └── style.css │ └── medakshchoudhary_2 │ │ ├── index.html │ │ └── style.css ├── android-chrome-192x192.webp ├── android-chrome-512x512.webp ├── apple-touch-icon.webp ├── blank-contact.webp ├── favicon-16x16.webp ├── favicon-32x32.webp ├── favicon.ico ├── gssoc.webp ├── hacktoberfest.webp ├── index.html ├── logo.webp ├── logo192.webp ├── logo512.webp ├── manifest.json ├── robots.txt └── sitemap.xml ├── readme-assets ├── about.webp ├── after-login.webp ├── create.webp ├── log-in-page.webp └── main-page.webp └── src ├── App.jsx ├── Server ├── getButtons.js ├── getUsersData.js └── repoStats.js ├── assets ├── buttons.svg ├── copy.webp ├── css.webp ├── demo.webp ├── gdsc.webp ├── github.webp ├── hacktoberfest-gssoc.webp ├── html.webp ├── js.webp ├── logout-svgrepo-com.svg ├── memoji.webp ├── moon.webp ├── spider.webp ├── spidey.webp ├── sun.webp └── svg.jsx ├── components ├── AddButton │ ├── AddButton.jsx │ ├── AddButton.module.css │ └── templates.js ├── Admin │ ├── AdminPanel.jsx │ ├── AdminPanel.module.css │ └── AdminRoute.jsx ├── Animation │ └── motion.jsx ├── ErrorBoundary │ ├── ErrorBoundary.jsx │ └── ErrorBoundary.module.css ├── ErrorPage │ ├── 404Error.jsx │ └── 404Errorpage.module.css ├── Explore │ ├── Explore.jsx │ └── Explore.module.css ├── ExploreButtons │ ├── ExploreButtons.jsx │ └── ExploreButtons.module.css ├── Footer │ ├── Footer.jsx │ └── Footer.module.css ├── Landing │ ├── Landing.jsx │ └── Landing.module.css ├── Login │ ├── Login.jsx │ └── Login.module.css ├── Main │ ├── Main.jsx │ └── Main.module.css ├── Migration │ └── MigrationButton.jsx ├── Navbar │ ├── Navbar.jsx │ ├── Navbar.module.css │ └── loginHelper.js ├── Score │ ├── Score.jsx │ └── Score.module.css ├── ShowCode │ ├── ShowCode.jsx │ └── ShowCode.module.css ├── SuspenseLoader │ ├── SuspenseLoader.jsx │ └── SuspenseLoader.module.css ├── Timeline │ ├── Timeline.jsx │ ├── Timeline.module.css │ ├── TimelineItem.jsx │ └── timelineData.js ├── Top │ ├── GoToTop.jsx │ └── GoToTop.module.css ├── UserProfile │ ├── UserProfile.jsx │ └── UserProfile.module.css ├── common │ ├── Button │ │ ├── Button.jsx │ │ └── Button.module.css │ ├── Card │ │ ├── Card.jsx │ │ └── Card.module.css │ ├── CodeEditor │ │ ├── CodeEditor.jsx │ │ └── CodeEditor.module.css │ ├── EditBioBtn │ │ ├── EditBioBtn.jsx │ │ └── EditBioBtn.module.css │ ├── EditbtnBtn │ │ ├── Editbtn.module.css │ │ ├── EditbtnBtn.jsx │ │ └── edit-svgrepo-com.svg │ ├── LangButton │ │ ├── LangButton.jsx │ │ └── LangButton.module.css │ ├── LikeButton │ │ ├── LikeButton.jsx │ │ ├── LikeButton.module.css │ │ └── heart.webp │ ├── Loader │ │ ├── Loader.jsx │ │ └── Loader.module.css │ ├── RepoInfo │ │ ├── RepoInfo.jsx │ │ └── RepoInfo.module.css │ ├── Skeleton │ │ ├── Skeleton.jsx │ │ └── Skeleton.module.css │ ├── ViewsIcon │ │ ├── ViewsIcon.jsx │ │ ├── ViewsIcon.module.css │ │ └── views.webp │ └── deleteBtn │ │ ├── DeleteButton.jsx │ │ ├── DeleteButton.module.css │ │ └── delete-svgrepo-com.svg └── index.js ├── context └── AppContext.jsx ├── firebase └── auth.js ├── fonts ├── Sansation-Bold.ttf └── Sansation-Regular.ttf ├── index.css ├── index.js ├── pages └── AboutUs │ ├── About.jsx │ ├── About.module.css │ ├── Contributor.jsx │ └── ContributorData.jsx └── utils └── migrateButtons.js /.github/ISSUE_TEMPLATE/ADD_ISSUE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/.github/ISSUE_TEMPLATE/ADD_ISSUE.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/.gitignore -------------------------------------------------------------------------------- /ADDBUTTON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/ADDBUTTON.md -------------------------------------------------------------------------------- /BACKEND.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/BACKEND.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FRONTEND.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/FRONTEND.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/package.json -------------------------------------------------------------------------------- /public/Buttons/medakshchoudhary_1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/public/Buttons/medakshchoudhary_1/index.html -------------------------------------------------------------------------------- /public/Buttons/medakshchoudhary_1/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/public/Buttons/medakshchoudhary_1/style.css -------------------------------------------------------------------------------- /public/Buttons/medakshchoudhary_2/index.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /public/Buttons/medakshchoudhary_2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/public/Buttons/medakshchoudhary_2/style.css -------------------------------------------------------------------------------- /public/android-chrome-192x192.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/public/android-chrome-192x192.webp -------------------------------------------------------------------------------- /public/android-chrome-512x512.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/public/android-chrome-512x512.webp -------------------------------------------------------------------------------- /public/apple-touch-icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/public/apple-touch-icon.webp -------------------------------------------------------------------------------- /public/blank-contact.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/public/blank-contact.webp -------------------------------------------------------------------------------- /public/favicon-16x16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/public/favicon-16x16.webp -------------------------------------------------------------------------------- /public/favicon-32x32.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/public/favicon-32x32.webp -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/gssoc.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/public/gssoc.webp -------------------------------------------------------------------------------- /public/hacktoberfest.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/public/hacktoberfest.webp -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/public/logo.webp -------------------------------------------------------------------------------- /public/logo192.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/public/logo192.webp -------------------------------------------------------------------------------- /public/logo512.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/public/logo512.webp -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /readme-assets/about.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/readme-assets/about.webp -------------------------------------------------------------------------------- /readme-assets/after-login.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/readme-assets/after-login.webp -------------------------------------------------------------------------------- /readme-assets/create.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/readme-assets/create.webp -------------------------------------------------------------------------------- /readme-assets/log-in-page.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/readme-assets/log-in-page.webp -------------------------------------------------------------------------------- /readme-assets/main-page.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/readme-assets/main-page.webp -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/Server/getButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/Server/getButtons.js -------------------------------------------------------------------------------- /src/Server/getUsersData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/Server/getUsersData.js -------------------------------------------------------------------------------- /src/Server/repoStats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/Server/repoStats.js -------------------------------------------------------------------------------- /src/assets/buttons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/assets/buttons.svg -------------------------------------------------------------------------------- /src/assets/copy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/assets/copy.webp -------------------------------------------------------------------------------- /src/assets/css.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/assets/css.webp -------------------------------------------------------------------------------- /src/assets/demo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/assets/demo.webp -------------------------------------------------------------------------------- /src/assets/gdsc.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/assets/gdsc.webp -------------------------------------------------------------------------------- /src/assets/github.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/assets/github.webp -------------------------------------------------------------------------------- /src/assets/hacktoberfest-gssoc.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/assets/hacktoberfest-gssoc.webp -------------------------------------------------------------------------------- /src/assets/html.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/assets/html.webp -------------------------------------------------------------------------------- /src/assets/js.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/assets/js.webp -------------------------------------------------------------------------------- /src/assets/logout-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/assets/logout-svgrepo-com.svg -------------------------------------------------------------------------------- /src/assets/memoji.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/assets/memoji.webp -------------------------------------------------------------------------------- /src/assets/moon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/assets/moon.webp -------------------------------------------------------------------------------- /src/assets/spider.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/assets/spider.webp -------------------------------------------------------------------------------- /src/assets/spidey.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/assets/spidey.webp -------------------------------------------------------------------------------- /src/assets/sun.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/assets/sun.webp -------------------------------------------------------------------------------- /src/assets/svg.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/assets/svg.jsx -------------------------------------------------------------------------------- /src/components/AddButton/AddButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/AddButton/AddButton.jsx -------------------------------------------------------------------------------- /src/components/AddButton/AddButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/AddButton/AddButton.module.css -------------------------------------------------------------------------------- /src/components/AddButton/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/AddButton/templates.js -------------------------------------------------------------------------------- /src/components/Admin/AdminPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Admin/AdminPanel.jsx -------------------------------------------------------------------------------- /src/components/Admin/AdminPanel.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Admin/AdminPanel.module.css -------------------------------------------------------------------------------- /src/components/Admin/AdminRoute.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Admin/AdminRoute.jsx -------------------------------------------------------------------------------- /src/components/Animation/motion.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Animation/motion.jsx -------------------------------------------------------------------------------- /src/components/ErrorBoundary/ErrorBoundary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/ErrorBoundary/ErrorBoundary.jsx -------------------------------------------------------------------------------- /src/components/ErrorBoundary/ErrorBoundary.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/ErrorBoundary/ErrorBoundary.module.css -------------------------------------------------------------------------------- /src/components/ErrorPage/404Error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/ErrorPage/404Error.jsx -------------------------------------------------------------------------------- /src/components/ErrorPage/404Errorpage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/ErrorPage/404Errorpage.module.css -------------------------------------------------------------------------------- /src/components/Explore/Explore.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Explore/Explore.jsx -------------------------------------------------------------------------------- /src/components/Explore/Explore.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Explore/Explore.module.css -------------------------------------------------------------------------------- /src/components/ExploreButtons/ExploreButtons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/ExploreButtons/ExploreButtons.jsx -------------------------------------------------------------------------------- /src/components/ExploreButtons/ExploreButtons.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/ExploreButtons/ExploreButtons.module.css -------------------------------------------------------------------------------- /src/components/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Footer/Footer.jsx -------------------------------------------------------------------------------- /src/components/Footer/Footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Footer/Footer.module.css -------------------------------------------------------------------------------- /src/components/Landing/Landing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Landing/Landing.jsx -------------------------------------------------------------------------------- /src/components/Landing/Landing.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Landing/Landing.module.css -------------------------------------------------------------------------------- /src/components/Login/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Login/Login.jsx -------------------------------------------------------------------------------- /src/components/Login/Login.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Login/Login.module.css -------------------------------------------------------------------------------- /src/components/Main/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Main/Main.jsx -------------------------------------------------------------------------------- /src/components/Main/Main.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Main/Main.module.css -------------------------------------------------------------------------------- /src/components/Migration/MigrationButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Migration/MigrationButton.jsx -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Navbar/Navbar.jsx -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Navbar/Navbar.module.css -------------------------------------------------------------------------------- /src/components/Navbar/loginHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Navbar/loginHelper.js -------------------------------------------------------------------------------- /src/components/Score/Score.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Score/Score.jsx -------------------------------------------------------------------------------- /src/components/Score/Score.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Score/Score.module.css -------------------------------------------------------------------------------- /src/components/ShowCode/ShowCode.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/ShowCode/ShowCode.jsx -------------------------------------------------------------------------------- /src/components/ShowCode/ShowCode.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/ShowCode/ShowCode.module.css -------------------------------------------------------------------------------- /src/components/SuspenseLoader/SuspenseLoader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/SuspenseLoader/SuspenseLoader.jsx -------------------------------------------------------------------------------- /src/components/SuspenseLoader/SuspenseLoader.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/SuspenseLoader/SuspenseLoader.module.css -------------------------------------------------------------------------------- /src/components/Timeline/Timeline.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Timeline/Timeline.jsx -------------------------------------------------------------------------------- /src/components/Timeline/Timeline.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Timeline/Timeline.module.css -------------------------------------------------------------------------------- /src/components/Timeline/TimelineItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Timeline/TimelineItem.jsx -------------------------------------------------------------------------------- /src/components/Timeline/timelineData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Timeline/timelineData.js -------------------------------------------------------------------------------- /src/components/Top/GoToTop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Top/GoToTop.jsx -------------------------------------------------------------------------------- /src/components/Top/GoToTop.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/Top/GoToTop.module.css -------------------------------------------------------------------------------- /src/components/UserProfile/UserProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/UserProfile/UserProfile.jsx -------------------------------------------------------------------------------- /src/components/UserProfile/UserProfile.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/UserProfile/UserProfile.module.css -------------------------------------------------------------------------------- /src/components/common/Button/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/Button/Button.jsx -------------------------------------------------------------------------------- /src/components/common/Button/Button.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/Button/Button.module.css -------------------------------------------------------------------------------- /src/components/common/Card/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/Card/Card.jsx -------------------------------------------------------------------------------- /src/components/common/Card/Card.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/Card/Card.module.css -------------------------------------------------------------------------------- /src/components/common/CodeEditor/CodeEditor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/CodeEditor/CodeEditor.jsx -------------------------------------------------------------------------------- /src/components/common/CodeEditor/CodeEditor.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/CodeEditor/CodeEditor.module.css -------------------------------------------------------------------------------- /src/components/common/EditBioBtn/EditBioBtn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/EditBioBtn/EditBioBtn.jsx -------------------------------------------------------------------------------- /src/components/common/EditBioBtn/EditBioBtn.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/EditBioBtn/EditBioBtn.module.css -------------------------------------------------------------------------------- /src/components/common/EditbtnBtn/Editbtn.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/EditbtnBtn/Editbtn.module.css -------------------------------------------------------------------------------- /src/components/common/EditbtnBtn/EditbtnBtn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/EditbtnBtn/EditbtnBtn.jsx -------------------------------------------------------------------------------- /src/components/common/EditbtnBtn/edit-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/EditbtnBtn/edit-svgrepo-com.svg -------------------------------------------------------------------------------- /src/components/common/LangButton/LangButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/LangButton/LangButton.jsx -------------------------------------------------------------------------------- /src/components/common/LangButton/LangButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/LangButton/LangButton.module.css -------------------------------------------------------------------------------- /src/components/common/LikeButton/LikeButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/LikeButton/LikeButton.jsx -------------------------------------------------------------------------------- /src/components/common/LikeButton/LikeButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/LikeButton/LikeButton.module.css -------------------------------------------------------------------------------- /src/components/common/LikeButton/heart.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/LikeButton/heart.webp -------------------------------------------------------------------------------- /src/components/common/Loader/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/Loader/Loader.jsx -------------------------------------------------------------------------------- /src/components/common/Loader/Loader.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/Loader/Loader.module.css -------------------------------------------------------------------------------- /src/components/common/RepoInfo/RepoInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/RepoInfo/RepoInfo.jsx -------------------------------------------------------------------------------- /src/components/common/RepoInfo/RepoInfo.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/RepoInfo/RepoInfo.module.css -------------------------------------------------------------------------------- /src/components/common/Skeleton/Skeleton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/Skeleton/Skeleton.jsx -------------------------------------------------------------------------------- /src/components/common/Skeleton/Skeleton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/Skeleton/Skeleton.module.css -------------------------------------------------------------------------------- /src/components/common/ViewsIcon/ViewsIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/ViewsIcon/ViewsIcon.jsx -------------------------------------------------------------------------------- /src/components/common/ViewsIcon/ViewsIcon.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/ViewsIcon/ViewsIcon.module.css -------------------------------------------------------------------------------- /src/components/common/ViewsIcon/views.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/ViewsIcon/views.webp -------------------------------------------------------------------------------- /src/components/common/deleteBtn/DeleteButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/deleteBtn/DeleteButton.jsx -------------------------------------------------------------------------------- /src/components/common/deleteBtn/DeleteButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/deleteBtn/DeleteButton.module.css -------------------------------------------------------------------------------- /src/components/common/deleteBtn/delete-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/common/deleteBtn/delete-svgrepo-com.svg -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/context/AppContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/context/AppContext.jsx -------------------------------------------------------------------------------- /src/firebase/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/firebase/auth.js -------------------------------------------------------------------------------- /src/fonts/Sansation-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/fonts/Sansation-Bold.ttf -------------------------------------------------------------------------------- /src/fonts/Sansation-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/fonts/Sansation-Regular.ttf -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/AboutUs/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/pages/AboutUs/About.jsx -------------------------------------------------------------------------------- /src/pages/AboutUs/About.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/pages/AboutUs/About.module.css -------------------------------------------------------------------------------- /src/pages/AboutUs/Contributor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/pages/AboutUs/Contributor.jsx -------------------------------------------------------------------------------- /src/pages/AboutUs/ContributorData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/pages/AboutUs/ContributorData.jsx -------------------------------------------------------------------------------- /src/utils/migrateButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spyware007/Animating-Buttons/HEAD/src/utils/migrateButtons.js --------------------------------------------------------------------------------