feat(01-02): migrate static data files and images to Nuxt structure
- 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
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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',
|
||||
},
|
||||
]
|
||||
Reference in New Issue
Block a user