A diary application with authentication, built with Next.js, TypeScript, and Tailwind CSS.
- Next.js 15.5 - React framework with App Router
- TypeScript - Type-safe development
- Tailwind CSS v4 - Utility-first CSS framework
- React 19 - Latest React version
First, run the development server:
npm run devOpen 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.
auth-diary/
├── app/
│ ├── layout.tsx # Root layout
│ ├── page.tsx # Homepage
│ ├── globals.css # Global styles with Tailwind
│ └── favicon.ico # Favicon
├── public/ # Static assets
├── next.config.ts # Next.js configuration
├── tsconfig.json # TypeScript configuration
├── postcss.config.mjs # PostCSS configuration
└── package.json # Dependencies and scripts
npm run dev- Start development server with Turbopacknpm run build- Build for productionnpm run start- Start production servernpm run lint- Run ESLint
To learn more about the technologies used:
This project is set up and ready for adding authentication features.