Update src/app/layout.tsx

This commit is contained in:
2026-03-11 07:08:59 +00:00
parent eb85d91464
commit edede9697b

View File

@@ -1,27 +1,60 @@
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"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "AmazonUAE - Online Shopping in UAE | Best Prices & Fast Delivery",
description: "Shop millions of products on AmazonUAE - electronics, fashion, home & garden, and more. Secure checkout, fast delivery, and authentic sellers across UAE.",
keywords: "online shopping UAE, e-commerce, buy online, fast delivery, electronics, fashion, home decor, best prices",
metadataBase: new URL("https://amazonuae.com"),
alternates: {
canonical: "https://amazonuae.com",
},
openGraph: {
title: "AmazonUAE - Your Complete Online Marketplace",
description: "Discover millions of verified products with secure checkout and fast delivery across UAE.",
url: "https://amazonuae.com",
siteName: "AmazonUAE",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-psd/kitchen-utensils-furniture-landing-page_197582-342.jpg",
alt: "AmazonUAE - Premium online marketplace",
},
],
},
twitter: {
card: "summary_large_image",
title: "AmazonUAE - Shop Millions of Products",
description: "Fast delivery, best prices, and authentic sellers. Shop now on AmazonUAE.",
images: ["http://img.b2bpic.net/free-psd/kitchen-utensils-furniture-landing-page_197582-342.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
@@ -31,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}