kei615ykhm / logic-loom-nextjs14

LogicLoom is a memo app for engineers created as personal developers. There are no release plans. We will proceed with development while learning practical usage of Next.js, TypeScript, TailwindCSS, Vercel, and Supabase.
0 stars 0 forks source link

update: ダッシュボード機能へのアップデート #12

Open kei615ykhm opened 2 weeks ago

kei615ykhm commented 2 weeks ago

説明

このIssueでは、#9 にて作成した最小限構成アプリをParallel Routes機能を使用したダッシュボード形式にアップデートします。

ディレクトリ構成

src/
├── app/
│   ├── dashboard/ # 新規作成(ダッシュボード実装用)
│   │   ├── @list/
│   │   │   └── page.tsx
│   │   ├── @form/
│   │   │   └── page.tsx
│   │   └── layout.tsx
│   ├── page.tsx
│   └── layout.tsx
├── components/
│   └── memos/
│      ├── MemoList.tsx
│      └── MemoForm.tsx
├── hooks/
│   └── useMemos.ts
└── types/
    └── index.ts

タスク

1. プロジェクト構造の更新

2. ダッシュボードレイアウトの実装

3. メモリスト機能のアップデート

4. メモ作成機能のアップデート

受け入れ基準

技術的な注意点

関連リソース