This commit is contained in:
Gary Kwok
2024-06-17 18:05:05 +08:00
commit 56f6d03385
105 changed files with 4350 additions and 0 deletions

45
src/config/menu.json Normal file
View File

@@ -0,0 +1,45 @@
{
"main": [
{
"name": "Home",
"url": "/"
},
{
"name": "Tags",
"url": "/tags"
},
{
"name": "Categories",
"url": "/categories"
},
{
"name": "Pages",
"url": "",
"hasChildren": true,
"children": [
{
"name": "Contact",
"url": "/contact"
},
{
"name": "About",
"url": "/about"
}
]
}
],
"footer": [
{
"name": "About",
"url": "/about"
},
{
"name": "Contact",
"url": "/contact"
},
{
"name": "Privacy Policy",
"url": "/privacy-policy"
}
]
}