├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── components ├── Footer │ ├── footer.module.css │ └── index.jsx ├── Header │ ├── _darkmode_toggle │ │ ├── darkmodeToggle.jsx │ │ └── darkmodeToggle.module.css │ ├── header.jsx │ └── header.module.css ├── LoadingIcon │ ├── index.jsx │ └── loading.module.css ├── card │ ├── card.module.css │ └── index.jsx ├── categories │ ├── category.module.css │ └── index.jsx ├── imageSlider │ ├── imageComponent │ │ ├── imageComponent.module.css │ │ └── index.jsx │ ├── imageSlider.module.css │ └── index.jsx ├── toolsPage-componets │ ├── Header │ │ ├── heroSection │ │ │ ├── heroSection.module.css │ │ │ └── index.jsx │ │ └── index.jsx │ ├── copyTextBox │ │ └── index.jsx │ └── textInput │ │ ├── index.jsx │ │ └── textinput.module.css └── videoPlayer │ ├── index.jsx │ ├── videoComponent │ ├── index.jsx │ └── videoComponent.module.css │ └── videoPlayer.module.css ├── configs ├── cards.config.js ├── categories.config.js └── instagramData.test.config.js ├── netlify.toml ├── next-env.d.ts ├── package.json ├── pages ├── Share │ └── index.jsx ├── _app.jsx ├── _document.jsx ├── api │ ├── instagram.js │ └── youtube.js ├── google │ ├── YouTube │ │ └── downloader │ │ │ └── index.jsx │ ├── [path].jsx │ └── drive-link-gen.jsx ├── index.jsx └── instagram │ └── [path].jsx ├── public ├── images │ ├── 006bd8c9-3a18-dd17-4575-7c2a52480a98.webPlatform.png │ ├── 01aaad95-96c6-beaa-6416-9a2237a736dd.webPlatform.png │ ├── 14fbfb3f-832a-915f-f7b2-37aa89a36518.webPlatform.png │ ├── 27333677-42a7-9819-7c22-f3e5d8c5d8a8.webPlatform.png │ ├── 2c8c5d1f-446d-1041-fe00-c0b993d224bb.webPlatform.png │ ├── 4307672d-10bc-dcd6-de42-ca62409a458e.webPlatform.png │ ├── 4b791c82-a374-1250-d09e-3586f5a0298c.webPlatform.png │ ├── 64c70b39-ed95-cb0e-3313-7aeb8eff69a7.webPlatform.png │ ├── 6a59e343-94f9-f883-c005-7eda77f725da.webPlatform.png │ ├── 8ce70cb4-bce0-5d13-c2a8-ab0b03b557d7.webPlatform.png │ ├── 8d02342f-8b4c-5e7b-0b41-12e0cd32688c.webPlatform.png │ ├── 95d7c2fc-de3a-a8b8-7b02-5e5c7e12b518.webPlatform.png │ ├── a9adb666-d106-b152-7e20-1fc5bd863806.webPlatform.png │ ├── c3290bc6-cc20-2ecc-8e98-a678907001b4.webPlatform.png │ ├── c9a3ec0e-7c64-541c-bbc0-261e901fc1e8.webPlatform.png │ └── d03b4654-de0f-89bb-1db8-6cff85fec44d.webPlatform.png └── manifest.json ├── styles └── styles.css ├── utils ├── ga.js └── instagram.js └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | ko_fi: piyush 4 | 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | rename.js 3 | dist 4 | .next -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/README.md -------------------------------------------------------------------------------- /components/Footer/footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/Footer/footer.module.css -------------------------------------------------------------------------------- /components/Footer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/Footer/index.jsx -------------------------------------------------------------------------------- /components/Header/_darkmode_toggle/darkmodeToggle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/Header/_darkmode_toggle/darkmodeToggle.jsx -------------------------------------------------------------------------------- /components/Header/_darkmode_toggle/darkmodeToggle.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/Header/_darkmode_toggle/darkmodeToggle.module.css -------------------------------------------------------------------------------- /components/Header/header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/Header/header.jsx -------------------------------------------------------------------------------- /components/Header/header.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/Header/header.module.css -------------------------------------------------------------------------------- /components/LoadingIcon/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/LoadingIcon/index.jsx -------------------------------------------------------------------------------- /components/LoadingIcon/loading.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/LoadingIcon/loading.module.css -------------------------------------------------------------------------------- /components/card/card.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/card/card.module.css -------------------------------------------------------------------------------- /components/card/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/card/index.jsx -------------------------------------------------------------------------------- /components/categories/category.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/categories/category.module.css -------------------------------------------------------------------------------- /components/categories/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/categories/index.jsx -------------------------------------------------------------------------------- /components/imageSlider/imageComponent/imageComponent.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/imageSlider/imageComponent/imageComponent.module.css -------------------------------------------------------------------------------- /components/imageSlider/imageComponent/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/imageSlider/imageComponent/index.jsx -------------------------------------------------------------------------------- /components/imageSlider/imageSlider.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/imageSlider/imageSlider.module.css -------------------------------------------------------------------------------- /components/imageSlider/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/imageSlider/index.jsx -------------------------------------------------------------------------------- /components/toolsPage-componets/Header/heroSection/heroSection.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/toolsPage-componets/Header/heroSection/heroSection.module.css -------------------------------------------------------------------------------- /components/toolsPage-componets/Header/heroSection/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/toolsPage-componets/Header/heroSection/index.jsx -------------------------------------------------------------------------------- /components/toolsPage-componets/Header/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/toolsPage-componets/Header/index.jsx -------------------------------------------------------------------------------- /components/toolsPage-componets/copyTextBox/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/toolsPage-componets/copyTextBox/index.jsx -------------------------------------------------------------------------------- /components/toolsPage-componets/textInput/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/toolsPage-componets/textInput/index.jsx -------------------------------------------------------------------------------- /components/toolsPage-componets/textInput/textinput.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/toolsPage-componets/textInput/textinput.module.css -------------------------------------------------------------------------------- /components/videoPlayer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/videoPlayer/index.jsx -------------------------------------------------------------------------------- /components/videoPlayer/videoComponent/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/videoPlayer/videoComponent/index.jsx -------------------------------------------------------------------------------- /components/videoPlayer/videoComponent/videoComponent.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/videoPlayer/videoComponent/videoComponent.module.css -------------------------------------------------------------------------------- /components/videoPlayer/videoPlayer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/components/videoPlayer/videoPlayer.module.css -------------------------------------------------------------------------------- /configs/cards.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/configs/cards.config.js -------------------------------------------------------------------------------- /configs/categories.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/configs/categories.config.js -------------------------------------------------------------------------------- /configs/instagramData.test.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/configs/instagramData.test.config.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/netlify.toml -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/package.json -------------------------------------------------------------------------------- /pages/Share/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/pages/Share/index.jsx -------------------------------------------------------------------------------- /pages/_app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/pages/_app.jsx -------------------------------------------------------------------------------- /pages/_document.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/pages/_document.jsx -------------------------------------------------------------------------------- /pages/api/instagram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/pages/api/instagram.js -------------------------------------------------------------------------------- /pages/api/youtube.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/google/YouTube/downloader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/pages/google/YouTube/downloader/index.jsx -------------------------------------------------------------------------------- /pages/google/[path].jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/pages/google/[path].jsx -------------------------------------------------------------------------------- /pages/google/drive-link-gen.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/pages/google/drive-link-gen.jsx -------------------------------------------------------------------------------- /pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/pages/index.jsx -------------------------------------------------------------------------------- /pages/instagram/[path].jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/pages/instagram/[path].jsx -------------------------------------------------------------------------------- /public/images/006bd8c9-3a18-dd17-4575-7c2a52480a98.webPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/public/images/006bd8c9-3a18-dd17-4575-7c2a52480a98.webPlatform.png -------------------------------------------------------------------------------- /public/images/01aaad95-96c6-beaa-6416-9a2237a736dd.webPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/public/images/01aaad95-96c6-beaa-6416-9a2237a736dd.webPlatform.png -------------------------------------------------------------------------------- /public/images/14fbfb3f-832a-915f-f7b2-37aa89a36518.webPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/public/images/14fbfb3f-832a-915f-f7b2-37aa89a36518.webPlatform.png -------------------------------------------------------------------------------- /public/images/27333677-42a7-9819-7c22-f3e5d8c5d8a8.webPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/public/images/27333677-42a7-9819-7c22-f3e5d8c5d8a8.webPlatform.png -------------------------------------------------------------------------------- /public/images/2c8c5d1f-446d-1041-fe00-c0b993d224bb.webPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/public/images/2c8c5d1f-446d-1041-fe00-c0b993d224bb.webPlatform.png -------------------------------------------------------------------------------- /public/images/4307672d-10bc-dcd6-de42-ca62409a458e.webPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/public/images/4307672d-10bc-dcd6-de42-ca62409a458e.webPlatform.png -------------------------------------------------------------------------------- /public/images/4b791c82-a374-1250-d09e-3586f5a0298c.webPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/public/images/4b791c82-a374-1250-d09e-3586f5a0298c.webPlatform.png -------------------------------------------------------------------------------- /public/images/64c70b39-ed95-cb0e-3313-7aeb8eff69a7.webPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/public/images/64c70b39-ed95-cb0e-3313-7aeb8eff69a7.webPlatform.png -------------------------------------------------------------------------------- /public/images/6a59e343-94f9-f883-c005-7eda77f725da.webPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/public/images/6a59e343-94f9-f883-c005-7eda77f725da.webPlatform.png -------------------------------------------------------------------------------- /public/images/8ce70cb4-bce0-5d13-c2a8-ab0b03b557d7.webPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/public/images/8ce70cb4-bce0-5d13-c2a8-ab0b03b557d7.webPlatform.png -------------------------------------------------------------------------------- /public/images/8d02342f-8b4c-5e7b-0b41-12e0cd32688c.webPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/public/images/8d02342f-8b4c-5e7b-0b41-12e0cd32688c.webPlatform.png -------------------------------------------------------------------------------- /public/images/95d7c2fc-de3a-a8b8-7b02-5e5c7e12b518.webPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/public/images/95d7c2fc-de3a-a8b8-7b02-5e5c7e12b518.webPlatform.png -------------------------------------------------------------------------------- /public/images/a9adb666-d106-b152-7e20-1fc5bd863806.webPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/public/images/a9adb666-d106-b152-7e20-1fc5bd863806.webPlatform.png -------------------------------------------------------------------------------- /public/images/c3290bc6-cc20-2ecc-8e98-a678907001b4.webPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/public/images/c3290bc6-cc20-2ecc-8e98-a678907001b4.webPlatform.png -------------------------------------------------------------------------------- /public/images/c9a3ec0e-7c64-541c-bbc0-261e901fc1e8.webPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/public/images/c9a3ec0e-7c64-541c-bbc0-261e901fc1e8.webPlatform.png -------------------------------------------------------------------------------- /public/images/d03b4654-de0f-89bb-1db8-6cff85fec44d.webPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/public/images/d03b4654-de0f-89bb-1db8-6cff85fec44d.webPlatform.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/public/manifest.json -------------------------------------------------------------------------------- /styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/styles/styles.css -------------------------------------------------------------------------------- /utils/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/utils/ga.js -------------------------------------------------------------------------------- /utils/instagram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/utils/instagram.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiyushSuthar/toolzar/HEAD/yarn.lock --------------------------------------------------------------------------------