feat: initial project setup with Next.js 16 and Tailwind CSS 4

- Initialize Next.js 16 with React 19 and TypeScript 5
- Configure Tailwind CSS 4 with PostCSS
- Set up static export for Docker deployment
- Install figlet.js for ASCII art rendering
- Add fuse.js for fuzzy search functionality
- Create project structure (app/, components/, lib/, types/)
- Add comprehensive README and IMPLEMENTATION_PLAN
- Configure ESLint and TypeScript
- Set up pnpm package management

Tech stack matches units-ui project for consistency.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-09 12:07:23 +01:00
commit f120a8b3d0
13 changed files with 4897 additions and 0 deletions

26
.dockerignore Normal file
View File

@@ -0,0 +1,26 @@
# dependencies
node_modules
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# build artifacts
.next
out
build
dist
# development
.git
.gitignore
.env*.local
# misc
README.md
.DS_Store
*.pem
# IDE
.vscode
.idea