├── .eslintrc.json ├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── app ├── favicon.ico ├── globals.css ├── layout.tsx ├── page.tsx ├── privacy │ └── page.tsx └── terms │ └── page.tsx ├── bun.lockb ├── next.config.mjs ├── package.json ├── postcss.config.js ├── public ├── Basboi fan.png ├── Download (3).png ├── GI-e1fCboAAYKrk.jpeg ├── GI-e1h4bcAAScYi.jpeg ├── GI-e2G9awAA1Wjo.jpeg ├── Gunturr Prewed.jpeg ├── Lang Twitter Post.jpeg ├── Lang on X (1).jpeg ├── Lang on X (2).jpeg ├── Lang on X.jpeg ├── Lang tweet photo.jpeg ├── Lang.jpeg ├── Screenshot (1).png ├── Screenshot (11).png ├── Screenshot (14).png ├── Screenshot (15).png ├── Screenshot (16).png ├── Urayz tweet.jpeg ├── What the Frame (1).png ├── What the Frame (2).png ├── What the Frame.png ├── next.svg ├── shot.png └── vercel.svg ├── tailwind.config.ts ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: mgilangjanuar 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/README.md -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/app/privacy/page.tsx -------------------------------------------------------------------------------- /app/terms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/app/terms/page.tsx -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/bun.lockb -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/Basboi fan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/Basboi fan.png -------------------------------------------------------------------------------- /public/Download (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/Download (3).png -------------------------------------------------------------------------------- /public/GI-e1fCboAAYKrk.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/GI-e1fCboAAYKrk.jpeg -------------------------------------------------------------------------------- /public/GI-e1h4bcAAScYi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/GI-e1h4bcAAScYi.jpeg -------------------------------------------------------------------------------- /public/GI-e2G9awAA1Wjo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/GI-e2G9awAA1Wjo.jpeg -------------------------------------------------------------------------------- /public/Gunturr Prewed.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/Gunturr Prewed.jpeg -------------------------------------------------------------------------------- /public/Lang Twitter Post.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/Lang Twitter Post.jpeg -------------------------------------------------------------------------------- /public/Lang on X (1).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/Lang on X (1).jpeg -------------------------------------------------------------------------------- /public/Lang on X (2).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/Lang on X (2).jpeg -------------------------------------------------------------------------------- /public/Lang on X.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/Lang on X.jpeg -------------------------------------------------------------------------------- /public/Lang tweet photo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/Lang tweet photo.jpeg -------------------------------------------------------------------------------- /public/Lang.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/Lang.jpeg -------------------------------------------------------------------------------- /public/Screenshot (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/Screenshot (1).png -------------------------------------------------------------------------------- /public/Screenshot (11).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/Screenshot (11).png -------------------------------------------------------------------------------- /public/Screenshot (14).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/Screenshot (14).png -------------------------------------------------------------------------------- /public/Screenshot (15).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/Screenshot (15).png -------------------------------------------------------------------------------- /public/Screenshot (16).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/Screenshot (16).png -------------------------------------------------------------------------------- /public/Urayz tweet.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/Urayz tweet.jpeg -------------------------------------------------------------------------------- /public/What the Frame (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/What the Frame (1).png -------------------------------------------------------------------------------- /public/What the Frame (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/What the Frame (2).png -------------------------------------------------------------------------------- /public/What the Frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/What the Frame.png -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/shot.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgilangjanuar/what-the-frame/HEAD/yarn.lock --------------------------------------------------------------------------------