├── .eslintrc.json ├── .gitignore ├── .idea ├── .gitignore ├── inspectionProfiles │ └── Project_Default.xml ├── modules.xml ├── stickerimage.iml └── vcs.xml ├── README.md ├── app ├── [id] │ ├── og │ │ └── [image] │ │ │ ├── assets │ │ │ └── Inter-SemiBold.ttf │ │ │ └── route.tsx │ └── page.tsx ├── favicon.ico ├── globals.css ├── imprint │ └── page.tsx ├── latest │ └── page.tsx ├── layout.tsx ├── not-found.tsx └── page.tsx ├── components ├── Banner.tsx ├── Buttons.tsx ├── Confetti.tsx ├── Dialog.tsx ├── Icons.tsx ├── NewsletterDialog.tsx ├── Notification.tsx ├── SideInfo.tsx └── StickerPlacer.tsx ├── illustrations ├── Laptop.tsx └── Pattern.tsx ├── lib └── database.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── animations.riv ├── images │ ├── default-memoji.png │ ├── how-to-screenshot.jpg │ ├── laptop │ │ └── laptop.png │ ├── stickerimage-favicon.png │ ├── stickerimage-latest.jpg │ └── stickerimage-og.jpg └── sticker.json ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/stickerimage.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/.idea/stickerimage.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/README.md -------------------------------------------------------------------------------- /app/[id]/og/[image]/assets/Inter-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/app/[id]/og/[image]/assets/Inter-SemiBold.ttf -------------------------------------------------------------------------------- /app/[id]/og/[image]/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/app/[id]/og/[image]/route.tsx -------------------------------------------------------------------------------- /app/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/app/[id]/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/imprint/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/app/imprint/page.tsx -------------------------------------------------------------------------------- /app/latest/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/app/latest/page.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/app/not-found.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/components/Banner.tsx -------------------------------------------------------------------------------- /components/Buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/components/Buttons.tsx -------------------------------------------------------------------------------- /components/Confetti.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/components/Confetti.tsx -------------------------------------------------------------------------------- /components/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/components/Dialog.tsx -------------------------------------------------------------------------------- /components/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/components/Icons.tsx -------------------------------------------------------------------------------- /components/NewsletterDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/components/NewsletterDialog.tsx -------------------------------------------------------------------------------- /components/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/components/Notification.tsx -------------------------------------------------------------------------------- /components/SideInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/components/SideInfo.tsx -------------------------------------------------------------------------------- /components/StickerPlacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/components/StickerPlacer.tsx -------------------------------------------------------------------------------- /illustrations/Laptop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/illustrations/Laptop.tsx -------------------------------------------------------------------------------- /illustrations/Pattern.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/illustrations/Pattern.tsx -------------------------------------------------------------------------------- /lib/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/lib/database.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/animations.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/public/animations.riv -------------------------------------------------------------------------------- /public/images/default-memoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/public/images/default-memoji.png -------------------------------------------------------------------------------- /public/images/how-to-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/public/images/how-to-screenshot.jpg -------------------------------------------------------------------------------- /public/images/laptop/laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/public/images/laptop/laptop.png -------------------------------------------------------------------------------- /public/images/stickerimage-favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/public/images/stickerimage-favicon.png -------------------------------------------------------------------------------- /public/images/stickerimage-latest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/public/images/stickerimage-latest.jpg -------------------------------------------------------------------------------- /public/images/stickerimage-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/public/images/stickerimage-og.jpg -------------------------------------------------------------------------------- /public/sticker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/public/sticker.json -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flornkm/stickerimage/HEAD/tsconfig.json --------------------------------------------------------------------------------