diff --git a/website/src/components/logos/si-icon.tsx b/website/src/components/logos/si-icon.tsx new file mode 100644 index 000000000..fe3e3f2c7 --- /dev/null +++ b/website/src/components/logos/si-icon.tsx @@ -0,0 +1,25 @@ +import classNames from 'classnames'; +import { HTMLAttributes } from 'react'; + +export function SIIcon({ className, ...props }: HTMLAttributes) { + return ( + + Social Income Icon + + + + + + + ); +} diff --git a/website/src/components/navbar/navbar-client.tsx b/website/src/components/navbar/navbar-client.tsx index 3237bcef7..9f72fcbcb 100644 --- a/website/src/components/navbar/navbar-client.tsx +++ b/website/src/components/navbar/navbar-client.tsx @@ -2,10 +2,11 @@ import { DefaultParams } from '@/app/[lang]/[region]'; import { I18nDialog } from '@/components/i18n-dialog'; +import { SIIcon } from '@/components/logos/si-icon'; import { SILogo } from '@/components/logos/si-logo'; import { WebsiteCurrency } from '@/i18n'; import { UserCircleIcon } from '@heroicons/react/24/outline'; -import { Bars3Icon, GlobeEuropeAfricaIcon, LanguageIcon, XMarkIcon } from '@heroicons/react/24/solid'; +import { Bars3Icon, ChevronDownIcon, GlobeEuropeAfricaIcon, LanguageIcon, XMarkIcon } from '@heroicons/react/24/solid'; import { LanguageCode } from '@socialincome/shared/src/types/language'; import { Accordion, @@ -78,23 +79,26 @@ export function NavbarClient( currency: translations.currency, }} > - ); return ( -