diff --git a/src/app/page.tsx b/src/app/page.tsx index fee2272..c6d11cf 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,7 +8,7 @@ import { categoryLabels, categoryOrder, bookmarkCategoryLabels, bookmarkCategory type TabId = 'services' | 'bookmarks' | 'ai' | 'whyrating' | 'settings'; const tabs: { id: TabId; label: string; icon: string }[] = [ - { id: 'whyrating', label: 'WhyRating', icon: 'star' }, + { id: 'whyrating', label: 'WhyRating', icon: 'whyrating' }, { id: 'services', label: 'Services', icon: 'server' }, { id: 'ai', label: 'AI', icon: 'bot' }, { id: 'bookmarks', label: 'Bookmarks', icon: 'external-link' }, @@ -28,7 +28,7 @@ const aiTools = [ ]; const whyratingLinks = [ - { name: 'WhyRating Hub', url: 'http://whyrating.nuc.lan', icon: 'star', description: 'WhyRating project hub and quick links' }, + { name: 'WhyRating Hub', url: 'http://whyrating.nuc.lan', icon: 'whyrating', description: 'WhyRating project hub and quick links' }, ]; export default function Home() { diff --git a/src/components/Icons.tsx b/src/components/Icons.tsx index cfdd30c..333743a 100644 --- a/src/components/Icons.tsx +++ b/src/components/Icons.tsx @@ -108,6 +108,41 @@ export const icons: Record> = { 'x': createIcon(''), 'settings': createIcon(''), 'loader': createIcon(''), + + // WhyRating brand logo icon + 'whyrating': function WhyRatingIcon({ className = '', size = 24 }: IconProps) { + return ( + + + + + + + + + + + + + + + + + + ); + }, }; export function Icon({ name, className, size }: { name: string; className?: string; size?: number }) {