Gallery + Info improvements
All checks were successful
Deploy NPM app / Deploy NPM (push) Successful in 1m22s

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Ichitux
2026-05-05 19:02:59 +02:00
parent fce84ff4a6
commit a8a0336ae5
12 changed files with 35 additions and 16 deletions

View File

@@ -88,6 +88,16 @@ const PracticalSection = () => {
<div key={h.method} className="bg-card rounded-lg p-3">
<p className="font-medium text-foreground text-sm">{methodLabel}</p>
<p className="text-xs text-muted-foreground">{h.details}</p>
{h.link && (
<a
href={h.link}
target="_blank"
rel="noopener noreferrer"
className="inline-block mt-2 px-3 py-1 bg-primary text-primary-foreground text-xs rounded hover:bg-primary/90 transition-colors"
>
{t("info.viewOnMap")}
</a>
)}
</div>
);
})}