From c73a7f3dda6e01c712839453508b0cf029fdc081 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 03:27:24 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 65f11f9..f109be2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -133,43 +133,43 @@ const HomePage = () => { { title: "Silk-Like Polyester Technology", description: "Specialized in creating polyester fabrics with the luxurious look and feel of natural silk.", icon: Sparkles, mediaItems: [ - { src: resolvedAssets["feature-fabric-development"], alt: "Silk-like polyester fabric texture" }, - { src: resolvedAssets["feature-quality-control"], alt: "Fabric quality inspection" } + { type: "image", imageSrc: resolvedAssets["feature-fabric-development"], imageAlt: "Silk-like polyester fabric texture" }, + { type: "image", imageSrc: resolvedAssets["feature-quality-control"], imageAlt: "Fabric quality inspection" } ], }, { title: "Seasonal Fabric Development", description: "Continuously developing new items inspired by global market trends and customer needs every season.", icon: Lightbulb, mediaItems: [ - { src: resolvedAssets["feature-fabric-development"], alt: "Fabric research and development" }, - { src: resolvedAssets["feature-quality-control"], alt: "Fabric testing equipment" } + { type: "image", imageSrc: resolvedAssets["feature-fabric-development"], imageAlt: "Fabric research and development" }, + { type: "image", imageSrc: resolvedAssets["feature-quality-control"], imageAlt: "Fabric testing equipment" } ], }, { title: "Competitive Pricing", description: "Offering cost-effective solutions without compromising on the superior quality of our textiles.", icon: DollarSign, mediaItems: [ - { src: resolvedAssets["feature-quick-delivery"], alt: "Global shipping containers" }, - { src: resolvedAssets["feature-competitive-price"], alt: "Competitive pricing chart" } + { type: "image", imageSrc: resolvedAssets["feature-quick-delivery"], imageAlt: "Global shipping containers" }, + { type: "image", imageSrc: resolvedAssets["feature-competitive-price"], imageAlt: "Competitive pricing chart" } ], }, { title: "Quick Delivery", description: "Streamlined logistics and efficient production ensure timely delivery to your global destinations.", icon: Rocket, mediaItems: [ - { src: resolvedAssets["feature-quick-delivery"], alt: "Cargo ship at port" }, - { src: resolvedAssets["feature-competitive-price"], alt: "Logistics network map" } + { type: "image", imageSrc: resolvedAssets["feature-quick-delivery"], imageAlt: "Cargo ship at port" }, + { type: "image", imageSrc: resolvedAssets["feature-competitive-price"], imageAlt: "Logistics network map" } ], }, { title: "Best Quality Guarantee", description: "Rigorous quality control processes ensure every fabric meets international standards of excellence.", icon: CheckCircle, mediaItems: [ - { src: resolvedAssets["feature-quality-control"], alt: "Textile quality inspection" }, - { src: resolvedAssets["feature-fabric-development"], alt: "Textile lab equipment" } + { type: "image", imageSrc: resolvedAssets["feature-quality-control"], imageAlt: "Textile quality inspection" }, + { type: "image", imageSrc: resolvedAssets["feature-fabric-development"], imageAlt: "Textile lab equipment" } ], }, { title: "Reliable Export Experience", description: "Decades of experience in export business, ensuring smooth and dependable transactions for overseas buyers.", icon: CheckCircle, mediaItems: [ - { src: resolvedAssets["feature-quick-delivery"], alt: "Export documentation" }, - { src: resolvedAssets["feature-competitive-price"], alt: "Global business partners" } + { type: "image", imageSrc: resolvedAssets["feature-quick-delivery"], imageAlt: "Export documentation" }, + { type: "image", imageSrc: resolvedAssets["feature-competitive-price"], imageAlt: "Global business partners" } ], }, ]} -- 2.49.1