From 75f344b3cd366c99161de34a43d59b31716d6c4c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 10:04:43 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 53 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 44 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..348b26d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}