Merge version_1 into main #1
@@ -146,25 +146,25 @@ export default function AboutPage() {
|
||||
{
|
||||
id: "testimonial-1",
|
||||
name: "Ahmed Hassan",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/content-indian-ceo-standing-smiling-portrait-successful-pensive-bearded-businessman-glasses-posing-office-room-business-expression-management-concept_74855-11642.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/content-indian-ceo-standing-smiling-portrait-successful-pensive-bearded-businessman-glasses-posing-office-room-business-expression-management-concept_74855-11642.jpg?_wi=2",
|
||||
imageAlt: "professional headshot business person",
|
||||
},
|
||||
{
|
||||
id: "testimonial-2",
|
||||
name: "Fatima Al-Mansouri",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-good-looking-smiling-friendly-female-trainee-ready-tackle-assignments-smiling-broadly-feeling-lucky-day-work-self-assured-encouraged-achieve-success-goal-white-wall_176420-35567.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-good-looking-smiling-friendly-female-trainee-ready-tackle-assignments-smiling-broadly-feeling-lucky-day-work-self-assured-encouraged-achieve-success-goal-white-wall_176420-35567.jpg?_wi=2",
|
||||
imageAlt: "female business professional headshot",
|
||||
},
|
||||
{
|
||||
id: "testimonial-3",
|
||||
name: "Mohammed Al-Rashid",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-businessman-office_1163-5471.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-businessman-office_1163-5471.jpg?_wi=2",
|
||||
imageAlt: "diverse business professional portrait",
|
||||
},
|
||||
{
|
||||
id: "testimonial-4",
|
||||
name: "Layla Al-Khattabi",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-successful-businesswoman-suit-cross-arms-chest-smile-look-confident-stan_1258-118782.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-successful-businesswoman-suit-cross-arms-chest-smile-look-confident-stan_1258-118782.jpg?_wi=2",
|
||||
imageAlt: "business professional photo portrait",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,63 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Montserrat } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Istaqbaal Agencies - Premium Product Distribution Solutions",
|
||||
description: "Trusted distributor of quality products across multiple industries. Offering wholesale solutions, efficient logistics, and competitive pricing for businesses nationwide.",
|
||||
keywords: "product distribution, wholesale distributor, supply chain, logistics, bulk orders, business products",
|
||||
metadataBase: new URL("https://istaqbaal-agencies.com"),
|
||||
alternates: {
|
||||
canonical: "https://istaqbaal-agencies.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Istaqbaal Agencies - Product Distribution Excellence",
|
||||
description: "Leading distributor serving businesses with comprehensive product portfolio and reliable logistics solutions.",
|
||||
url: "https://istaqbaal-agencies.com",
|
||||
siteName: "Istaqbaal Agencies",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/diverse-team-business-owners-packing-order-shipping-using-cardboard-boxes-merchandise-man-woman-working-supply-chain-logistics-quality-control-handheld-shot_482257-63936.jpg",
|
||||
alt: "Istaqbaal Agencies Distribution Hub",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Istaqbaal Agencies - Premium Distribution",
|
||||
description: "Your trusted partner in product distribution across multiple sectors.",
|
||||
images: [
|
||||
"http://img.b2bpic.net/free-photo/diverse-team-business-owners-packing-order-shipping-using-cardboard-boxes-merchandise-man-woman-working-supply-chain-logistics-quality-control-handheld-shot_482257-63936.jpg",
|
||||
],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +66,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +80,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -102,32 +102,32 @@ export default function HomePage() {
|
||||
carouselItems={[
|
||||
{
|
||||
id: "carousel-1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/diverse-team-business-owners-packing-order-shipping-using-cardboard-boxes-merchandise-man-woman-working-supply-chain-logistics-quality-control-handheld-shot_482257-63936.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/diverse-team-business-owners-packing-order-shipping-using-cardboard-boxes-merchandise-man-woman-working-supply-chain-logistics-quality-control-handheld-shot_482257-63936.jpg?_wi=1",
|
||||
imageAlt: "modern warehouse distribution center professional",
|
||||
},
|
||||
{
|
||||
id: "carousel-2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-supermarket-grocery-store-background_640221-331.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-supermarket-grocery-store-background_640221-331.jpg?_wi=1",
|
||||
imageAlt: "industrial product packaging cardboard boxes",
|
||||
},
|
||||
{
|
||||
id: "carousel-3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-medical-elements-composition-with-copy-space_23-2148502907.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-medical-elements-composition-with-copy-space_23-2148502907.jpg?_wi=1",
|
||||
imageAlt: "consumer goods product line",
|
||||
},
|
||||
{
|
||||
id: "carousel-4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-stationary-collection-arrangement_23-2149309690.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-stationary-collection-arrangement_23-2149309690.jpg?_wi=1",
|
||||
imageAlt: "electronics technology gadgets",
|
||||
},
|
||||
{
|
||||
id: "carousel-5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesspeople-working-office_1139-254.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesspeople-working-office_1139-254.jpg?_wi=1",
|
||||
imageAlt: "professional business team working together",
|
||||
},
|
||||
{
|
||||
id: "carousel-6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/employees-working-warehouse_23-2148923075.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/employees-working-warehouse_23-2148923075.jpg?_wi=1",
|
||||
imageAlt: "logistics tracking delivery management",
|
||||
},
|
||||
]}
|
||||
@@ -170,21 +170,21 @@ export default function HomePage() {
|
||||
id: "product-cat-1",
|
||||
name: "Consumer Goods",
|
||||
price: "Wholesale Available",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-supermarket-grocery-store-background_640221-331.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-supermarket-grocery-store-background_640221-331.jpg?_wi=2",
|
||||
imageAlt: "Consumer goods and packaged products",
|
||||
},
|
||||
{
|
||||
id: "product-cat-2",
|
||||
name: "Industrial Equipment",
|
||||
price: "Custom Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-medical-elements-composition-with-copy-space_23-2148502907.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-medical-elements-composition-with-copy-space_23-2148502907.jpg?_wi=2",
|
||||
imageAlt: "Industrial equipment and machinery",
|
||||
},
|
||||
{
|
||||
id: "product-cat-3",
|
||||
name: "Specialty Products",
|
||||
price: "Bulk Discounts",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-stationary-collection-arrangement_23-2149309690.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-stationary-collection-arrangement_23-2149309690.jpg?_wi=2",
|
||||
imageAlt: "Specialty and premium products",
|
||||
},
|
||||
]}
|
||||
@@ -222,7 +222,7 @@ export default function HomePage() {
|
||||
content: "Our dedicated support team is available to assist with orders, inquiries, and logistics concerns. We prioritize your satisfaction and long-term business relationship.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/employees-working-warehouse_23-2148923075.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/employees-working-warehouse_23-2148923075.jpg?_wi=2"
|
||||
imageAlt="Advanced logistics and distribution management"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -333,25 +333,25 @@ export default function HomePage() {
|
||||
{
|
||||
id: "testimonial-1",
|
||||
name: "Ahmed Hassan",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/content-indian-ceo-standing-smiling-portrait-successful-pensive-bearded-businessman-glasses-posing-office-room-business-expression-management-concept_74855-11642.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/content-indian-ceo-standing-smiling-portrait-successful-pensive-bearded-businessman-glasses-posing-office-room-business-expression-management-concept_74855-11642.jpg?_wi=1",
|
||||
imageAlt: "professional headshot business person",
|
||||
},
|
||||
{
|
||||
id: "testimonial-2",
|
||||
name: "Fatima Al-Mansouri",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-good-looking-smiling-friendly-female-trainee-ready-tackle-assignments-smiling-broadly-feeling-lucky-day-work-self-assured-encouraged-achieve-success-goal-white-wall_176420-35567.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-good-looking-smiling-friendly-female-trainee-ready-tackle-assignments-smiling-broadly-feeling-lucky-day-work-self-assured-encouraged-achieve-success-goal-white-wall_176420-35567.jpg?_wi=1",
|
||||
imageAlt: "female business professional headshot",
|
||||
},
|
||||
{
|
||||
id: "testimonial-3",
|
||||
name: "Mohammed Al-Rashid",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-businessman-office_1163-5471.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-businessman-office_1163-5471.jpg?_wi=1",
|
||||
imageAlt: "diverse business professional portrait",
|
||||
},
|
||||
{
|
||||
id: "testimonial-4",
|
||||
name: "Layla Al-Khattabi",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-successful-businesswoman-suit-cross-arms-chest-smile-look-confident-stan_1258-118782.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-successful-businesswoman-suit-cross-arms-chest-smile-look-confident-stan_1258-118782.jpg?_wi=1",
|
||||
imageAlt: "business professional photo portrait",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -105,32 +105,32 @@ export default function ProductsPage() {
|
||||
carouselItems={[
|
||||
{
|
||||
id: "carousel-1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/diverse-team-business-owners-packing-order-shipping-using-cardboard-boxes-merchandise-man-woman-working-supply-chain-logistics-quality-control-handheld-shot_482257-63936.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/diverse-team-business-owners-packing-order-shipping-using-cardboard-boxes-merchandise-man-woman-working-supply-chain-logistics-quality-control-handheld-shot_482257-63936.jpg?_wi=2",
|
||||
imageAlt: "Product distribution and logistics",
|
||||
},
|
||||
{
|
||||
id: "carousel-2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-supermarket-grocery-store-background_640221-331.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-supermarket-grocery-store-background_640221-331.jpg?_wi=3",
|
||||
imageAlt: "Consumer goods marketplace",
|
||||
},
|
||||
{
|
||||
id: "carousel-3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-medical-elements-composition-with-copy-space_23-2148502907.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-medical-elements-composition-with-copy-space_23-2148502907.jpg?_wi=3",
|
||||
imageAlt: "Healthcare and pharmaceutical products",
|
||||
},
|
||||
{
|
||||
id: "carousel-4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-stationary-collection-arrangement_23-2149309690.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-stationary-collection-arrangement_23-2149309690.jpg?_wi=3",
|
||||
imageAlt: "Office and tech products",
|
||||
},
|
||||
{
|
||||
id: "carousel-5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesspeople-working-office_1139-254.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesspeople-working-office_1139-254.jpg?_wi=2",
|
||||
imageAlt: "Business solutions and services",
|
||||
},
|
||||
{
|
||||
id: "carousel-6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/employees-working-warehouse_23-2148923075.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/employees-working-warehouse_23-2148923075.jpg?_wi=3",
|
||||
imageAlt: "Warehouse and inventory management",
|
||||
},
|
||||
]}
|
||||
@@ -163,21 +163,21 @@ export default function ProductsPage() {
|
||||
id: "product-cat-1",
|
||||
name: "Consumer Goods",
|
||||
price: "Wholesale Available",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-supermarket-grocery-store-background_640221-331.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-supermarket-grocery-store-background_640221-331.jpg?_wi=4",
|
||||
imageAlt: "Consumer goods and packaged products",
|
||||
},
|
||||
{
|
||||
id: "product-cat-2",
|
||||
name: "Industrial Equipment",
|
||||
price: "Custom Pricing",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-medical-elements-composition-with-copy-space_23-2148502907.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-medical-elements-composition-with-copy-space_23-2148502907.jpg?_wi=4",
|
||||
imageAlt: "Industrial equipment and machinery",
|
||||
},
|
||||
{
|
||||
id: "product-cat-3",
|
||||
name: "Specialty Products",
|
||||
price: "Bulk Discounts",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-stationary-collection-arrangement_23-2149309690.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-stationary-collection-arrangement_23-2149309690.jpg?_wi=4",
|
||||
imageAlt: "Specialty and premium products",
|
||||
},
|
||||
]}
|
||||
@@ -220,7 +220,7 @@ export default function ProductsPage() {
|
||||
content: "Our optimized distribution network with real-time tracking ensures products reach your location on time with minimal handling and maximum care.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/employees-working-warehouse_23-2148923075.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/employees-working-warehouse_23-2148923075.jpg?_wi=4"
|
||||
imageAlt="Advanced warehouse and product management"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
|
||||
Reference in New Issue
Block a user