From 0b6960085dd2b6221e620aa24a508a281b4e3422 Mon Sep 17 00:00:00 2001 From: Sacha VAUDEY Date: Sun, 14 Sep 2025 14:48:24 +0200 Subject: [PATCH] fix Discord button --- .../layout/navbar/ActionButtons.tsx | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 banquise-website/components/layout/navbar/ActionButtons.tsx diff --git a/banquise-website/components/layout/navbar/ActionButtons.tsx b/banquise-website/components/layout/navbar/ActionButtons.tsx new file mode 100644 index 0000000..dc68abe --- /dev/null +++ b/banquise-website/components/layout/navbar/ActionButtons.tsx @@ -0,0 +1,38 @@ +import React from 'react'; +import { DiscordButton } from '@/components/ui/DiscordButton'; +import { cn } from '@/lib/utils'; + +interface ActionButtonsProps { + scrolled: boolean; + languageSwitcher: React.ReactElement; +} + +export const ActionButtons: React.FC = ({ + scrolled, + languageSwitcher +}) => { + return ( +
+ {/* Language Switcher */} +
+ {languageSwitcher} +
+ + {/* Discord Button */} +
+ + Discord + +
+
+ ); +}; \ No newline at end of file