|
12345678910111213141516171819202122232425 |
- const features = [
- {
- id: 1,
- description:
- 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here, making it look like readable English.',
- alt: 'image description',
- image: '/images/factory.svg',
- },
- {
- id: 2,
- description:
- 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here, making it look like readable English.',
- alt: 'image description',
- image: '/images/coffee-machine.svg',
- },
- {
- id: 3,
- description:
- 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here, making it look like readable English.',
- alt: 'image description',
- image: '/images/coffee-beans.svg',
- },
- ];
-
- export default features;
|