Swapped homepage buttons

X-Lovable-Edit-ID: edt-f9f74e2f-c4d9-4d5a-8b2b-8a2cde875cae
Co-authored-by: Damaj301damaj-lol <90093996+Damaj301damaj-lol@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot] 2026-06-05 16:33:09 +00:00
commit c1174d77e1

View file

@ -2,12 +2,13 @@ import { useRef, useState, useEffect, useCallback } from 'react';
import { Link } from 'react-router-dom'; import { Link } from 'react-router-dom';
import { GlassCard } from '@/components/GlassCard'; import { GlassCard } from '@/components/GlassCard';
import avatar from '@/assets/avatar.png'; import avatar from '@/assets/avatar.png';
import { MessageCircle, Rss, GitBranch, ExternalLink, ArrowUpRight } from 'lucide-react'; import { MessageCircle, Rss, GitBranch, Search, ExternalLink, ArrowUpRight } from 'lucide-react';
const items = [ const items = [
{ icon: MessageCircle, label: 'Who Am I?', href: '/whoami', desc: 'About me', internal: true }, { icon: Search, label: 'SearXNG', href: 'https://search.damaj.tech/', desc: 'Self-hosted search' },
{ icon: Rss, label: 'Blog', href: '/blog', desc: 'My writings', internal: true }, { icon: Rss, label: 'Blog', href: '/blog', desc: 'My writings', internal: true },
{ icon: GitBranch, label: 'Git Server', href: 'https://git.damaj.tech/', desc: 'Self-hosted Forgejo' }, { icon: GitBranch, label: 'Git Server', href: 'https://git.damaj.tech/', desc: 'Self-hosted Forgejo' },
{ icon: MessageCircle, label: 'Who Am I?', href: '/whoami', desc: 'About me', internal: true },
]; ];
const Index = () => { const Index = () => {