17 lines
224 B
TypeScript
17 lines
224 B
TypeScript
export const breadcrumbs = {
|
|
"/my-pages": [
|
|
{
|
|
title: "My Pages",
|
|
},
|
|
],
|
|
"/my-pages/profile": [
|
|
{
|
|
href: "/my-pages",
|
|
title: "My Pages",
|
|
},
|
|
{
|
|
title: "My Profile",
|
|
},
|
|
],
|
|
}
|