From 24bbcaecd6f8449f23031c02570f730092159e5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Guti=C3=A9rrez?= <35082514+alezmad@users.noreply.github.com> Date: Mon, 2 Feb 2026 00:27:16 +0000 Subject: [PATCH] Move WhyRating tab to first position Co-Authored-By: Claude Opus 4.5 --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 59d78ca..675c1f2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,9 +8,9 @@ import { categoryLabels, categoryOrder, bookmarkCategoryLabels, bookmarkCategory type TabId = 'services' | 'bookmarks' | 'whyrating' | 'settings'; const tabs: { id: TabId; label: string; icon: string }[] = [ + { id: 'whyrating', label: 'WhyRating', icon: 'star' }, { id: 'services', label: 'Services', icon: 'server' }, { id: 'bookmarks', label: 'Bookmarks', icon: 'external-link' }, - { id: 'whyrating', label: 'WhyRating', icon: 'star' }, { id: 'settings', label: 'Settings', icon: 'settings' }, ]; @@ -21,7 +21,7 @@ const whyratingLinks = [ ]; export default function Home() { - const [activeTab, setActiveTab] = useState('services'); + const [activeTab, setActiveTab] = useState('whyrating'); const { filteredServices, filteredBookmarks, healthStatus, searchQuery, darkMode, setDarkMode, services } = usePortal(); // Group services by category