diff --git a/client/src/components/Layout/LayoutHeader.tsx b/client/src/components/Layout/LayoutHeader.tsx
index 104fa65..ca481f0 100644
--- a/client/src/components/Layout/LayoutHeader.tsx
+++ b/client/src/components/Layout/LayoutHeader.tsx
@@ -9,6 +9,21 @@ 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();
@@ -24,50 +39,19 @@ export const LayoutHeader = () => {