guessName+Fixes

This commit is contained in:
2025-10-21 15:08:28 +02:00
parent a1cf327837
commit 237378c208
8 changed files with 95 additions and 54 deletions
@@ -34,13 +34,13 @@ const Footer = () => {
return (
<footer
ref={footerRef}
className="relative bg-zinc-900 text-white border-t-2 border-zinc-800 mt-auto py-8"
className="relative bg-zinc-900 text-zinc-400 border-t-2 border-zinc-800 mt-auto py-8"
style={{ transformOrigin: "bottom center" }}
>
<div className="max-w-6xl mx-auto flex flex-wrap justify-between items-start gap-8 px-4">
{/* Logó */}
<div className="flex flex-col items-center">
<a href="/" className="hover:scale-105 hover:brightness-125">
<a href="/" className="hover:scale-105 hover:brightness-110">
<Logo size={100} />
</a>
<span className="font-extrabold text-xl mt-2 tracking-wide">SerpentRace</span>
@@ -48,30 +48,30 @@ const Footer = () => {
{/* Oldalak */}
<div className="flex flex-col gap-1">
<span className="text-lg font-semibold text-green-400 underline underline-offset-4 mb-2 drop-shadow-sm">
<span className="text-lg font-semibold text-green-600 underline underline-offset-4 mb-2 drop-shadow-sm">
Oldalak
</span>
<a href="/" className="hover:underline hover:text-green-400">
<a href="/" className="hover:underline hover:text-green-500">
Főoldal
</a>
<a href="/about" className="hover:underline hover:text-green-400">
<a href="/about" className="hover:underline hover:text-green-500">
Rólunk
</a>
<a href="/contact" className="hover:underline hover:text-green-400">
<a href="/contact" className="hover:underline hover:text-green-500">
Kapcsolat
</a>
</div>
{/* Közösség */}
<div className="flex flex-col gap-1">
<span className="text-lg font-semibold text-green-400 underline underline-offset-4 mb-2 drop-shadow-sm">
<span className="text-lg font-semibold text-green-600 underline underline-offset-4 mb-2 drop-shadow-sm">
Közösség
</span>
<a
href="https://discord.gg/"
target="_blank"
rel="noopener noreferrer"
className="hover:underline hover:text-green-400"
className="hover:underline hover:text-green-500"
>
Discord
</a>
@@ -79,7 +79,7 @@ const Footer = () => {
href="https://github.com/"
target="_blank"
rel="noopener noreferrer"
className="hover:underline hover:text-green-400"
className="hover:underline hover:text-green-500"
>
GitHub
</a>
@@ -87,11 +87,11 @@ const Footer = () => {
{/* Elérhetőség */}
<div className="flex flex-col gap-1">
<span className="text-lg font-semibold text-green-400 underline underline-offset-4 mb-2 drop-shadow-sm">
<span className="text-lg font-semibold text-green-600 underline underline-offset-4 mb-2 drop-shadow-sm">
Elérhetőség
</span>
<span className="opacity-80">Email: info@serpentrace.hu</span>
<span className="opacity-80">Telefon: +36 30 123 4567</span>
<span className="opacity-85">Email: info@serpentrace.hu</span>
<span className="opacity-85">Telefon: +36 30 123 4567</span>
</div>
</div>