Update src/app/layout.tsx
This commit is contained in:
@@ -1,24 +1,63 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Halant } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
|
import { Manrope } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Manrope } from "next/font/google";
|
|
||||||
|
|
||||||
|
const halant = Halant({
|
||||||
|
variable: "--font-halant",
|
||||||
|
subsets: ["latin"],
|
||||||
|
weight: ["300", "400", "500", "600", "700"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const inter = Inter({
|
||||||
export const metadata: Metadata = {
|
variable: "--font-inter",
|
||||||
title: "Webild components 2",
|
subsets: ["latin"],
|
||||||
description: "Generated by create next app",
|
});
|
||||||
};
|
|
||||||
|
|
||||||
const manrope = Manrope({
|
const manrope = Manrope({
|
||||||
variable: "--font-manrope",
|
variable: "--font-manrope",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
|
export const metadata: Metadata = {
|
||||||
|
title: "Uzum Market | Online Marketplace for Electronics, Fashion, Home & More",
|
||||||
|
description: "Shop millions of products across Electronics, Fashion, Home Appliances, Food, and more on Uzum Market. Fast delivery, secure payments, and exclusive deals. Your trusted online marketplace in Central Asia.",
|
||||||
|
keywords: "online marketplace, shopping, e-commerce, electronics, fashion, home appliances, food, Uzbekistan",
|
||||||
|
metadataBase: new URL("https://uzummarket.com"),
|
||||||
|
alternates: {
|
||||||
|
canonical: "https://uzummarket.com",
|
||||||
|
},
|
||||||
|
openGraph: {
|
||||||
|
title: "Uzum Market | Central Asia's Leading Online Marketplace",
|
||||||
|
description: "Discover millions of products with fast delivery and secure payments. Shop electronics, fashion, home appliances, food, and more on Uzum Market.",
|
||||||
|
url: "https://uzummarket.com",
|
||||||
|
siteName: "Uzum Market",
|
||||||
|
type: "website",
|
||||||
|
images: [
|
||||||
|
{
|
||||||
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BFXLk9BIVZ4EdOfJDPnXCjvU6t/a-vibrant-e-commerce-marketplace-hero-ba-1774085815694-d978e246.png",
|
||||||
|
alt: "Uzum Market - Online Marketplace",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
twitter: {
|
||||||
|
card: "summary_large_image",
|
||||||
|
title: "Uzum Market | Online Marketplace",
|
||||||
|
description: "Shop millions of products with fast delivery. Electronics, Fashion, Home, Food & more.",
|
||||||
|
images: [
|
||||||
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BFXLk9BIVZ4EdOfJDPnXCjvU6t/a-vibrant-e-commerce-marketplace-hero-ba-1774085815694-d978e246.png",
|
||||||
|
],
|
||||||
|
},
|
||||||
|
robots: {
|
||||||
|
index: true,
|
||||||
|
follow: true,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: Readonly<{
|
||||||
@@ -27,7 +66,9 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${manrope.variable} antialiased`}>
|
<body
|
||||||
|
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
||||||
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
Reference in New Issue
Block a user