18 lines
402 B
TypeScript
18 lines
402 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',
|
|
},
|
|
];
|