├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ └── codeql.yml ├── .gitignore ├── README.md ├── next.config.js ├── number-abbreviate.d.ts ├── package.json ├── postcss.config.js ├── prettier.config.js ├── public ├── bg.webp ├── social-card.png ├── spinner.svg └── user.jpg ├── src ├── app │ ├── api │ │ ├── gaza-status │ │ │ └── route.ts │ │ └── retrieve-profile-pic │ │ │ └── route.ts │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx └── types │ └── index.ts ├── tailwind.config.ts ├── tsconfig.json └── wrangler.jsonc /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/next.config.js -------------------------------------------------------------------------------- /number-abbreviate.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'number-abbreviate'; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/public/bg.webp -------------------------------------------------------------------------------- /public/social-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/public/social-card.png -------------------------------------------------------------------------------- /public/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/public/spinner.svg -------------------------------------------------------------------------------- /public/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/public/user.jpg -------------------------------------------------------------------------------- /src/app/api/gaza-status/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/src/app/api/gaza-status/route.ts -------------------------------------------------------------------------------- /src/app/api/retrieve-profile-pic/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/src/app/api/retrieve-profile-pic/route.ts -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wrangler.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForPalestine/profile-pic-maker/HEAD/wrangler.jsonc --------------------------------------------------------------------------------