Sync from GitHub Actions: 1d710b8cbd3869debf5a9fa17ca9c5106a30d2f7
Browse files
src/components/Footer.tsx
CHANGED
|
@@ -13,9 +13,9 @@ export default function Footer() {
|
|
| 13 |
<span className="text-2xl font-black tracking-tighter text-orange-600">Sentimind.</span>
|
| 14 |
</div>
|
| 15 |
<div className="flex justify-center gap-6 mb-6 text-sm font-medium text-gray-600 dark:text-gray-300">
|
| 16 |
-
<Link href="/" className="hover:text-orange-600 transition-colors">Home</Link>
|
| 17 |
-
<Link href="/analyzer" className="hover:text-orange-600 transition-colors">Analyzer</Link>
|
| 18 |
-
<Link href="/quiz" className="hover:text-orange-600 transition-colors">
|
| 19 |
<Link href="/types" className="hover:text-orange-600 transition-colors">{lang === 'en' ? "Types" : "Tipe"}</Link>
|
| 20 |
<Link href="/chat" className="hover:text-orange-600 transition-colors">Chat</Link>
|
| 21 |
</div>
|
|
@@ -25,4 +25,4 @@ export default function Footer() {
|
|
| 25 |
</div>
|
| 26 |
</footer>
|
| 27 |
);
|
| 28 |
-
}
|
|
|
|
| 13 |
<span className="text-2xl font-black tracking-tighter text-orange-600">Sentimind.</span>
|
| 14 |
</div>
|
| 15 |
<div className="flex justify-center gap-6 mb-6 text-sm font-medium text-gray-600 dark:text-gray-300">
|
| 16 |
+
<Link href="/" className="hover:text-orange-600 transition-colors">{lang === 'en' ? "Home" : "Beranda"}</Link>
|
| 17 |
+
<Link href="/analyzer" className="hover:text-orange-600 transition-colors">{lang === 'en' ? "Analyzer" : "Analisis"}</Link>
|
| 18 |
+
<Link href="/quiz" className="hover:text-orange-600 transition-colors">{lang === 'en' ? "Quiz" : "Kuis"}</Link>
|
| 19 |
<Link href="/types" className="hover:text-orange-600 transition-colors">{lang === 'en' ? "Types" : "Tipe"}</Link>
|
| 20 |
<Link href="/chat" className="hover:text-orange-600 transition-colors">Chat</Link>
|
| 21 |
</div>
|
|
|
|
| 25 |
</div>
|
| 26 |
</footer>
|
| 27 |
);
|
| 28 |
+
}
|