Update src/app/layout.tsx

This commit is contained in:
2026-03-12 21:22:25 +00:00
parent d18a498819
commit e5a6a811a6

View File

@@ -1,18 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Roboto } 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 { Roboto } 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 roboto = Roboto({
variable: "--font-roboto",
@@ -20,6 +24,39 @@ const roboto = Roboto({
weight: ["100", "300", "400", "500", "700", "900"],
});
export const metadata: Metadata = {
title: "Qatar Trading Company WLL | Professional Industrial Equipment Supplier",
description: "Leading industrial equipment supplier in Qatar. Professional power tools, construction machinery, and technical solutions for contractors and engineers. Bosch, Makita, DeWalt.",
keywords: "industrial equipment supplier Qatar, professional power tools, construction equipment Doha, industrial machinery Qatar, tool repair services",
metadataBase: new URL("https://qatar-trading-company.com"),
alternates: {
canonical: "https://qatar-trading-company.com",
},
openGraph: {
title: "Qatar Trading Company WLL | Industrial Equipment Supplier",
description: "Your trusted partner for professional industrial equipment and engineering solutions in Qatar.",
url: "https://qatar-trading-company.com",
siteName: "Qatar Trading Company WLL",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/pollution-concept-factory-emisions_23-2149094959.jpg",
alt: "Professional industrial equipment and machinery",
},
],
},
twitter: {
card: "summary_large_image",
title: "Qatar Trading Company WLL | Industrial Equipment Supplier",
description: "Professional industrial equipment, power tools, and technical solutions for Qatar industries.",
images: ["http://img.b2bpic.net/free-photo/pollution-concept-factory-emisions_23-2149094959.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={`${roboto.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -40,4 +79,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}