feat: update Hero section to include GitHub and Gitea profile links

This commit is contained in:
Space-Banane
2026-04-04 19:10:06 +02:00
parent cd4c76173b
commit 62991c2269

View File

@@ -151,25 +151,46 @@ export function Hero({
{/* Luna AI Profile Link */} {/* Luna AI Profile Link */}
<div className="pt-4 flex justify-center"> <div className="pt-4 flex justify-center">
<div className="flex items-center gap-3">
<a <a
href="https://luna.reversed.dev" href="https://luna.reversed.dev"
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
className="group relative flex items-center gap-3 px-6 py-2.5 rounded-full bg-white/5 border border-white/10 hover:bg-white/10 hover:border-purple-500/50 transition-all duration-300 shadow-lg hover:shadow-purple-500/10" className="group relative flex items-center gap-3 px-6 py-2.5 rounded-full bg-white/5 border border-white/10 hover:bg-white/10 hover:border-purple-500/50 transition-all duration-300 shadow-lg hover:shadow-purple-500/10"
> >
<div className="w-2 h-2 rounded-full bg-purple-500" /> <div className="w-3 h-3 rounded-full bg-purple-500" />
<span className="text-sm font-medium text-gray-300 group-hover:text-white transition-colors"> <span className="text-sm font-medium text-gray-300 group-hover:text-white transition-colors">
<span className="text-purple-400 font-semibold">Luna</span> My AI Agent <span className="text-purple-400 font-semibold">Luna</span>
</span> </span>
<svg </a>
className="w-4 h-4 text-gray-500 group-hover:text-purple-400 transition-colors"
fill="none" <a
stroke="currentColor" href="https://github.com/Space-Banane"
viewBox="0 0 24 24" target="_blank"
rel="noopener noreferrer"
className="group relative flex items-center gap-2 px-4 py-2 rounded-full bg-white/5 border border-white/10 hover:bg-white/10 hover:border-gray-400 transition-all duration-300 shadow-sm"
aria-label="GitHub"
> >
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14" /> <svg className="w-6 h-6 text-gray-300 group-hover:text-white" viewBox="0 0 24 24" fill="currentColor" aria-hidden>
<path d="M12 2C6.48 2 2 6.48 2 12c0 4.42 2.87 8.17 6.84 9.49.5.09.68-.22.68-.48 0-.24-.01-.87-.01-1.71-2.78.6-3.37-1.34-3.37-1.34-.45-1.16-1.11-1.47-1.11-1.47-.91-.62.07-.61.07-.61 1 .07 1.53 1.03 1.53 1.03.89 1.52 2.34 1.08 2.91.83.09-.65.35-1.08.64-1.33-2.22-.25-4.56-1.11-4.56-4.95 0-1.09.39-1.98 1.03-2.68-.1-.25-.45-1.27.1-2.65 0 0 .84-.27 2.75 1.02A9.56 9.56 0 0112 6.8c.85.004 1.71.115 2.51.338 1.91-1.29 2.75-1.02 2.75-1.02.55 1.38.2 2.4.10 2.65.64.7 1.03 1.59 1.03 2.68 0 3.85-2.34 4.7-4.57 4.95.36.31.68.92.68 1.86 0 1.34-.01 2.42-.01 2.75 0 .26.18.58.69.48A10.01 10.01 0 0022 12c0-5.52-4.48-10-10-10z" />
</svg> </svg>
</a> </a>
<a
href="https://gitea.reversed.dev/space"
target="_blank"
rel="noopener noreferrer"
className="group relative flex items-center gap-2 px-4 py-2 rounded-full bg-white/5 border border-white/10 hover:bg-white/10 hover:border-yellow-400 transition-all duration-300 shadow-sm"
aria-label="Gitea"
>
<img
src="https://gitea.reversed.dev/assets/img/logo.svg"
alt="Gitea"
className="w-6 h-6"
/>
</a>
</div>
</div> </div>
</div> </div>
</section> </section>