From 4d393a7fa7a18709c72f8ca2541b214af35f2f5d Mon Sep 17 00:00:00 2001 From: "chip-peanut-bot[bot]" <262992217+chip-peanut-bot[bot]@users.noreply.github.com> Date: Wed, 26 Aug 2026 16:25:12 +0000 Subject: [PATCH] fix: remove Telegram link from website footer Co-authored-by: Aleks Balinda Co-authored-by: Chip --- src/components/LandingPage/Footer.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/LandingPage/Footer.tsx b/src/components/LandingPage/Footer.tsx index 5e8a8d01e6..a33110b67f 100644 --- a/src/components/LandingPage/Footer.tsx +++ b/src/components/LandingPage/Footer.tsx @@ -1,6 +1,5 @@ import GITHUB_WHITE_ICON from '@/assets/icons/github-white.png' import PEANUT_LOGO from '@/assets/logos/peanut-logo.svg' -import TELEGRAM_ICON from '@/assets/icons/telegram-white.svg' import X_ICON from '@/assets/icons/x-logo.svg' import Image from 'next/image' import Link from 'next/link' @@ -16,7 +15,6 @@ import { DEFAULT_LOCALE, type Locale } from '@/i18n/types' const NAV_LINK = 'text-xl font-bold text-white' const SOCIALS = [ - { href: 'https://t.me/clubpeanut', label: 'Join us on Telegram', icon: TELEGRAM_ICON, alt: 'Telegram' }, { href: 'https://x.com/joinpeanut', label: 'Follow us on X', icon: X_ICON, alt: 'X' }, { href: 'https://github.com/peanutprotocol', label: 'View our GitHub', icon: GITHUB_WHITE_ICON, alt: 'GitHub' }, ]