diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 402a877..0cf61e6 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -32,28 +32,28 @@ export default function AboutPage() { mediaItems: [ { imageSrc: "/placeholders/placeholder5.jpg", imageAlt: "Precision tailoring work" }, { imageSrc: "/placeholders/placeholder6.jpg", imageAlt: "Detailed stitching example" }, - ], + ] as [{ imageSrc: string; imageAlt: string }, { imageSrc: string; imageAlt: string }], }, { title: "Bespoke Design", description: "Custom design consultation and creation tailored to your unique style, body type, and preferences.", icon: Sparkles, mediaItems: [ { imageSrc: "/placeholders/placeholder7.jpg", imageAlt: "Design consultation" }, { imageSrc: "/placeholders/placeholder8.jpg", imageAlt: "Fabric selection" }, - ], + ] as [{ imageSrc: string; imageAlt: string }, { imageSrc: string; imageAlt: string }], }, { title: "Premium Materials", description: "Sourced from the finest mills and suppliers worldwide, ensuring quality and durability.", icon: Briefcase, mediaItems: [ { imageSrc: "/placeholders/placeholder9.jpg", imageAlt: "Premium fabric collection" }, { imageSrc: "/placeholders/placeholder10.jpg", imageAlt: "Material samples" }, - ], + ] as [{ imageSrc: string; imageAlt: string }, { imageSrc: string; imageAlt: string }], }, { title: "Expert Consultants", description: "Our experienced team provides personalized guidance throughout the entire tailoring process.", icon: Users, mediaItems: [ { imageSrc: "/placeholders/placeholder11.jpg", imageAlt: "Team consultation" }, { imageSrc: "/placeholders/placeholder12.jpg", imageAlt: "Client meeting" }, - ], + ] as [{ imageSrc: string; imageAlt: string }, { imageSrc: string; imageAlt: string }], }, ];