Created
July 18, 2025 06:37
-
-
Save Restoration/5bafb13a15eacd3b05959be4ebd5d923 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| my-next-app/ | |
| ├── public/ | |
| │ └── favicon.ico | |
| ├── src/ | |
| │ ├── app/ | |
| │ │ ├── layout.tsx # 共通レイアウト(ルート) | |
| │ │ ├── page.tsx # トップページ | |
| │ │ ├── about/ | |
| │ │ │ └── page.tsx # /about ページ | |
| │ │ └── api/ | |
| │ │ └── hello/ | |
| │ │ └── route.ts # APIエンドポイント (/api/hello) | |
| │ ├── components/ | |
| │ │ ├── Header.tsx | |
| │ │ └── Footer.tsx | |
| │ ├── styles/ | |
| │ │ └── globals.css | |
| │ ├── lib/ | |
| │ │ └── utils.ts # 共通関数 | |
| │ ├── hooks/ | |
| │ │ └── useExample.ts | |
| │ ├── context/ | |
| │ │ └── ThemeContext.tsx | |
| │ ├── constants/ | |
| │ │ └── index.ts | |
| │ └── types/ | |
| │ └── index.ts | |
| ├── .env.local # 環境変数 | |
| ├── next.config.js | |
| ├── package.json | |
| ├── tsconfig.json | |
| └── README.md |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment