Created by Jordane Gengo
Toutdoux is a minimalist, design-focused todo app inspired by TeuxDeux. Built with Next.js 14, TypeScript, and Tailwind CSS.
- ๐ฏ Minimalist task management
- ๐ฑ Responsive design (mobile & desktop)
- ๐จ Clean, animation-rich UI
- ๐ Google authentication
- ๐ Flexible calendar view (1, 3, 5, or 7 days)
- ๐พ Persistent view preferences
- ๐ Dark mode support
- Framework: Next.js 14 (App Router)
- Language: TypeScript
- Styling: Tailwind CSS
- UI Components: shadcn/ui
- Authentication: NextAuth.js v5
- Database: MongoDB with Mongoose
- Animations: Framer Motion
- Icons: Lucide Icons
- Forms: React Hook Form
- Font: IBM Plex Sans
- Clone the repository:
git clone https://github.com/jgengo/tout_doux.git
cd tout_doux- Install dependencies:
npm install
# or
pnpm install
# or
yarn install- Create a
.env.localfile in the root directory with the following variables:
# MongoDB
MONGODB_URI=
# Resend
RESEND_KEY=
# NextAuth
AUTH_SECRET=
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=- Start the development server:
npm run dev
# or
pnpm dev
# or
yarn dev- Open 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.

