chore: update all layout selections (#2641)
This commit is contained in:
parent
41e9d5d7e3
commit
79cad16aba
8 changed files with 130 additions and 84 deletions
37
web/constants/page.ts
Normal file
37
web/constants/page.ts
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
import { LayoutGrid, List } from "lucide-react";
|
||||
|
||||
export const PAGE_VIEW_LAYOUTS = [
|
||||
{
|
||||
key: "list",
|
||||
icon: List,
|
||||
title: "List layout",
|
||||
},
|
||||
{
|
||||
key: "detailed",
|
||||
icon: LayoutGrid,
|
||||
title: "Detailed layout",
|
||||
},
|
||||
];
|
||||
|
||||
export const PAGE_TABS_LIST: { key: string; title: string }[] = [
|
||||
{
|
||||
key: "recent",
|
||||
title: "Recent",
|
||||
},
|
||||
{
|
||||
key: "all",
|
||||
title: "All",
|
||||
},
|
||||
{
|
||||
key: "favorites",
|
||||
title: "Favorites",
|
||||
},
|
||||
{
|
||||
key: "created-by-me",
|
||||
title: "Created by me",
|
||||
},
|
||||
{
|
||||
key: "created-by-others",
|
||||
title: "Created by others",
|
||||
},
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue