feat: full calendar with Google Calendar + 7-day weather forecast

This commit is contained in:
Cosmo
2026-04-16 07:39:54 +00:00
parent 0039132aec
commit ae1b75f0fd
5 changed files with 466 additions and 129 deletions

View File

@@ -13,9 +13,11 @@ export default function DashboardPage() {
<p className="text-slate-400 text-sm">Добро пожаловать домой</p>
</div>
{/* Top row: weather, calendar, tasks */}
<div className="grid grid-cols-3 gap-4">
<WeatherWidget />
{/* Weather - full width */}
<WeatherWidget />
{/* Calendar + Tasks */}
<div className="grid grid-cols-1 lg:grid-cols-2 gap-4">
<CalendarWidget />
<TasksWidget />
</div>