diff --git a/frontend/src/app/terminal/portfolio/page.tsx b/frontend/src/app/terminal/portfolio/page.tsx
index 39b6dbb..7c881f4 100644
--- a/frontend/src/app/terminal/portfolio/page.tsx
+++ b/frontend/src/app/terminal/portfolio/page.tsx
@@ -392,21 +392,47 @@ export default function PortfolioPage() {
Portfolio
- Track your domain investments, valuations, and ROI. Your personal domain asset manager.
+ Track your owned domains, valuations, and ROI. Switch back to your Watchlist anytime.
- {canUsePortfolio && (
- {
- setFormData({ domain: '', purchase_date: '', purchase_price: '', registrar: '', renewal_date: '', renewal_cost: '', notes: '', tags: '' })
- setShowAddModal(true)
- }}
- className="px-4 py-2 bg-blue-500 text-white font-medium rounded-lg hover:bg-blue-400 transition-all shadow-lg shadow-blue-500/20 flex items-center gap-2"
- >
- Add Domain
-
- )}
+
+ {/* View Tabs: Watching vs My Portfolio */}
+
+
+
+ Watching
+
+
+
+ My Portfolio
+
+
+
+ {canUsePortfolio && (
+
{
+ setFormData({ domain: '', purchase_date: '', purchase_price: '', registrar: '', renewal_date: '', renewal_cost: '', notes: '', tags: '' })
+ setShowAddModal(true)
+ }}
+ className="px-4 py-2 bg-blue-500 text-white font-medium rounded-lg hover:bg-blue-400 transition-all shadow-lg shadow-blue-500/20 flex items-center gap-2"
+ >
+ Add Domain
+
+ )}
+
{/* Messages */}
diff --git a/frontend/src/app/terminal/watchlist/page.tsx b/frontend/src/app/terminal/watchlist/page.tsx
index 511a03e..c613afa 100755
--- a/frontend/src/app/terminal/watchlist/page.tsx
+++ b/frontend/src/app/terminal/watchlist/page.tsx
@@ -376,21 +376,48 @@ export default function WatchlistPage() {
Watchlist
- Monitor availability, health, and expiration dates for your tracked domains.
+ Monitor external domains you care about and manage your own portfolio in one place.
- {/* Quick Stats Pills */}
-
- {stats.available > 0 && (
-
-
- {stats.available} Available!
+ {/* Tabs + Quick Stats */}
+
+ {/* View Tabs: Watching vs My Portfolio */}
+
+
+
+ Watching
+
+
+
+ My Portfolio
+
- )}
-
-
- Auto-Monitoring
+
+ {/* Quick Stats Pills */}
+
+ {stats.available > 0 && (
+
+
+ {stats.available} Available!
+
+ )}
+
diff --git a/frontend/src/components/Sidebar.tsx b/frontend/src/components/Sidebar.tsx
index 2df82f4..497ec18 100755
--- a/frontend/src/components/Sidebar.tsx
+++ b/frontend/src/components/Sidebar.tsx
@@ -106,12 +106,6 @@ export function Sidebar({ collapsed: controlledCollapsed, onCollapsedChange }: S
icon: Eye,
badge: availableCount || null,
},
- {
- href: '/terminal/portfolio',
- label: 'PORTFOLIO',
- icon: Briefcase,
- badge: null,
- },
{
href: '/terminal/listing',
label: 'FOR SALE',