feat: Morning brief system with calendar & 6am cron
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import MorningBriefCalendar from "@/components/morning-brief/MorningBriefCalendar";
|
||||
import { MorningBriefProvider } from "@/lib/morning-brief/store";
|
||||
|
||||
export default function MorningBriefPage() {
|
||||
return (
|
||||
<MorningBriefProvider>
|
||||
<div className="min-h-screen bg-[#1a1625] text-white p-6">
|
||||
<div className="max-w-4xl mx-auto">
|
||||
<header className="mb-8">
|
||||
<h1 className="text-3xl font-bold">☀️ Morning Brief</h1>
|
||||
<p className="text-white/60 mt-2">
|
||||
Daily intelligence at 6am CET. Weather, AI news, tasks, and market.
|
||||
</p>
|
||||
</header>
|
||||
|
||||
<MorningBriefCalendar />
|
||||
</div>
|
||||
</div>
|
||||
</MorningBriefProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user