commit 0beacbaf7c6c7f506af9d2825789cccd8b25d8b9
parent 76bb94b9ac6065c750f57c2a214d21d604fd2b5f
Author: massi <git@massi.world>
Date: Tue, 15 Apr 2025 19:16:34 -0700
update readme
Diffstat:
| M | README.md | | | 42 | ++++++++++-------------------------------- |
1 file changed, 10 insertions(+), 32 deletions(-)
diff --git a/README.md b/README.md
@@ -1,36 +1,14 @@
-This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
+A todo-list written with Next.js. I wrote this mostly to poke around with Next.js and see how it compares to create-react-app.
-## Getting Started
+Features:
-First, run the development server:
+- 100% Keyboard navigable. I used Google Tasks a lot before they updated the UI, and appreciated how simple and similar it was to typing in a text editor. The main focus on UX here was on never needing to leave your keyboard.
+- Named lists. You can rename the default list to move it to another url, or manually type a url to create a new list.
+- Mobile-friendly.
-```bash
-npm run dev
-# or
-yarn dev
-# or
-pnpm dev
-# or
-bun dev
-```
+Future improvements:
-Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
-
-You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
-
-This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
-
-## Learn More
-
-To learn more about Next.js, take a look at the following resources:
-
-- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
-- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
-
-You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
-
-## Deploy on Vercel
-
-The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
-
-Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
+- Undo/redo. It's a bummer deleting a task by accident and forgetting which one it was.
+- Navigation between task lists.
+- Import/export. Or syncing. That could be a good way to look into user-hosted syncing solutions.
+- UI to remove or hide completed tasks.