// import { styled } from 'solid-styled-components' import useLanguage from '@hooks/useLanguage' import { Flex, Icon, Text } from '@hope-ui/solid' import { A } from '@solidjs/router' import { IconDashboard } from '@tabler/icons-solidjs' import { For } from 'solid-js' const language = useLanguage('vi') const NAVBAR_ITEM = [ { path: '/dashboard', icon: IconDashboard, text: language?.dashboard, }, ] export default function Navbar() { return (
) }