diff --git a/src/components/layout/Footer.tsx b/src/components/layout/Footer.tsx index 707e748..84a5ea2 100644 --- a/src/components/layout/Footer.tsx +++ b/src/components/layout/Footer.tsx @@ -1,4 +1,4 @@ -import { SITE_LINKS } from "../../data/siteContent"; +import { SITE_LINKS, VK_URL } from "../../data/siteContent"; import { useLocale } from "../../i18n/LocaleProvider"; import { useEulaModal } from "../../providers/EulaModalProvider"; @@ -10,6 +10,7 @@ const FOOTER_LINK_KEYS = [ "faq", "enterKey", "support", + "vk", ] as const; const FOOTER_HREFS: Record<(typeof FOOTER_LINK_KEYS)[number], string> = { @@ -18,6 +19,7 @@ const FOOTER_HREFS: Record<(typeof FOOTER_LINK_KEYS)[number], string> = { faq: SITE_LINKS.faq, enterKey: SITE_LINKS.enterKey, support: SITE_LINKS.support, + vk: VK_URL, }; export function Footer() { @@ -30,7 +32,14 @@ export function Footer() {

© TTRPGPlayer