diff --git a/app/page.tsx b/app/page.tsx index ee41930..c4b6b99 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -46,10 +46,31 @@ const upcomingEvents = [ { title: "Contract Renewal Check", date: "Mar 2026", type: "work" }, ]; +const MISSION_STATEMENT = "Build an iOS empire that generates the cashflow to retire on our own terms, travel the world with Heidi, honor every family milestone in style, and prove that 53 is just the launchpad to life's greatest chapter."; + export default function DashboardPage() { return (
+ {/* Mission Statement Banner */} + + +
+
+ +
+
+

+ The Mission +

+

+ {MISSION_STATEMENT} +

+
+
+
+
+ {/* Header */}

Dashboard

diff --git a/components/layout/sidebar.tsx b/components/layout/sidebar.tsx index f7327d3..e5c73c2 100644 --- a/components/layout/sidebar.tsx +++ b/components/layout/sidebar.tsx @@ -28,6 +28,8 @@ const navItems = [ { name: "Mission", href: "/mission", icon: Target }, ]; +const MISSION_SHORT = "Build an iOS empire → retire on our terms → travel with Heidi → 53 is just the start"; + function SidebarContent({ pathname }: { pathname: string }) { return (
@@ -38,6 +40,13 @@ function SidebarContent({ pathname }: { pathname: string }) { Mission Control
+ {/* Mission Statement */} +
+

+ {MISSION_SHORT} +

+
+