From 15735e8274a0868bd436b41e98dddcaeec84f6f9 Mon Sep 17 00:00:00 2001 From: OpenClaw Bot Date: Fri, 20 Feb 2026 18:32:16 -0600 Subject: [PATCH] Add mission statement banner to dashboard and sidebar --- app/page.tsx | 21 +++++++ components/layout/sidebar.tsx | 9 +++ dist/404.html | 2 +- dist/__next.__PAGE__.txt | 33 +++++------ dist/__next._full.txt | 55 ++++++++++--------- dist/__next._head.txt | 2 +- dist/__next._index.txt | 4 +- dist/__next._tree.txt | 4 +- .../_buildManifest.js | 0 .../_clientMiddlewareManifest.json | 0 .../_ssgManifest.js | 0 dist/_next/static/chunks/1809eccc07e0ee86.css | 3 + ...1b41192b4a98cf1.js => 5e38d7d587a86e9d.js} | 4 +- dist/_next/static/chunks/fa936e037dd092b4.css | 3 - dist/_not-found.html | 2 +- dist/_not-found.txt | 4 +- dist/_not-found/__next._full.txt | 4 +- dist/_not-found/__next._head.txt | 2 +- dist/_not-found/__next._index.txt | 4 +- .../_not-found/__next._not-found.__PAGE__.txt | 2 +- dist/_not-found/__next._not-found.txt | 2 +- dist/_not-found/__next._tree.txt | 4 +- dist/activity.html | 2 +- dist/activity.txt | 10 ++-- dist/activity/__next._full.txt | 10 ++-- dist/activity/__next._head.txt | 2 +- dist/activity/__next._index.txt | 4 +- dist/activity/__next._tree.txt | 4 +- dist/activity/__next.activity.__PAGE__.txt | 8 +-- dist/activity/__next.activity.txt | 2 +- dist/calendar.html | 2 +- dist/calendar.txt | 8 +-- dist/calendar/__next._full.txt | 8 +-- dist/calendar/__next._head.txt | 2 +- dist/calendar/__next._index.txt | 4 +- dist/calendar/__next._tree.txt | 4 +- dist/calendar/__next.calendar.__PAGE__.txt | 6 +- dist/calendar/__next.calendar.txt | 2 +- dist/documents.html | 2 +- dist/documents.txt | 8 +-- dist/documents/__next._full.txt | 8 +-- dist/documents/__next._head.txt | 2 +- dist/documents/__next._index.txt | 4 +- dist/documents/__next._tree.txt | 4 +- dist/documents/__next.documents.__PAGE__.txt | 6 +- dist/documents/__next.documents.txt | 2 +- dist/index.html | 2 +- dist/index.txt | 55 ++++++++++--------- dist/mission.html | 2 +- dist/mission.txt | 8 +-- dist/mission/__next._full.txt | 8 +-- dist/mission/__next._head.txt | 2 +- dist/mission/__next._index.txt | 4 +- dist/mission/__next._tree.txt | 4 +- dist/mission/__next.mission.__PAGE__.txt | 6 +- dist/mission/__next.mission.txt | 2 +- dist/tasks.html | 2 +- dist/tasks.txt | 8 +-- dist/tasks/__next._full.txt | 8 +-- dist/tasks/__next._head.txt | 2 +- dist/tasks/__next._index.txt | 4 +- dist/tasks/__next._tree.txt | 4 +- dist/tasks/__next.tasks.__PAGE__.txt | 6 +- dist/tasks/__next.tasks.txt | 2 +- dist/tools.html | 2 +- dist/tools.txt | 18 +++--- dist/tools/__next._full.txt | 18 +++--- dist/tools/__next._head.txt | 2 +- dist/tools/__next._index.txt | 4 +- dist/tools/__next._tree.txt | 4 +- dist/tools/__next.tools.__PAGE__.txt | 16 +++--- dist/tools/__next.tools.txt | 2 +- 72 files changed, 253 insertions(+), 220 deletions(-) rename dist/_next/static/{BaNBduHEWTzurUV8mpacN => EGp_7KoqQY85q_AoGxmDe}/_buildManifest.js (100%) rename dist/_next/static/{BaNBduHEWTzurUV8mpacN => EGp_7KoqQY85q_AoGxmDe}/_clientMiddlewareManifest.json (100%) rename dist/_next/static/{BaNBduHEWTzurUV8mpacN => EGp_7KoqQY85q_AoGxmDe}/_ssgManifest.js (100%) create mode 100644 dist/_next/static/chunks/1809eccc07e0ee86.css rename dist/_next/static/chunks/{91b41192b4a98cf1.js => 5e38d7d587a86e9d.js} (95%) delete mode 100644 dist/_next/static/chunks/fa936e037dd092b4.css 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} +

+
+