├── .eslintrc.json ├── .gitignore ├── README.md ├── components.json ├── next.config.js ├── package.json ├── postcss.config.js ├── public └── typingGif.gif ├── src ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── components │ ├── InputForm.tsx │ ├── ShowCard.tsx │ └── ui │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── form.tsx │ │ ├── input.tsx │ │ └── label.tsx └── lib │ ├── GetContributions.ts │ ├── UsernameValidator.tsx │ └── utils.ts ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/components.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/typingGif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/public/typingGif.gif -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/InputForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/src/components/InputForm.tsx -------------------------------------------------------------------------------- /src/components/ShowCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/src/components/ShowCard.tsx -------------------------------------------------------------------------------- /src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/lib/GetContributions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/src/lib/GetContributions.ts -------------------------------------------------------------------------------- /src/lib/UsernameValidator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/src/lib/UsernameValidator.tsx -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taqui-786/GitEstimate/HEAD/tsconfig.json --------------------------------------------------------------------------------