34 lines
499 B
JavaScript
34 lines
499 B
JavaScript
export const menus = [{
|
||
id: 1,
|
||
title: "homepage",
|
||
path: ""
|
||
},{
|
||
id: 2,
|
||
title: "blogs",
|
||
path: "/blogs"
|
||
},{
|
||
id: 3,
|
||
title: "peoples",
|
||
path: "/peoples"
|
||
},{
|
||
id: 4,
|
||
title: "services",
|
||
path: "/services"
|
||
}];
|
||
|
||
export const profileMenus = [{
|
||
id: 0,
|
||
title: "Özet",
|
||
path: "",
|
||
active: false
|
||
},{
|
||
id: 1,
|
||
title: "Gönderiler",
|
||
path: "posts",
|
||
active: false
|
||
},{
|
||
id: 2,
|
||
title: "Hakkında",
|
||
path: "about",
|
||
active: false
|
||
}]; |