feat: zeropost-tool — Next.js 16 кабинет

- Auth: iron-session, регистрация/логин по email+password
- Дашборд со списком каналов
- 3-шаговая анкета создания канала (база/стиль/примеры+табу)
- Страница канала с генератором постов через polling
- Тёмная тема, Tailwind 3.4, accent emerald
- Прокси-API к zeropost-engine с x-user-id
- Совместимость с Next 16 async cookies/params
This commit is contained in:
Alexey Pavlov
2026-05-31 08:38:10 +03:00
parent 8e979c3045
commit 5dd975a9cd
26 changed files with 3334 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{
"name": "zeropost-tool",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev -p 3041",
"build": "next build",
"start": "next start -p 3041"
},
"dependencies": {
"next": "^16.2.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"lucide-react": "0.408.0",
"clsx": "2.1.1",
"iron-session": "8.0.3",
"pg": "^8.21.0",
"bcryptjs": "^3.0.3",
"tailwindcss": "3.4.7",
"autoprefixer": "10.4.19",
"postcss": "8.4.39"
}
}