feat: Add preferences page

This commit is contained in:
Jesse Wierzbinski 2024-12-02 21:48:12 +01:00
parent a6635bc888
commit 5203f47409
No known key found for this signature in database
7 changed files with 135 additions and 7 deletions

View file

@ -61,25 +61,25 @@ import ThemeSwitcher from "./theme-switcher.vue";
const data = {
navMain: [
{
title: "Settings",
url: "#",
title: "Preferences",
url: "/preferences",
icon: Settings2,
items: [
{
title: "Appearance",
url: "#",
url: "/preferences/appearance",
},
{
title: "Behaviour",
url: "#",
url: "/preferences/behaviour",
},
{
title: "Emojis",
url: "#",
url: "/preferences/emojis",
},
{
title: "Roles",
url: "#",
url: "/preferences/roles",
},
],
},