From 75278ef730b6656b5a44f282e30c0c148178eab1 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Wed, 25 Feb 2026 16:45:19 -0800 Subject: [PATCH] feat: update hero title and move feature shortcuts to banner Update headline to "Capture Everything, Find Anything, and Share your Insights" with emphasis on Share. Move the three action buttons (Open Notebook, Unlock Article, Transcribe) from header into the hero banner, replacing the old Create Notebook / Quick Note buttons. Co-Authored-By: Claude Opus 4.6 --- src/app/page.tsx | 31 +++++++++++++++++++++++-------- src/components/Header.tsx | 35 ----------------------------------- 2 files changed, 23 insertions(+), 43 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b12ae6b..848d97a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,10 +34,10 @@ export default function HomePage() {

- Capture Everything + Capture Everything, Find Anything,
- Find Anything + and Share your Insights

Notes, clips, voice recordings, and live transcription — all in one place. @@ -45,16 +45,31 @@ export default function HomePage() {

- Create Notebook + + + + Open Notebook - Quick Note + + + + Unlock Article + + + + + + Transcribe
diff --git a/src/components/Header.tsx b/src/components/Header.tsx index bde49f5..9c05e6e 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -1,6 +1,5 @@ 'use client'; -import Link from 'next/link'; import { AppSwitcher } from './AppSwitcher'; import { SpaceSwitcher } from './SpaceSwitcher'; import { SearchBar } from './SearchBar'; @@ -56,40 +55,6 @@ export function Header({ current = 'notes', breadcrumbs, actions, maxWidth = 'ma - {/* Feature shortcuts */} -
- - - - - Open Notebook - - - - - - Unlock Article - - - - - - Transcribe - -
- {/* Right: Actions + UserMenu */}
{actions}