├── .eslintrc.json ├── .gitignore ├── .replit ├── .upm └── store.json ├── README.md ├── package.json ├── pages ├── _app.jsx ├── api │ └── hello.js └── index.jsx ├── public ├── favicon.ico └── vercel.svg ├── replit_zip_error_log.txt ├── styles ├── Home.module.css └── globals.css ├── utils └── BuyMeACoffee.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyplatform/RTW3-Week2-BuyMeACoffee-Website/HEAD/.gitignore -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyplatform/RTW3-Week2-BuyMeACoffee-Website/HEAD/.replit -------------------------------------------------------------------------------- /.upm/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyplatform/RTW3-Week2-BuyMeACoffee-Website/HEAD/.upm/store.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyplatform/RTW3-Week2-BuyMeACoffee-Website/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyplatform/RTW3-Week2-BuyMeACoffee-Website/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyplatform/RTW3-Week2-BuyMeACoffee-Website/HEAD/pages/_app.jsx -------------------------------------------------------------------------------- /pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyplatform/RTW3-Week2-BuyMeACoffee-Website/HEAD/pages/api/hello.js -------------------------------------------------------------------------------- /pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyplatform/RTW3-Week2-BuyMeACoffee-Website/HEAD/pages/index.jsx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyplatform/RTW3-Week2-BuyMeACoffee-Website/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyplatform/RTW3-Week2-BuyMeACoffee-Website/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /replit_zip_error_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyplatform/RTW3-Week2-BuyMeACoffee-Website/HEAD/replit_zip_error_log.txt -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyplatform/RTW3-Week2-BuyMeACoffee-Website/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyplatform/RTW3-Week2-BuyMeACoffee-Website/HEAD/styles/globals.css -------------------------------------------------------------------------------- /utils/BuyMeACoffee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyplatform/RTW3-Week2-BuyMeACoffee-Website/HEAD/utils/BuyMeACoffee.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alchemyplatform/RTW3-Week2-BuyMeACoffee-Website/HEAD/yarn.lock --------------------------------------------------------------------------------