d139605704
- 4 data files created in app/data/ with proper type imports from shared/types - 74 WebP images copied to public/images/ (including flowboard gallery) - All image paths migrated from @/assets/images/ to /images/ - FAQ uses i18n keys instead of direct text
20 lines
556 B
TypeScript
20 lines
556 B
TypeScript
import type { FAQ } from '~~/shared/types'
|
|
|
|
export const homeFAQs: FAQ[] = [
|
|
{
|
|
questionKey: 'faq.homeFaq.delivery.question',
|
|
answerKey: 'faq.homeFaq.delivery.answer',
|
|
featuresKey: 'faq.homeFaq.delivery.features',
|
|
},
|
|
{
|
|
questionKey: 'faq.homeFaq.maintenance.question',
|
|
answerKey: 'faq.homeFaq.maintenance.answer',
|
|
featuresKey: 'faq.homeFaq.maintenance.features',
|
|
},
|
|
{
|
|
questionKey: 'faq.homeFaq.companies.question',
|
|
answerKey: 'faq.homeFaq.companies.answer',
|
|
featuresKey: 'faq.homeFaq.companies.features',
|
|
},
|
|
]
|