- added settings page and function

- add Role Ring for avatar and display role for user nav
This commit is contained in:
2026-01-06 21:37:53 +07:00
parent 8146565d2c
commit a4e96fe045
64 changed files with 2828 additions and 726 deletions

22
prisma/data.ts Normal file
View File

@@ -0,0 +1,22 @@
export const settingsData = [
{
key: 'site_language',
value: 'en',
description: 'The language of the site',
},
{
key: 'site_name',
value: 'Fuware',
description: 'The name of the site',
},
{
key: 'site_description',
value: 'Fuware is a platform for creating and sharing stories',
description: 'The description of the site',
},
{
key: 'site_keywords',
value: 'story, line, share, stories',
description: 'The keywords of the site',
},
];