diff --git a/frontend/src/app/(public)/page.tsx b/frontend/src/app/(public)/page.tsx index 25b3e1e..eea3368 100644 --- a/frontend/src/app/(public)/page.tsx +++ b/frontend/src/app/(public)/page.tsx @@ -195,7 +195,7 @@ export default function Home() {

{features.title}

- {features.items.map((feature, index) => ( + {features.items.map((feature: { icon: string; title: string; description: string }, index: number) => (
@@ -218,7 +218,7 @@ export default function Home() {

{services.title}

- {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) => (

"{testimonial.text}"