29 lines
560 B
TypeScript
29 lines
560 B
TypeScript
export const settingsData = [
|
|
{
|
|
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',
|
|
},
|
|
];
|
|
|
|
export const userData = [
|
|
{
|
|
name: 'Raysam',
|
|
email: 'raysam024@gmail.com',
|
|
},
|
|
{
|
|
name: 'Sam Miu',
|
|
email: 'juines.liu@gmail.com',
|
|
},
|
|
];
|