feat: table view for mobiles
This commit is contained in:
31
src/components/layout/Footer/data/buttonsData.ts
Normal file
31
src/components/layout/Footer/data/buttonsData.ts
Normal 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;
|
||||
Reference in New Issue
Block a user