+
+ Still have questions?
-
- {t('faqContactUs', language)}
+
+ Ask in the community or open an issue — both are answered by the
+ people building NOFX.
-
+
GitHub
@@ -160,13 +123,9 @@ export function FAQLayout({ language }: FAQLayoutProps) {
href="https://t.me/nofx_dev_community"
target="_blank"
rel="noopener noreferrer"
- className="px-6 py-3 rounded-lg font-semibold transition-all hover:scale-105"
- style={{
- background: '#E0483B',
- color: '#F1ECE2',
- }}
+ className="rounded-lg bg-nofx-gold px-5 py-2.5 font-mono text-xs font-bold uppercase tracking-[0.12em] text-white hover:bg-nofx-accent"
>
- {t('community', language)}
+ Telegram community
diff --git a/web/src/components/faq/FAQSidebar.tsx b/web/src/components/faq/FAQSidebar.tsx
index 3eebb5a8..93d13a98 100644
--- a/web/src/components/faq/FAQSidebar.tsx
+++ b/web/src/components/faq/FAQSidebar.tsx
@@ -1,52 +1,44 @@
-import { t, type Language } from '../../i18n/translations'
import type { FAQCategory } from '../../data/faqData'
interface FAQSidebarProps {
categories: FAQCategory[]
activeItemId: string | null
- language: Language
onItemClick: (categoryId: string, itemId: string) => void
}
export function FAQSidebar({
categories,
activeItemId,
- language,
onItemClick,
}: FAQSidebarProps) {
return (