Project Tree

This page shows the current repository tree for Next.js Professional Starter.

It is intended as a compact structural reference for documentation, onboarding, and repository inspection.


Repository Tree

nextjs-professional-starter/
├─ .editorconfig
├─ .gitattributes
├─ .github
│  └─ workflows
│     ├─ ci.yml
│     └─ sync-starter-docs-to-landing.yml
├─ .gitignore
├─ .husky
│  ├─ commit-msg
│  └─ pre-commit
├─ .npmrc
├─ .prettierignore
├─ .prettierrc.js
├─ .vscode
│  ├─ extensions.json
│  └─ settings.json
├─ CHANGELOG.md
├─ commitlint.config.cjs
├─ docs
│  ├─ nav.ts
│  └─ site
│     ├─ ci-pipeline.md
│     ├─ commands.md
│     ├─ development-setup.md
│     ├─ project-structure.md
│     ├─ project-tree.md
│     ├─ quick-start.md
│     ├─ tooling.md
│     └─ troubleshooting.md
├─ eslint.config.mjs
├─ LICENSE
├─ next-env.d.ts
├─ next.config.ts
├─ package.json
├─ pnpm-lock.yaml
├─ pnpm-workspace.yaml
├─ README.md
├─ scripts
│  ├─ make-tree.mjs
│  └─ sync
│     └─ sync-starter-docs-to-landing.mjs
├─ src
│  ├─ app
│  │  ├─ favicon.ico
│  │  ├─ globals.css
│  │  ├─ layout.tsx
│  │  ├─ page.module.css
│  │  └─ page.tsx
│  ├─ components
│  │  └─ .gitkeep
│  └─ lib
│     └─ .gitkeep
├─ tsconfig.json
└─ VERSION