git remote set-url origin https://github.com/〇〇git remote set-url --push origin https://github.com/〇〇一般社団法人TSUNAGUのwebサイト
| 言語・フレームワーク | バージョン |
|---|---|
| Node.js | 16.17.0 |
| React | 18.2.0 |
| Next.js | 13.4.6 |
├── app/
│ ├── api/
│ │ └── hello/
│ │ └── route.ts ←/api/helloのAPIを実装
│ ├── actions/
│ │ ├── aaa-action.ts ←サーバーアクションを実装
│ │ └── hello-action.ts ←APIを作らずにここで実装することも可能
│ ├── page1/
│ │ ├── [id]/
│ │ │ ├── page.module.css ←個別のCSSの実装
│ │ │ ├── actions.css ←個別でサーバーアクションの実装も可能
│ │ │ └── page.tsx ←/page1/1とかのページを実装
│ │ ├── page.module.css
│ │ └── page.tsx ←/page1のページを実装
│ ├── page.tsx ←/のページを実装
│ ├── loading.tsx ←ロード中ページを実装
│ ├── layout.tsx ←全体レイアウトを実装
│ └── globals.css ←全体のcssを実装