22 lines
727 B
TypeScript
22 lines
727 B
TypeScript
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>
|
||
);
|
||
}
|