From 13a7d62c194f3f90e7c663b9d5567155bb33f108 Mon Sep 17 00:00:00 2001 From: "Abdullah." <125115953+mabdullahabaid@users.noreply.github.com> Date: Wed, 10 Jun 2026 09:51:08 +0500 Subject: [PATCH] [Website] Re-introduce footer language switcher (#21387) Reintroduce locale-switcher in the footer. image --- .../twenty-website/src/sections/Footer/components/Bottom.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/twenty-website/src/sections/Footer/components/Bottom.tsx b/packages/twenty-website/src/sections/Footer/components/Bottom.tsx index 454ec2fe04..5f72db229c 100644 --- a/packages/twenty-website/src/sections/Footer/components/Bottom.tsx +++ b/packages/twenty-website/src/sections/Footer/components/Bottom.tsx @@ -2,6 +2,7 @@ import { ArrowRightUpIcon, SOCIAL_ICONS } from '@/icons'; import { getServerI18n } from '@/lib/i18n/server'; import type { MessageDescriptor } from '@lingui/core'; import type { FooterSocialLinkType } from '@/sections/Footer/types'; +import { LocaleSwitcher } from '@/sections/Footer/components/LocaleSwitcher'; import { theme } from '@/theme'; import { Separator } from '@base-ui/react/separator'; import { styled } from '@linaria/react'; @@ -94,6 +95,7 @@ export function Bottom({ copyright, links }: BottomProps) { {i18n._(copyright)} + {links.map((link, index) => {