Phase 3-4: Goals AI planner, Team tasks, Push notifications, i18n (CZ/HE/RU/UA)

- Goals CRUD API + AI study plan generator + progress reports
- Goals frontend page with progress bars
- Team tasks: assign, transfer, collaborate endpoints
- Push notifications: web-push, VAPID, subscribe/send
- i18n: 4 languages (cs, he, ru, ua) translation files
- notifications.js + goals.js routes

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Claude CLI Agent
2026-03-29 13:12:19 +00:00
parent eac9e72404
commit fea4d38ce8
19 changed files with 1176 additions and 112 deletions

View File

@@ -4,6 +4,7 @@ import ThemeProvider from "@/components/ThemeProvider";
import AuthProvider from "@/components/AuthProvider";
import Header from "@/components/Header";
import BottomNav from "@/components/BottomNav";
import { I18nProvider } from "@/lib/i18n";
export const metadata: Metadata = {
title: "Task Team",
@@ -35,15 +36,17 @@ export default function RootLayout({
return (
<html lang="cs" suppressHydrationWarning>
<body className="antialiased min-h-screen">
<ThemeProvider>
<AuthProvider>
<Header />
<main className="w-full max-w-4xl mx-auto py-4 sm:px-4">
{children}
</main>
<BottomNav />
</AuthProvider>
</ThemeProvider>
<I18nProvider>
<ThemeProvider>
<AuthProvider>
<Header />
<main className="w-full max-w-4xl mx-auto py-4 sm:px-4">
{children}
</main>
<BottomNav />
</AuthProvider>
</ThemeProvider>
</I18nProvider>
</body>
</html>
);