|
|
@@ -75,19 +75,34 @@ export async function SiteFooter() {
|
|
|
</p>
|
|
|
<ul className="space-y-3.5 text-sm font-medium">
|
|
|
<li>
|
|
|
- <Link href="/legal/terms" className="text-slate-400 transition-colors hover:text-[#f3deae]">
|
|
|
+ <a
|
|
|
+ href={t("termsPdfHref")}
|
|
|
+ target="_blank"
|
|
|
+ rel="noopener noreferrer"
|
|
|
+ className="text-slate-400 transition-colors hover:text-[#f3deae]"
|
|
|
+ >
|
|
|
{t("terms")}
|
|
|
- </Link>
|
|
|
+ </a>
|
|
|
</li>
|
|
|
<li>
|
|
|
- <Link href="/legal/privacy" className="text-slate-400 transition-colors hover:text-[#f3deae]">
|
|
|
+ <a
|
|
|
+ href={t("privacyPdfHref")}
|
|
|
+ target="_blank"
|
|
|
+ rel="noopener noreferrer"
|
|
|
+ className="text-slate-400 transition-colors hover:text-[#f3deae]"
|
|
|
+ >
|
|
|
{t("privacy")}
|
|
|
- </Link>
|
|
|
+ </a>
|
|
|
</li>
|
|
|
<li>
|
|
|
- <Link href="/legal/copyright" className="text-slate-400 transition-colors hover:text-[#f3deae]">
|
|
|
+ <a
|
|
|
+ href={t("copyrightPdfHref")}
|
|
|
+ target="_blank"
|
|
|
+ rel="noopener noreferrer"
|
|
|
+ className="text-slate-400 transition-colors hover:text-[#f3deae]"
|
|
|
+ >
|
|
|
{t("copyright")}
|
|
|
- </Link>
|
|
|
+ </a>
|
|
|
</li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
@@ -106,7 +121,7 @@ export async function SiteFooter() {
|
|
|
</p>
|
|
|
</div>
|
|
|
|
|
|
- <div>
|
|
|
+ {/* <div>
|
|
|
<p className="text-xs text-slate-500 mb-1.5">{t("email")}</p>
|
|
|
<a
|
|
|
href={`mailto:${t("emailValue")}`}
|
|
|
@@ -114,7 +129,7 @@ export async function SiteFooter() {
|
|
|
>
|
|
|
{t("emailValue")}
|
|
|
</a>
|
|
|
- </div>
|
|
|
+ </div> */}
|
|
|
</div>
|
|
|
</div>
|
|
|
|