├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── components.json ├── next.config.mjs ├── package.json ├── postcss.config.js ├── public ├── icons │ └── star-filled.svg ├── images │ └── unfollowers-finder-github.gif ├── next.svg └── vercel.svg ├── src ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── components │ ├── Cards │ │ └── UserCard.tsx │ ├── Footer │ │ └── Footer.tsx │ ├── Forms │ │ └── InputForm.tsx │ ├── Layout │ │ └── Layout.tsx │ ├── Loading │ │ └── Skeleton.tsx │ ├── Navbar │ │ └── Navbar.tsx │ └── ui │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── skeleton.tsx │ │ ├── theme-toggle.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ └── use-toast.ts ├── lib │ └── utils.ts └── providers │ └── ThemeProvider.tsx ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/components.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/icons/star-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/public/icons/star-filled.svg -------------------------------------------------------------------------------- /public/images/unfollowers-finder-github.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/public/images/unfollowers-finder-github.gif -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/Cards/UserCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/components/Cards/UserCard.tsx -------------------------------------------------------------------------------- /src/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /src/components/Forms/InputForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/components/Forms/InputForm.tsx -------------------------------------------------------------------------------- /src/components/Layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/components/Layout/Layout.tsx -------------------------------------------------------------------------------- /src/components/Loading/Skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/components/Loading/Skeleton.tsx -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/components/Navbar/Navbar.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/components/ui/theme-toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/providers/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/src/providers/ThemeProvider.tsx -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyHackingSpace/unfollows/HEAD/tsconfig.json --------------------------------------------------------------------------------