feat: table view for mobiles

This commit is contained in:
2025-10-06 09:37:58 +04:00
parent 665625557d
commit b316cf4f7a
14 changed files with 142 additions and 106 deletions

View File

@ -0,0 +1,31 @@
import {
IconCircleDotted,
IconLayoutKanban,
IconTable,
} from "@tabler/icons-react";
import LinkData from "@/components/layout/Navbar/types/LinkData";
const buttonsData: LinkData[] = [
{
icon: IconLayoutKanban,
label: "Воронка",
href: "/deals?view=board",
},
{
icon: IconTable,
label: "Таблица",
href: "/deals?view=table",
},
{
icon: IconCircleDotted,
label: "Label 2",
href: "/opaopa",
},
{
icon: IconCircleDotted,
label: "Label 3",
href: "/hihihaha",
},
];
export default buttonsData;