Files

22 lines
727 B
TypeScript
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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>
);
}