├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ ├── create-infra.yml.disabled │ └── linkchecker.yml ├── .gitignore ├── .lycheeignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── authentication │ ├── authentication-client.tsx │ └── page.tsx ├── global.css ├── history │ ├── history-client.tsx │ └── page.tsx ├── layout.tsx ├── page.tsx ├── presence │ ├── page.tsx │ └── presence-client.tsx ├── pub-sub │ ├── page.tsx │ └── pubsub-client.tsx ├── publish │ └── route.ts └── token │ └── route.ts ├── components ├── FooterItem.tsx ├── MenuItem.tsx ├── SampleHeader.tsx ├── Sidebar.tsx ├── SocialItem.tsx └── logger.tsx ├── media └── ably-nextjs.png ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── ably-logo-col-horiz-rgb.png ├── ably-logo-col-horiz-rgb.svg ├── ably-logo-col-inv-horiz-rgb.svg ├── ably-motif-col-rgb.svg ├── assets │ ├── AblyLogo.svg │ ├── AblyLogoWithText.svg │ ├── Alert.svg │ ├── ArrowRight.svg │ ├── Authentication.svg │ ├── DiscordLogo.svg │ ├── ExploreNow.svg │ ├── GithubLogo.svg │ ├── GreenButton.svg │ ├── History.svg │ ├── HorizontalRule.svg │ ├── LinkedInLogo.svg │ ├── NextjsLogo.svg │ ├── PlusSign.svg │ ├── Presence.svg │ ├── PubSubChannels.svg │ ├── RedButton.svg │ ├── XTwitterLogo.svg │ ├── YellowButton.svg │ ├── icon-social-discord-col.svg │ ├── icon-social-github-col.svg │ ├── icon-social-linkedin-col.svg │ └── icon-social-x-col.svg └── vercel.svg ├── random-names-generator.d.ts ├── tailwind.config.js ├── tsconfig.json └── vercel.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/create-infra.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/.github/workflows/create-infra.yml.disabled -------------------------------------------------------------------------------- /.github/workflows/linkchecker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/.github/workflows/linkchecker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.lycheeignore: -------------------------------------------------------------------------------- 1 | https://github.com/ably-labs/static-assets -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/README.md -------------------------------------------------------------------------------- /app/authentication/authentication-client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/app/authentication/authentication-client.tsx -------------------------------------------------------------------------------- /app/authentication/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/app/authentication/page.tsx -------------------------------------------------------------------------------- /app/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/app/global.css -------------------------------------------------------------------------------- /app/history/history-client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/app/history/history-client.tsx -------------------------------------------------------------------------------- /app/history/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/app/history/page.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/presence/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/app/presence/page.tsx -------------------------------------------------------------------------------- /app/presence/presence-client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/app/presence/presence-client.tsx -------------------------------------------------------------------------------- /app/pub-sub/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/app/pub-sub/page.tsx -------------------------------------------------------------------------------- /app/pub-sub/pubsub-client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/app/pub-sub/pubsub-client.tsx -------------------------------------------------------------------------------- /app/publish/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/app/publish/route.ts -------------------------------------------------------------------------------- /app/token/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/app/token/route.ts -------------------------------------------------------------------------------- /components/FooterItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/components/FooterItem.tsx -------------------------------------------------------------------------------- /components/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/components/MenuItem.tsx -------------------------------------------------------------------------------- /components/SampleHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/components/SampleHeader.tsx -------------------------------------------------------------------------------- /components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/components/Sidebar.tsx -------------------------------------------------------------------------------- /components/SocialItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/components/SocialItem.tsx -------------------------------------------------------------------------------- /components/logger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/components/logger.tsx -------------------------------------------------------------------------------- /media/ably-nextjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/media/ably-nextjs.png -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/ably-logo-col-horiz-rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/ably-logo-col-horiz-rgb.png -------------------------------------------------------------------------------- /public/ably-logo-col-horiz-rgb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/ably-logo-col-horiz-rgb.svg -------------------------------------------------------------------------------- /public/ably-logo-col-inv-horiz-rgb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/ably-logo-col-inv-horiz-rgb.svg -------------------------------------------------------------------------------- /public/ably-motif-col-rgb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/ably-motif-col-rgb.svg -------------------------------------------------------------------------------- /public/assets/AblyLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/AblyLogo.svg -------------------------------------------------------------------------------- /public/assets/AblyLogoWithText.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/AblyLogoWithText.svg -------------------------------------------------------------------------------- /public/assets/Alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/Alert.svg -------------------------------------------------------------------------------- /public/assets/ArrowRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/ArrowRight.svg -------------------------------------------------------------------------------- /public/assets/Authentication.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/Authentication.svg -------------------------------------------------------------------------------- /public/assets/DiscordLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/DiscordLogo.svg -------------------------------------------------------------------------------- /public/assets/ExploreNow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/ExploreNow.svg -------------------------------------------------------------------------------- /public/assets/GithubLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/GithubLogo.svg -------------------------------------------------------------------------------- /public/assets/GreenButton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/GreenButton.svg -------------------------------------------------------------------------------- /public/assets/History.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/History.svg -------------------------------------------------------------------------------- /public/assets/HorizontalRule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/HorizontalRule.svg -------------------------------------------------------------------------------- /public/assets/LinkedInLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/LinkedInLogo.svg -------------------------------------------------------------------------------- /public/assets/NextjsLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/NextjsLogo.svg -------------------------------------------------------------------------------- /public/assets/PlusSign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/PlusSign.svg -------------------------------------------------------------------------------- /public/assets/Presence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/Presence.svg -------------------------------------------------------------------------------- /public/assets/PubSubChannels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/PubSubChannels.svg -------------------------------------------------------------------------------- /public/assets/RedButton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/RedButton.svg -------------------------------------------------------------------------------- /public/assets/XTwitterLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/XTwitterLogo.svg -------------------------------------------------------------------------------- /public/assets/YellowButton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/YellowButton.svg -------------------------------------------------------------------------------- /public/assets/icon-social-discord-col.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/icon-social-discord-col.svg -------------------------------------------------------------------------------- /public/assets/icon-social-github-col.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/icon-social-github-col.svg -------------------------------------------------------------------------------- /public/assets/icon-social-linkedin-col.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/icon-social-linkedin-col.svg -------------------------------------------------------------------------------- /public/assets/icon-social-x-col.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/assets/icon-social-x-col.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /random-names-generator.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'random-names-generator'; -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ably-labs/ably-nextjs-fundamentals-kit/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "framework": "nextjs" 3 | } --------------------------------------------------------------------------------