Update src/app/layout.tsx

This commit is contained in:
2026-03-26 02:02:18 +00:00
parent 155489ba9e
commit 0b51498967

View File

@@ -1,5 +1,5 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
<div class="code-block"><pre><code class="language-tsx">import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
@@ -7,20 +7,30 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
title: "Stickeropia | High-Quality Custom Stickers & Decals", description: "Discover durable, vibrant, and uniquely designed high-quality stickers for every passion. Personalize your world with Stickeropia's premium vinyl decals.", keywords: "stickers, custom stickers, vinyl decals, high quality stickers, sticker shop, personalized stickers, durable stickers, waterproof stickers", openGraph: {
title: "Stickeropia | High-Quality Custom Stickers & Decals", description: "Discover durable, vibrant, and uniquely designed high-quality stickers for every passion. Personalize your world with Stickeropia's premium vinyl decals.", url: "https://www.stickeropia.com", siteName: "Stickeropia", images: [
{
url: "http://img.b2bpic.net/free-photo/young-woman-smiling-while-posing_176474-95622.jpg", alt: "Collection of vibrant stickers"
}
],
type: "website"
},
twitter: {
card: "summary_large_image", title: "Stickeropia | High-Quality Custom Stickers & Decals", description: "Discover durable, vibrant, and uniquely designed high-quality stickers for every passion. Personalize your world with Stickeropia's premium vinyl decals.", images: ["http://img.b2bpic.net/free-photo/young-woman-smiling-while-posing_176474-95622.jpg"]
},
robots: {
index: true,
follow: true
}
};
export default function RootLayout({
@@ -32,7 +42,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
@@ -46,3 +56,4 @@ export default function RootLayout({
</html>
);
}
</code></pre></div>