├── .gitignore ├── README.md ├── package.json ├── pages ├── _app.js ├── chats.js └── index.js ├── public ├── favicon.ico └── vercel.svg └── styles ├── auth.css ├── chats.css └── index.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/nextjs-chat-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/nextjs-chat-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/nextjs-chat-tutorial/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/nextjs-chat-tutorial/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/chats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/nextjs-chat-tutorial/HEAD/pages/chats.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/nextjs-chat-tutorial/HEAD/pages/index.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/nextjs-chat-tutorial/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/nextjs-chat-tutorial/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/auth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/nextjs-chat-tutorial/HEAD/styles/auth.css -------------------------------------------------------------------------------- /styles/chats.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/nextjs-chat-tutorial/HEAD/styles/chats.css -------------------------------------------------------------------------------- /styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/nextjs-chat-tutorial/HEAD/styles/index.css --------------------------------------------------------------------------------