Merge version_1 into main #1
@@ -96,21 +96,21 @@ export default function AboutPage() {
|
||||
id: "integrity",
|
||||
title: "Integrity & Accountability",
|
||||
description: "Upholding honesty, responsibility, and transparency in all business operations and partnerships.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-executives-shaking-hands_107420-65770.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-executives-shaking-hands_107420-65770.jpg?_wi=1",
|
||||
imageAlt: "Integrity and accountability",
|
||||
},
|
||||
{
|
||||
id: "respect",
|
||||
title: "Respect & Collaboration",
|
||||
description: "Respecting partners, employees, and clients across diverse regions while fostering strong teamwork.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-young-business-people-have-talk-coffee-break-office_93675-134577.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-young-business-people-have-talk-coffee-break-office_93675-134577.jpg?_wi=1",
|
||||
imageAlt: "Respect and collaboration",
|
||||
},
|
||||
{
|
||||
id: "innovation",
|
||||
title: "Innovation & Excellence",
|
||||
description: "Embracing new ideas and technologies to improve operations, service quality, and customer satisfaction.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-medical-researchers-discussing-about-vaccine-development-standing-equipped-lab-pointing-tablet-taking-notes_482257-512.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-medical-researchers-discussing-about-vaccine-development-standing-equipped-lab-pointing-tablet-taking-notes_482257-512.jpg?_wi=1",
|
||||
imageAlt: "Innovation and technology",
|
||||
},
|
||||
{
|
||||
@@ -158,21 +158,21 @@ export default function AboutPage() {
|
||||
id: "director-1",
|
||||
name: "Ahmed Al Mansouri",
|
||||
role: "Chief Executive Officer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hotel-receptionist-work_23-2149661537.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hotel-receptionist-work_23-2149661537.jpg?_wi=1",
|
||||
imageAlt: "Ahmed Al Mansouri, CEO",
|
||||
},
|
||||
{
|
||||
id: "director-2",
|
||||
name: "Fatima Al Zahrani",
|
||||
role: "Chief Operations Officer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-middle-aged-businesswoman_74855-1573.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-middle-aged-businesswoman_74855-1573.jpg?_wi=1",
|
||||
imageAlt: "Fatima Al Zahrani, COO",
|
||||
},
|
||||
{
|
||||
id: "director-3",
|
||||
name: "Mohammed Al Qassimi",
|
||||
role: "Head of Sales & Business Development",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg?_wi=1",
|
||||
imageAlt: "Mohammed Al Qassimi, Head of Sales",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -137,7 +137,7 @@ export default function ContactPage() {
|
||||
name: "Ahmed Al Mansouri",
|
||||
role: "Chief Executive Officer",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/hotel-receptionist-work_23-2149661537.jpg",
|
||||
"http://img.b2bpic.net/free-photo/hotel-receptionist-work_23-2149661537.jpg?_wi=2",
|
||||
imageAlt: "Ahmed Al Mansouri, CEO",
|
||||
},
|
||||
{
|
||||
@@ -145,7 +145,7 @@ export default function ContactPage() {
|
||||
name: "Fatima Al Zahrani",
|
||||
role: "Chief Operations Officer",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/confident-middle-aged-businesswoman_74855-1573.jpg",
|
||||
"http://img.b2bpic.net/free-photo/confident-middle-aged-businesswoman_74855-1573.jpg?_wi=2",
|
||||
imageAlt: "Fatima Al Zahrani, COO",
|
||||
},
|
||||
{
|
||||
@@ -153,7 +153,7 @@ export default function ContactPage() {
|
||||
name: "Mohammed Al Qassimi",
|
||||
role: "Head of Sales & Business Development",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg",
|
||||
"http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg?_wi=2",
|
||||
imageAlt: "Mohammed Al Qassimi, Head of Sales",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,18 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Inter_Tight } 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 { Inter_Tight } 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 interTight = Inter_Tight({
|
||||
variable: "--font-inter-tight",
|
||||
@@ -20,6 +24,39 @@ const interTight = Inter_Tight({
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Dimalex Trading - Chemical Supplier Dubai UAE",
|
||||
description: "Reliable industrial chemical trading company in Dubai. Distribution of specialty and industrial chemicals across the Middle East with professional B2B services.",
|
||||
keywords: "chemical supplier Dubai, industrial chemicals UAE, chemical trading company, specialty chemicals Middle East, chemical distribution",
|
||||
metadataBase: new URL("https://dimalex-trading.ae"),
|
||||
alternates: {
|
||||
canonical: "https://dimalex-trading.ae",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Dimalex Trading - Your Trusted Chemical Partner",
|
||||
description: "Premium chemical distribution and supply solutions for industries across the Middle East.",
|
||||
url: "https://dimalex-trading.ae",
|
||||
siteName: "Dimalex Trading",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/pollution-industry-exterior-daylight_23-2149057673.jpg",
|
||||
alt: "Dimalex Trading industrial operations",
|
||||
},
|
||||
],
|
||||
type: "website",
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Dimalex Trading - Chemical Supplier",
|
||||
description: "Reliable partner in industrial chemical distribution",
|
||||
images: ["http://img.b2bpic.net/free-photo/pollution-industry-exterior-daylight_23-2149057673.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -28,7 +65,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${interTight.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +79,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -139,7 +139,7 @@ export default function HomePage() {
|
||||
name: "Industrial Chemicals",
|
||||
price: "Competitive Pricing",
|
||||
variant: "Bulk Distribution",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aluminum-barrel-beer-kegs_1398-2209.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aluminum-barrel-beer-kegs_1398-2209.jpg?_wi=1",
|
||||
imageAlt: "Industrial chemical containers",
|
||||
},
|
||||
{
|
||||
@@ -147,7 +147,7 @@ export default function HomePage() {
|
||||
name: "Specialty Chemicals",
|
||||
price: "Premium Grade",
|
||||
variant: "Custom Solutions",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-volunteer-oganizing-stuff-donation_23-2149134483.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-volunteer-oganizing-stuff-donation_23-2149134483.jpg?_wi=1",
|
||||
imageAlt: "Specialty chemical formulations",
|
||||
},
|
||||
{
|
||||
@@ -155,7 +155,7 @@ export default function HomePage() {
|
||||
name: "Distribution Services",
|
||||
price: "Flexible Terms",
|
||||
variant: "Global Reach",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-logistic-worker-hardhat-uniform-walking-warehouse-wheeling-palette-jack-back-view-full-length-labor-logistics-concept_74855-14263.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-logistic-worker-hardhat-uniform-walking-warehouse-wheeling-palette-jack-back-view-full-length-labor-logistics-concept_74855-14263.jpg?_wi=1",
|
||||
imageAlt: "Chemical distribution logistics",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -128,7 +128,7 @@ export default function ServicesPage() {
|
||||
price: "Competitive Pricing",
|
||||
variant: "Bulk Distribution",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/aluminum-barrel-beer-kegs_1398-2209.jpg",
|
||||
"http://img.b2bpic.net/free-photo/aluminum-barrel-beer-kegs_1398-2209.jpg?_wi=2",
|
||||
imageAlt: "Industrial chemical containers",
|
||||
},
|
||||
{
|
||||
@@ -137,7 +137,7 @@ export default function ServicesPage() {
|
||||
price: "Premium Grade",
|
||||
variant: "Custom Solutions",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/close-up-volunteer-oganizing-stuff-donation_23-2149134483.jpg",
|
||||
"http://img.b2bpic.net/free-photo/close-up-volunteer-oganizing-stuff-donation_23-2149134483.jpg?_wi=2",
|
||||
imageAlt: "Specialty chemical bottles laboratory",
|
||||
},
|
||||
{
|
||||
@@ -146,7 +146,7 @@ export default function ServicesPage() {
|
||||
price: "Flexible Terms",
|
||||
variant: "Global Reach",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/senior-logistic-worker-hardhat-uniform-walking-warehouse-wheeling-palette-jack-back-view-full-length-labor-logistics-concept_74855-14263.jpg",
|
||||
"http://img.b2bpic.net/free-photo/senior-logistic-worker-hardhat-uniform-walking-warehouse-wheeling-palette-jack-back-view-full-length-labor-logistics-concept_74855-14263.jpg?_wi=2",
|
||||
imageAlt: "logistics distribution center warehouse",
|
||||
},
|
||||
]}
|
||||
@@ -174,7 +174,7 @@ export default function ServicesPage() {
|
||||
description:
|
||||
"Upholding honesty, responsibility, and transparency in all business operations and partnerships.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/business-executives-shaking-hands_107420-65770.jpg",
|
||||
"http://img.b2bpic.net/free-photo/business-executives-shaking-hands_107420-65770.jpg?_wi=2",
|
||||
imageAlt: "business ethics integrity handshake",
|
||||
},
|
||||
{
|
||||
@@ -183,7 +183,7 @@ export default function ServicesPage() {
|
||||
description:
|
||||
"Respecting partners, employees, and clients across diverse regions while fostering strong teamwork.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/cheerful-young-business-people-have-talk-coffee-break-office_93675-134577.jpg",
|
||||
"http://img.b2bpic.net/free-photo/cheerful-young-business-people-have-talk-coffee-break-office_93675-134577.jpg?_wi=2",
|
||||
imageAlt: "diverse team collaboration meeting",
|
||||
},
|
||||
{
|
||||
@@ -192,7 +192,7 @@ export default function ServicesPage() {
|
||||
description:
|
||||
"Embracing new ideas and technologies to improve operations, service quality, and customer satisfaction.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/group-medical-researchers-discussing-about-vaccine-development-standing-equipped-lab-pointing-tablet-taking-notes_482257-512.jpg",
|
||||
"http://img.b2bpic.net/free-photo/group-medical-researchers-discussing-about-vaccine-development-standing-equipped-lab-pointing-tablet-taking-notes_482257-512.jpg?_wi=2",
|
||||
imageAlt: "technology innovation laboratory",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user