├── .eslintrc.json ├── .gitignore ├── README.md ├── next.config.js ├── package.json ├── postcss.config.js ├── src ├── components │ └── discordData.tsx ├── pages │ ├── _app.tsx │ ├── api │ │ └── auth │ │ │ └── [...nextauth].ts │ └── index.tsx ├── public │ ├── favicon.ico │ └── vercel.svg ├── styles │ └── globals.css └── types │ ├── next-auth.d.ts │ └── next.d.ts ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-sweenystudio/nextjs-nextauth-discord-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-sweenystudio/nextjs-nextauth-discord-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-sweenystudio/nextjs-nextauth-discord-tutorial/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-sweenystudio/nextjs-nextauth-discord-tutorial/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-sweenystudio/nextjs-nextauth-discord-tutorial/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/components/discordData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-sweenystudio/nextjs-nextauth-discord-tutorial/HEAD/src/components/discordData.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-sweenystudio/nextjs-nextauth-discord-tutorial/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/api/auth/[...nextauth].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-sweenystudio/nextjs-nextauth-discord-tutorial/HEAD/src/pages/api/auth/[...nextauth].ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-sweenystudio/nextjs-nextauth-discord-tutorial/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-sweenystudio/nextjs-nextauth-discord-tutorial/HEAD/src/public/favicon.ico -------------------------------------------------------------------------------- /src/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-sweenystudio/nextjs-nextauth-discord-tutorial/HEAD/src/public/vercel.svg -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-sweenystudio/nextjs-nextauth-discord-tutorial/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-sweenystudio/nextjs-nextauth-discord-tutorial/HEAD/src/types/next-auth.d.ts -------------------------------------------------------------------------------- /src/types/next.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-sweenystudio/nextjs-nextauth-discord-tutorial/HEAD/src/types/next.d.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-sweenystudio/nextjs-nextauth-discord-tutorial/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-sweenystudio/nextjs-nextauth-discord-tutorial/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-sweenystudio/nextjs-nextauth-discord-tutorial/HEAD/yarn.lock --------------------------------------------------------------------------------