Update src/app/layout.tsx
This commit is contained in:
@@ -1,28 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Mulish } 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 { Mulish } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "StickerVala - Custom Stickers & Packaging Labels Online",
|
||||
description: "Create and order custom stickers, packaging labels, and holographic stickers online. Fast delivery, instant pricing, and premium quality. Perfect for businesses and creators.",
|
||||
keywords: "custom stickers, packaging labels, holographic stickers, sticker printing, logo stickers, vinyl stickers, online sticker design",
|
||||
metadataBase: new URL("https://stickervala.com"),
|
||||
alternates: {
|
||||
canonical: "https://stickervala.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "StickerVala - Design Your Perfect Stickers",
|
||||
description: "Create custom stickers and packaging labels with live preview. Instant pricing, fast delivery, and premium quality.",
|
||||
url: "https://stickervala.com",
|
||||
siteName: "StickerVala",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-vector/holographic-cards-pack_23-2147650106.jpg",
|
||||
alt: "StickerVala - Custom stickers and packaging",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "StickerVala - Custom Stickers",
|
||||
description: "Design and order custom stickers online with instant pricing and fast delivery.",
|
||||
images: ["http://img.b2bpic.net/free-vector/holographic-cards-pack_23-2147650106.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -31,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${mulish.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user