faq.ts
26 lines
| 1 | import { translate } from '@/utils/translate'; |
| 2 | |
| 3 | export interface FAQItem { |
| 4 | id: string; |
| 5 | question: string; |
| 6 | answer: string; |
| 7 | } |
| 8 | |
| 9 | export const faqData: FAQItem[] = [ |
| 10 | { |
| 11 | id: 'what-is-reach', |
| 12 | question: translate('hostinger_reach_faq_what_is_reach_question'), |
| 13 | answer: translate('hostinger_reach_faq_what_is_reach_answer') |
| 14 | }, |
| 15 | { |
| 16 | id: 'how-different', |
| 17 | question: translate('hostinger_reach_faq_how_different_question'), |
| 18 | answer: translate('hostinger_reach_faq_how_different_answer') |
| 19 | }, |
| 20 | { |
| 21 | id: 'how-much-cost', |
| 22 | question: translate('hostinger_reach_faq_how_much_cost_question'), |
| 23 | answer: translate('hostinger_reach_faq_how_much_cost_answer') |
| 24 | } |
| 25 | ]; |
| 26 |