import { Button, Sheet, SheetContent, SheetTrigger } from "@/ui"; import SupportModal from "@/app/support/components/SupportModal"; import { cn } from "@/lib/utils"; import { MenuIcon, Package2Icon } from "lucide-react"; import { useCallback } from "react"; import { Trans } from "react-i18next"; import { Link, useLocation } from "react-router-dom"; import { UeckoLogo } from "../UeckoLogo"; import { UserButton } from "./components"; const mainMenu = [ { label: "main_menu.quotes", to: "/quotes", }, { label: "main_menu.catalog", to: "/catalog", }, { label: "main_menu.settings", to: "/settings", }, ]; export const LayoutHeader = () => { const location = useLocation(); const isActiveLink = useCallback( (path: string) => location.pathname === path, [location.pathname] ); return (
Uecko
); }; LayoutHeader.displayName = "LayoutHeader";