File size: 764 Bytes
aeb9637
 
 
 
 
a64b653
aeb9637
 
8bb8ecd
a64b653
 
 
aeb9637
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { Heart } from "lucide-react";
import { useTranslation } from "@/hooks/useTranslation";

export const HuggingFaceLink = () => {
  const t = useTranslation();

  return (
    <div className="flex flex-col items-center gap-2">
      <p className="text-muted-foreground">{t.welcome.likeGameText}</p>
      <a
        href="https://huggingface.co/spaces/Mistral-AI-Game-Jam/description-improv/tree/main"
        target="_blank"
        rel="noopener noreferrer"
        className="inline-flex items-center gap-2 px-4 py-2 text-sm font-medium text-primary hover:text-primary/90 transition-colors border border-primary/20 rounded-md hover:border-primary/40"
      >
        <Heart className="w-4 h-4" /> {t.welcome.likeOnHuggingface}
      </a>
    </div>
  );
};