import React from 'react'; import { Button } from '../../common/Button'; // UserProfile removed from navbar import { mergeClasses as cn } from '@/lib/styles/designSystem'; import { URLS } from '@/lib/config/constants'; interface ActionButtonsProps { scrolled: boolean; languageSwitcher: React.ReactElement; className?: string; } export const ActionButtons: React.FC = ({ scrolled, languageSwitcher, className }) => { return (
{/* Language Switcher */}
{languageSwitcher}
{/* Discord Button */} {/* Discord Icon Only (tablet) */} {/* Previously there was an auth button and user profile here; removed per request */}
); };