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