├── .devcontainer └── devcontainer.json ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── branch-1.gif ├── branch.gif ├── codespaces-1.png ├── codespaces.png └── favicon.ico /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-nextjs--codespaces--5914444/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-nextjs--codespaces--5914444/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-nextjs--codespaces--5914444/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-nextjs--codespaces--5914444/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-nextjs--codespaces--5914444/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .tmp 4 | npm-debug.log 5 | .env 6 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-nextjs--codespaces--5914444/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-nextjs--codespaces--5914444/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-nextjs--codespaces--5914444/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-nextjs--codespaces--5914444/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-nextjs--codespaces--5914444/HEAD/README.md -------------------------------------------------------------------------------- /branch-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-nextjs--codespaces--5914444/HEAD/branch-1.gif -------------------------------------------------------------------------------- /branch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-nextjs--codespaces--5914444/HEAD/branch.gif -------------------------------------------------------------------------------- /codespaces-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-nextjs--codespaces--5914444/HEAD/codespaces-1.png -------------------------------------------------------------------------------- /codespaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-nextjs--codespaces--5914444/HEAD/codespaces.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/learning-nextjs--codespaces--5914444/HEAD/favicon.ico --------------------------------------------------------------------------------