Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Restoration/5bafb13a15eacd3b05959be4ebd5d923 to your computer and use it in GitHub Desktop.

Select an option

Save Restoration/5bafb13a15eacd3b05959be4ebd5d923 to your computer and use it in GitHub Desktop.
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