import { A, useLocation } from '@solidjs/router' import { IconFileStack, IconGlobe, IconHome, IconLanguage, IconMenu, IconNetwork, IconPalette, IconRuler, IconSettings, } from '@tabler/icons-solidjs' import { For, ParentComponent, Show, createSignal } from 'solid-js' import { Button, LogoText } from '~/components' import { LANG, ROUTES, themes } from '~/constants' import { setLocale, useI18n } from '~/i18n' import { setCurTheme } from '~/signals' const Nav: ParentComponent<{ href: string; tooltip: string }> = ({ href, tooltip, children, }) => (