diff --git a/app/components/landing/Roadmap.tsx b/app/components/landing/Roadmap.tsx
new file mode 100644
index 0000000..9021704
--- /dev/null
+++ b/app/components/landing/Roadmap.tsx
@@ -0,0 +1,100 @@
+// Roadmap — compact 4-item visual strip, consistent with zinc/Space Grotesk design system
+
+const roadmapItems = [
+ {
+ label: 'Save links & notes',
+ description: 'Bookmark any URL or write plain-text notes. Both are indexed and AI-searchable.',
+ status: 'live' as const,
+ },
+ {
+ label: 'Ask DumpIt (AI / RAG)',
+ description: 'Semantic search and answer generation across your entire saved knowledge base.',
+ status: 'live' as const,
+ },
+ {
+ label: 'PDF upload',
+ description: 'Upload documents and make their full text AI-searchable alongside your links.',
+ status: 'building' as const,
+ },
+ {
+ label: 'Browser extension',
+ description: 'Clip pages and highlights directly from Chrome without switching tabs.',
+ status: 'next' as const,
+ },
+]
+
+const statusConfig = {
+ live: {
+ label: 'Live',
+ dot: 'bg-emerald-500',
+ pill: 'bg-emerald-100 text-emerald-700 dark:bg-emerald-950/60 dark:text-emerald-400',
+ },
+ building: {
+ label: 'Building now',
+ dot: 'bg-blue-500 animate-pulse',
+ pill: 'bg-blue-100 text-blue-700 dark:bg-blue-950/60 dark:text-blue-400',
+ },
+ next: {
+ label: 'Next',
+ dot: 'bg-violet-400',
+ pill: 'bg-violet-100 text-violet-700 dark:bg-violet-950/60 dark:text-violet-400',
+ },
+ planned: {
+ label: 'Planned',
+ dot: 'bg-slate-300 dark:bg-slate-600',
+ pill: 'bg-slate-100 text-slate-500 dark:bg-slate-800 dark:text-slate-400',
+ },
+}
+
+const Roadmap = () => {
+ return (
+
+
+ {/* Header */}
+
+
+ Roadmap
+
+ What's live, what's next.
+
+
+
+ Building in public. This is the honest current state of the product.
+
+
+
+ {/* Item grid */}
+
+ {roadmapItems.map((item, index) => {
+ const cfg = statusConfig[item.status]
+ return (
+
+ {/* Step number */}
+
+
+ {String(index + 1).padStart(2, '0')}
+
+ {/* Status pill */}
+
+
+ {cfg.label}
+
+
+
+
+
{item.label}
+
{item.description}
+
+
+ )
+ })}
+
+
+
+ )
+}
+
+export default Roadmap
diff --git a/app/components/landing/Vision.tsx b/app/components/landing/Vision.tsx
index 994e60e..ad1af64 100644
--- a/app/components/landing/Vision.tsx
+++ b/app/components/landing/Vision.tsx
@@ -1,44 +1,38 @@
-// Social Proof Bar — replaces old Vision section
-const avatars = [
- { initials: 'RK', color: 'bg-blue-500' },
- { initials: 'AS', color: 'bg-violet-500' },
- { initials: 'MJ', color: 'bg-emerald-500' },
- { initials: 'PT', color: 'bg-amber-500' },
- { initials: 'DN', color: 'bg-rose-500' },
-]
+// FounderNote — replaces old Social Proof / Vision section
+// Honest "why I'm building this" note. No fabricated stats or avatars.
-const SocialProof = () => {
+const FounderNote = () => {
return (
-
-
- {/* Avatar stack + user count */}
-
-
- {avatars.map((a) => (
-
- {a.initials}
-
- ))}
+
+
+
+ {/* Author row */}
+
+
+ R
+
+
+
Rayan
+
Building DumpIt
+
-
- 200+ developers and knowledge workers already saving smarter
-
-
- {/* Founding offer pill */}
-
-
- First 500 founding members get 50% off Pro — forever
-
+ {/* Founder note body — REPLACE THE PLACEHOLDER BELOW WITH YOUR ACTUAL TEXT */}
+
+
+ I'm building DumpIt because I kept losing things I'd already learned — a link I read last month, a note I wrote last week, a PDF I forgot I even saved. Most tools just dump your stuff in a folder and leave you to search for it later.
+
+
+ What I actually want is a second brain — for me and my team — that doesn't just store things but understands them. Something where you can save anything digital, ask questions across all of it, share what's useful, and keep the rest private. And eventually, not just a place to retrieve knowledge but a system that can act on it.
+
+
+ It's early. Links and notes work today, more is coming. If this sounds like something you've been looking for, I'd love to build it with your feedback.
+
+
+
)
}
-export default SocialProof
+export default FounderNote
diff --git a/app/page.tsx b/app/page.tsx
index 0c76021..8f8081e 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -2,10 +2,11 @@
import Navbar from './components/landing/Navbar'
import Hero from './components/landing/Hero'
-import Vision from './components/landing/Vision' // Social Proof Bar
+import FounderNote from './components/landing/Vision' // Founder note (replaces Social Proof)
+import Roadmap from './components/landing/Roadmap'
import HowItWorks from './components/landing/HowItWorks'
import Platform from './components/landing/Platform'
-import Features from './components/landing/Features' // Content Types
+import Features from './components/landing/Features' // Content Types
import ApiSection from './components/landing/ApiSection'
import Pricing from './components/landing/Pricing'
import FAQ from './components/landing/FAQ'
@@ -17,12 +18,13 @@ export default function Home() {
-
{/* Social Proof Bar */}
-
{/* 4-step process */}
-
{/* Web / Extension / API / MCP */}
-
{/* Content Types: links, notes, PDFs, etc. */}
-
{/* API & MCP code block */}
-
{/* Founding CTA + 3 tiers */}
+
{/* Founder note — replaces fake social proof */}
+
{/* Compact roadmap: Live / Building now / Next */}
+
{/* 4-step process */}
+
{/* Web / Extension / API / MCP */}
+
{/* Content Types: links, notes, PDFs, etc. */}
+
{/* API & MCP code block */}
+
{/* Founding CTA + 3 tiers */}
{/* 6 FAQ accordion */}
{/* Stop losing what you learn */}