├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── api │ └── status │ │ └── [id] │ │ └── route.js ├── components │ └── Pay.jsx ├── failure │ └── page.jsx ├── favicon.ico ├── globals.css ├── layout.js ├── page.js └── success │ └── page.jsx ├── jsconfig.json ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── next.svg └── vercel.svg └── tailwind.config.js /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechMalasi/updated-PhonePe-Integration-with-React-Next-JS/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechMalasi/updated-PhonePe-Integration-with-React-Next-JS/HEAD/README.md -------------------------------------------------------------------------------- /app/api/status/[id]/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechMalasi/updated-PhonePe-Integration-with-React-Next-JS/HEAD/app/api/status/[id]/route.js -------------------------------------------------------------------------------- /app/components/Pay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechMalasi/updated-PhonePe-Integration-with-React-Next-JS/HEAD/app/components/Pay.jsx -------------------------------------------------------------------------------- /app/failure/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechMalasi/updated-PhonePe-Integration-with-React-Next-JS/HEAD/app/failure/page.jsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechMalasi/updated-PhonePe-Integration-with-React-Next-JS/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechMalasi/updated-PhonePe-Integration-with-React-Next-JS/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechMalasi/updated-PhonePe-Integration-with-React-Next-JS/HEAD/app/layout.js -------------------------------------------------------------------------------- /app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechMalasi/updated-PhonePe-Integration-with-React-Next-JS/HEAD/app/page.js -------------------------------------------------------------------------------- /app/success/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechMalasi/updated-PhonePe-Integration-with-React-Next-JS/HEAD/app/success/page.jsx -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechMalasi/updated-PhonePe-Integration-with-React-Next-JS/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechMalasi/updated-PhonePe-Integration-with-React-Next-JS/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechMalasi/updated-PhonePe-Integration-with-React-Next-JS/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechMalasi/updated-PhonePe-Integration-with-React-Next-JS/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechMalasi/updated-PhonePe-Integration-with-React-Next-JS/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechMalasi/updated-PhonePe-Integration-with-React-Next-JS/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechMalasi/updated-PhonePe-Integration-with-React-Next-JS/HEAD/tailwind.config.js --------------------------------------------------------------------------------