- {services.items.map((service, index) => (
+ {services.items.map((service: { icon: string; title: string; description: string }, index: number) => (
{service.title}
@@ -250,7 +250,7 @@ export default function Home() {
{about.description}
- {about.highlights.map((highlight, index) => (
+ {about.highlights.map((highlight: string, index: number) => (
-
{highlight}
@@ -314,7 +314,7 @@ export default function Home() {
- {testimonials.items.map((testimonial, index) => (
+ {testimonials.items.map((testimonial: { text: string; name: string; role: string }, index: number) => (