├── .eslintrc.json ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ └── bug_report.yml ├── PULL_REQUEST_TEMPLATE.md └── dependabot.yml ├── .gitignore ├── README.md ├── app ├── api │ └── meme │ │ └── route.ts ├── layout.tsx ├── memer │ └── page.tsx └── page.tsx ├── components.json ├── components ├── meme.tsx ├── tailwind-indicator.tsx ├── theme-provider.tsx ├── theme-toggle.tsx └── ui │ ├── annu.tsx │ ├── button.tsx │ ├── card.tsx │ ├── dialog.tsx │ ├── drawer.tsx │ ├── input.tsx │ └── select.tsx ├── hooks └── use-media-query.ts ├── image.png ├── lib ├── constants │ └── MemeOptions.ts ├── meme.ts └── utils.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── prvs.txt ├── public ├── apple-touch-icon.png ├── favicon-96x96.png ├── favicon.ico ├── favicon.svg ├── fonts │ └── playwrite.ttf ├── site.webmanifest ├── web-app-manifest-192x192.png └── web-app-manifest-512x512.png ├── styles └── globals.css └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @avalynndev -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/README.md -------------------------------------------------------------------------------- /app/api/meme/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/app/api/meme/route.ts -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/memer/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/app/memer/page.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/components.json -------------------------------------------------------------------------------- /components/meme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/components/meme.tsx -------------------------------------------------------------------------------- /components/tailwind-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/components/tailwind-indicator.tsx -------------------------------------------------------------------------------- /components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/components/theme-provider.tsx -------------------------------------------------------------------------------- /components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/components/theme-toggle.tsx -------------------------------------------------------------------------------- /components/ui/annu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/components/ui/annu.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/components/ui/drawer.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /hooks/use-media-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/hooks/use-media-query.ts -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/image.png -------------------------------------------------------------------------------- /lib/constants/MemeOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/lib/constants/MemeOptions.ts -------------------------------------------------------------------------------- /lib/meme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/lib/meme.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prvs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/prvs.txt -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/public/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/fonts/playwrite.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/public/fonts/playwrite.ttf -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/public/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /public/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/public/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalynndev/memergez/HEAD/tsconfig.json --------------------------------------------------------------------------------