From d28bc725b987cb4d3066950d6676b18b0e368a79 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 08:51:57 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 24 +++--------------------- 1 file changed, 3 insertions(+), 21 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 13ea33a..7560ccb 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -19,9 +19,7 @@ export default function AboutPage() { ]; const navButton = { - text: "Explore Our Collection", - href: "/products", - }; + text: "Explore Our Collection", href: "/products"}; const aboutHeading = [ { type: "text" as const, content: "Three decades of" }, @@ -37,26 +35,10 @@ export default function AboutPage() { ]; const socialProofLogos = [ - "http://img.b2bpic.net/free-vector/logo-template-design_1289-103.jpg", - "http://img.b2bpic.net/free-vector/initial-b-c-coffee-bean-shop-logo-business-branding-template-design-inspiration_384344-1595.jpg", - "http://img.b2bpic.net/free-vector/industrial-company-logo-template_1071-31.jpg", - "http://img.b2bpic.net/free-vector/logo-template-design_1289-103.jpg", - "http://img.b2bpic.net/free-vector/abstract-business-card-template_23-2148303097.jpg", - "http://img.b2bpic.net/free-vector/editable-business-card-template-modern-design-collection_53876-114878.jpg", - "http://img.b2bpic.net/free-vector/abstract-business-card-template_23-2148303097.jpg", - "http://img.b2bpic.net/free-vector/geometric-harmony-hills-private-school-logo-template_742173-18879.jpg", - ]; + "http://img.b2bpic.net/free-vector/logo-template-design_1289-103.jpg", "http://img.b2bpic.net/free-vector/initial-b-c-coffee-bean-shop-logo-business-branding-template-design-inspiration_384344-1595.jpg", "http://img.b2bpic.net/free-vector/industrial-company-logo-template_1071-31.jpg", "http://img.b2bpic.net/free-vector/logo-template-design_1289-103.jpg", "http://img.b2bpic.net/free-vector/abstract-business-card-template_23-2148303097.jpg", "http://img.b2bpic.net/free-vector/editable-business-card-template-modern-design-collection_53876-114878.jpg", "http://img.b2bpic.net/free-vector/abstract-business-card-template_23-2148303097.jpg", "http://img.b2bpic.net/free-vector/geometric-harmony-hills-private-school-logo-template_742173-18879.jpg"]; const socialProofNames = [ - "Global Trade Partners", - "International Logistics", - "Continental Distribution", - "Enterprise Supply Chain", - "Pacific Procurement", - "European Export Alliance", - "Middle East Commerce", - "Asia Distribution Network", - ]; + "Global Trade Partners", "International Logistics", "Continental Distribution", "Enterprise Supply Chain", "Pacific Procurement", "European Export Alliance", "Middle East Commerce", "Asia Distribution Network"]; return ( Date: Tue, 3 Mar 2026 08:51:57 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 39 ++++++++++----------------------------- 1 file changed, 10 insertions(+), 29 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index d2db1a5..d14d7db 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -18,41 +18,21 @@ export default function ContactPage() { ]; const navButton = { - text: "Explore Our Collection", - href: "/products", - }; + text: "Explore Our Collection", href: "/products"}; const testimonialItems = [ { - id: "1", - name: "Ahmed Hassan", - role: "Chief Procurement Officer", - company: "Middle East Trading Corporation", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", - imageAlt: "Ahmed Hassan", - }, + id: "1", name: "Ahmed Hassan", role: "Chief Procurement Officer", company: "Middle East Trading Corporation", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Ahmed Hassan"}, { - id: "2", - name: "Maria Garcia", - role: "International Buyer", - company: "European Distribution Ltd", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-camera_107420-95907.jpg?_wi=4", - imageAlt: "Maria Garcia", - }, + id: "2", name: "Maria Garcia", role: "International Buyer", company: "European Distribution Ltd", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-camera_107420-95907.jpg", imageAlt: "Maria Garcia"}, { - id: "3", - name: "David Chen", - role: "Supply Chain Manager", - company: "Asia-Pacific Logistics", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-camera_107420-95907.jpg?_wi=5", - imageAlt: "David Chen", - }, + id: "3", name: "David Chen", role: "Supply Chain Manager", company: "Asia-Pacific Logistics", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-camera_107420-95907.jpg", imageAlt: "David Chen"}, ]; - const kpiItems = [ + const kpiItems: [{ value: string; label: string }, { value: string; label: string }, { value: string; label: string }] = [ { value: "99.2%", label: "On-Time Delivery Rate" }, { value: "4.9/5", label: "Average Client Rating" }, { value: "18+", label: "Years Average Partnership" }, @@ -87,12 +67,13 @@ export default function ContactPage() { tagIcon={Mail} background={{ variant: "plain" }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/hall-business-building_1127-3310.jpg?_wi=2" + imageSrc="http://img.b2bpic.net/free-photo/hall-business-building_1127-3310.jpg" imageAlt="Modern industrial facility" mediaPosition="right" inputPlaceholder="Enter your business email" buttonText="Request Information" termsText="We respect your privacy. We'll respond within 24 business hours with tailored procurement solutions." + mediaAnimation="none" /> -- 2.49.1 From dc897b8f5c28229e138c8a7d84e3ef98fa66e6b3 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 08:51:58 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 23 +++++------------------ 1 file changed, 5 insertions(+), 18 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 23fec1a..b743c2a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,35 +5,22 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], + variable: "--font-montserrat", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Resource Enterprises | Premium Industrial Exporter", - description: "Global industrial exporter delivering premium cutlery, footwear, salt, and specialized parts. Trusted by 500+ enterprise clients across 50+ countries. ISO 9001 certified.", - keywords: "industrial exporter, B2B supplier, cutlery, footwear, salt, industrial parts, bulk export, procurement", - robots: { + title: "Resource Enterprises | Premium Industrial Exporter", description: "Global industrial exporter delivering premium cutlery, footwear, salt, and specialized parts. Trusted by 500+ enterprise clients across 50+ countries. ISO 9001 certified.", keywords: "industrial exporter, B2B supplier, cutlery, footwear, salt, industrial parts, bulk export, procurement", robots: { index: true, follow: true, }, openGraph: { - title: "Resource Enterprises - Precision Crafted, Globally Trusted", - description: "Premium industrial products delivered to procurement leaders worldwide. 30+ years of operational excellence.", - type: "website", - siteName: "Resource Enterprises", - images: [ + title: "Resource Enterprises - Precision Crafted, Globally Trusted", description: "Premium industrial products delivered to procurement leaders worldwide. 30+ years of operational excellence.", type: "website", siteName: "Resource Enterprises", images: [ { - url: "http://img.b2bpic.net/free-photo/various-surgical-tools-kept-table-operation-theater_107420-63639.jpg", - alt: "Resource Enterprises Industrial Products", - }, + url: "http://img.b2bpic.net/free-photo/various-surgical-tools-kept-table-operation-theater_107420-63639.jpg", alt: "Resource Enterprises Industrial Products"}, ], }, twitter: { - card: "summary_large_image", - title: "Resource Enterprises - Global Industrial Excellence", - description: "30+ years delivering premium industrial products to international buyers.", - images: ["http://img.b2bpic.net/free-photo/various-surgical-tools-kept-table-operation-theater_107420-63639.jpg"], + card: "summary_large_image", title: "Resource Enterprises - Global Industrial Excellence", description: "30+ years delivering premium industrial products to international buyers.", images: ["http://img.b2bpic.net/free-photo/various-surgical-tools-kept-table-operation-theater_107420-63639.jpg"], }, }; -- 2.49.1 From e7552dfb7aad578056be59ef5669146b417ebf4c Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 08:51:59 +0000 Subject: [PATCH 4/5] Update src/app/page.tsx --- src/app/page.tsx | 110 ++++++++++------------------------------------- 1 file changed, 22 insertions(+), 88 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index fb4ae96..d629559 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -23,31 +23,19 @@ export default function HomePage() { ]; const navButton = { - text: "Explore Our Collection", - href: "products", - }; + text: "Explore Our Collection", href: "products"}; const heroMediaItems = [ { - imageSrc: "http://img.b2bpic.net/free-photo/various-surgical-tools-kept-table-operation-theater_107420-63639.jpg", - imageAlt: "Premium cutlery collection", - }, + imageSrc: "http://img.b2bpic.net/free-photo/various-surgical-tools-kept-table-operation-theater_107420-63639.jpg", imageAlt: "Premium cutlery collection"}, { - imageSrc: "http://img.b2bpic.net/free-photo/wooden-feet-shape-arrangement_23-2149007459.jpg?_wi=1", - imageAlt: "Industrial footwear production", - }, + imageSrc: "http://img.b2bpic.net/free-photo/wooden-feet-shape-arrangement_23-2149007459.jpg", imageAlt: "Industrial footwear production"}, { - imageSrc: "http://img.b2bpic.net/free-photo/salt-salt-farm-ready-harvest-thailand_335224-1148.jpg?_wi=1", - imageAlt: "Industrial salt products", - }, + imageSrc: "http://img.b2bpic.net/free-photo/salt-salt-farm-ready-harvest-thailand_335224-1148.jpg", imageAlt: "Industrial salt products"}, { - imageSrc: "http://img.b2bpic.net/free-photo/stainless-steel-details-equipments-machinery_114579-2840.jpg", - imageAlt: "Precision manufactured parts", - }, + imageSrc: "http://img.b2bpic.net/free-photo/stainless-steel-details-equipments-machinery_114579-2840.jpg", imageAlt: "Precision manufactured parts"}, { - imageSrc: "http://img.b2bpic.net/free-photo/high-tech-manufacturing-environment-showing-robotics-action-photovoltaic-system-monitoring_482257-132268.jpg", - imageAlt: "State-of-the-art facility", - }, + imageSrc: "http://img.b2bpic.net/free-photo/high-tech-manufacturing-environment-showing-robotics-action-photovoltaic-system-monitoring_482257-132268.jpg", imageAlt: "State-of-the-art facility"}, ]; const aboutHeading = [ @@ -58,26 +46,11 @@ export default function HomePage() { const productItems = [ { - id: "1", - name: "Premium Cutlery", - price: "Custom Bulk Pricing", - imageSrc: "http://img.b2bpic.net/free-photo/cutlery-set-with-fork-knife-spoon-isolated-white-background_1212-919.jpg?_wi=1", - imageAlt: "Premium cutlery collection", - }, + id: "1", name: "Premium Cutlery", price: "Custom Bulk Pricing", imageSrc: "http://img.b2bpic.net/free-photo/cutlery-set-with-fork-knife-spoon-isolated-white-background_1212-919.jpg", imageAlt: "Premium cutlery collection"}, { - id: "2", - name: "Industrial Footwear", - price: "Custom Bulk Pricing", - imageSrc: "http://img.b2bpic.net/free-photo/wooden-feet-shape-arrangement_23-2149007459.jpg?_wi=2", - imageAlt: "Industrial footwear range", - }, + id: "2", name: "Industrial Footwear", price: "Custom Bulk Pricing", imageSrc: "http://img.b2bpic.net/free-photo/wooden-feet-shape-arrangement_23-2149007459.jpg", imageAlt: "Industrial footwear range"}, { - id: "3", - name: "Specialty Salt & Crafts", - price: "Custom Bulk Pricing", - imageSrc: "http://img.b2bpic.net/free-photo/salt-salt-farm-ready-harvest-thailand_335224-1148.jpg?_wi=2", - imageAlt: "Specialty salt products", - }, + id: "3", name: "Specialty Salt & Crafts", price: "Custom Bulk Pricing", imageSrc: "http://img.b2bpic.net/free-photo/salt-salt-farm-ready-harvest-thailand_335224-1148.jpg", imageAlt: "Specialty salt products"}, ]; const metricItems = [ @@ -89,70 +62,30 @@ export default function HomePage() { const testimonialItems = [ { - id: "1", - name: "Ahmed Hassan", - role: "Chief Procurement Officer", - company: "Middle East Trading Corporation", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", - imageAlt: "Ahmed Hassan", - }, + id: "1", name: "Ahmed Hassan", role: "Chief Procurement Officer", company: "Middle East Trading Corporation", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Ahmed Hassan"}, { - id: "2", - name: "Maria Garcia", - role: "International Buyer", - company: "European Distribution Ltd", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-camera_107420-95907.jpg?_wi=1", - imageAlt: "Maria Garcia", - }, + id: "2", name: "Maria Garcia", role: "International Buyer", company: "European Distribution Ltd", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-camera_107420-95907.jpg", imageAlt: "Maria Garcia"}, { - id: "3", - name: "David Chen", - role: "Supply Chain Manager", - company: "Asia-Pacific Logistics", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-camera_107420-95907.jpg?_wi=2", - imageAlt: "David Chen", - }, + id: "3", name: "David Chen", role: "Supply Chain Manager", company: "Asia-Pacific Logistics", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-camera_107420-95907.jpg", imageAlt: "David Chen"}, { - id: "4", - name: "Sophia Kowalski", - role: "Export Compliance Manager", - company: "Global Trade Ventures", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-camera_107420-95907.jpg?_wi=3", - imageAlt: "Sophia Kowalski", - }, + id: "4", name: "Sophia Kowalski", role: "Export Compliance Manager", company: "Global Trade Ventures", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-camera_107420-95907.jpg", imageAlt: "Sophia Kowalski"}, ]; - const kpiItems = [ + const kpiItems: [{ value: string; label: string }, { value: string; label: string }, { value: string; label: string }] = [ { value: "99.2%", label: "On-Time Delivery Rate" }, { value: "4.9/5", label: "Average Client Rating" }, { value: "18+", label: "Years Average Partnership" }, ]; const socialProofLogos = [ - "http://img.b2bpic.net/free-vector/logo-template-design_1289-103.jpg", - "http://img.b2bpic.net/free-vector/initial-b-c-coffee-bean-shop-logo-business-branding-template-design-inspiration_384344-1595.jpg", - "http://img.b2bpic.net/free-vector/industrial-company-logo-template_1071-31.jpg", - "http://img.b2bpic.net/free-vector/logo-template-design_1289-103.jpg", - "http://img.b2bpic.net/free-vector/abstract-business-card-template_23-2148303097.jpg", - "http://img.b2bpic.net/free-vector/editable-business-card-template-modern-design-collection_53876-114878.jpg", - "http://img.b2bpic.net/free-vector/abstract-business-card-template_23-2148303097.jpg", - "http://img.b2bpic.net/free-vector/geometric-harmony-hills-private-school-logo-template_742173-18879.jpg", - ]; + "http://img.b2bpic.net/free-vector/logo-template-design_1289-103.jpg", "http://img.b2bpic.net/free-vector/initial-b-c-coffee-bean-shop-logo-business-branding-template-design-inspiration_384344-1595.jpg", "http://img.b2bpic.net/free-vector/industrial-company-logo-template_1071-31.jpg", "http://img.b2bpic.net/free-vector/logo-template-design_1289-103.jpg", "http://img.b2bpic.net/free-vector/abstract-business-card-template_23-2148303097.jpg", "http://img.b2bpic.net/free-vector/editable-business-card-template-modern-design-collection_53876-114878.jpg", "http://img.b2bpic.net/free-vector/abstract-business-card-template_23-2148303097.jpg", "http://img.b2bpic.net/free-vector/geometric-harmony-hills-private-school-logo-template_742173-18879.jpg"]; const socialProofNames = [ - "Global Trade Partners", - "International Logistics", - "Continental Distribution", - "Enterprise Supply Chain", - "Pacific Procurement", - "European Export Alliance", - "Middle East Commerce", - "Asia Distribution Network", - ]; + "Global Trade Partners", "International Logistics", "Continental Distribution", "Enterprise Supply Chain", "Pacific Procurement", "European Export Alliance", "Middle East Commerce", "Asia Distribution Network"]; return ( -- 2.49.1 From ea9b99bff45c519edf25a33f2d20ef3f2a0def71 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 08:51:59 +0000 Subject: [PATCH 5/5] Update src/app/products/page.tsx --- src/app/products/page.tsx | 45 ++++++--------------------------------- 1 file changed, 6 insertions(+), 39 deletions(-) diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 23c1aca..0b9bb06 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -19,32 +19,15 @@ export default function ProductsPage() { ]; const navButton = { - text: "Explore Our Collection", - href: "/products", - }; + text: "Explore Our Collection", href: "/products"}; const productItems = [ { - id: "1", - name: "Premium Cutlery", - price: "Custom Bulk Pricing", - imageSrc: "http://img.b2bpic.net/free-photo/cutlery-set-with-fork-knife-spoon-isolated-white-background_1212-919.jpg?_wi=2", - imageAlt: "Premium cutlery collection", - }, + id: "1", name: "Premium Cutlery", price: "Custom Bulk Pricing", imageSrc: "http://img.b2bpic.net/free-photo/cutlery-set-with-fork-knife-spoon-isolated-white-background_1212-919.jpg", imageAlt: "Premium cutlery collection"}, { - id: "2", - name: "Industrial Footwear", - price: "Custom Bulk Pricing", - imageSrc: "http://img.b2bpic.net/free-photo/wooden-feet-shape-arrangement_23-2149007459.jpg?_wi=3", - imageAlt: "Industrial footwear range", - }, + id: "2", name: "Industrial Footwear", price: "Custom Bulk Pricing", imageSrc: "http://img.b2bpic.net/free-photo/wooden-feet-shape-arrangement_23-2149007459.jpg", imageAlt: "Industrial footwear range"}, { - id: "3", - name: "Specialty Salt & Crafts", - price: "Custom Bulk Pricing", - imageSrc: "http://img.b2bpic.net/free-photo/salt-salt-farm-ready-harvest-thailand_335224-1148.jpg?_wi=3", - imageAlt: "Specialty salt products", - }, + id: "3", name: "Specialty Salt & Crafts", price: "Custom Bulk Pricing", imageSrc: "http://img.b2bpic.net/free-photo/salt-salt-farm-ready-harvest-thailand_335224-1148.jpg", imageAlt: "Specialty salt products"}, ]; const performanceMetrics = [ @@ -55,26 +38,10 @@ export default function ProductsPage() { ]; const socialProofLogos = [ - "http://img.b2bpic.net/free-vector/logo-template-design_1289-103.jpg", - "http://img.b2bpic.net/free-vector/initial-b-c-coffee-bean-shop-logo-business-branding-template-design-inspiration_384344-1595.jpg", - "http://img.b2bpic.net/free-vector/industrial-company-logo-template_1071-31.jpg", - "http://img.b2bpic.net/free-vector/logo-template-design_1289-103.jpg", - "http://img.b2bpic.net/free-vector/abstract-business-card-template_23-2148303097.jpg", - "http://img.b2bpic.net/free-vector/editable-business-card-template-modern-design-collection_53876-114878.jpg", - "http://img.b2bpic.net/free-vector/abstract-business-card-template_23-2148303097.jpg", - "http://img.b2bpic.net/free-vector/geometric-harmony-hills-private-school-logo-template_742173-18879.jpg", - ]; + "http://img.b2bpic.net/free-vector/logo-template-design_1289-103.jpg", "http://img.b2bpic.net/free-vector/initial-b-c-coffee-bean-shop-logo-business-branding-template-design-inspiration_384344-1595.jpg", "http://img.b2bpic.net/free-vector/industrial-company-logo-template_1071-31.jpg", "http://img.b2bpic.net/free-vector/logo-template-design_1289-103.jpg", "http://img.b2bpic.net/free-vector/abstract-business-card-template_23-2148303097.jpg", "http://img.b2bpic.net/free-vector/editable-business-card-template-modern-design-collection_53876-114878.jpg", "http://img.b2bpic.net/free-vector/abstract-business-card-template_23-2148303097.jpg", "http://img.b2bpic.net/free-vector/geometric-harmony-hills-private-school-logo-template_742173-18879.jpg"]; const socialProofNames = [ - "Global Trade Partners", - "International Logistics", - "Continental Distribution", - "Enterprise Supply Chain", - "Pacific Procurement", - "European Export Alliance", - "Middle East Commerce", - "Asia Distribution Network", - ]; + "Global Trade Partners", "International Logistics", "Continental Distribution", "Enterprise Supply Chain", "Pacific Procurement", "European Export Alliance", "Middle East Commerce", "Asia Distribution Network"]; return (