Update src/app/layout.tsx
This commit is contained in:
@@ -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: "AG Store - Premium Dark Anime Merchandise | Pakistan's Best Otaku Shop",
|
||||
description: "Discover exclusive anime merchandise at AG Store - stickers, mystery packs, bookmarks, and posters with dark red aesthetic. Premium quality anime collectibles for Pakistani otaku community.",
|
||||
keywords: "anime merchandise Pakistan, anime stickers, mystery packs, anime posters, manga collectibles, otaku shop",
|
||||
metadataBase: new URL("https://agstore.pk"),
|
||||
alternates: {
|
||||
canonical: "https://agstore.pk",
|
||||
},
|
||||
openGraph: {
|
||||
title: "AG Store - Dark Anime Merchandise",
|
||||
description: "Your ultimate destination for premium anime collectibles in Pakistan. Explore stickers, mystery boxes, bookmarks, and exclusive anime merchandise.",
|
||||
url: "https://agstore.pk",
|
||||
siteName: "AG STORE",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/rendering-abstract-futuristic-background-with-glowing-neon-blue-orange-lights_181624-23700.jpg",
|
||||
alt: "AG Store - Dark Anime Merchandise",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "AG Store - Premium Anime Merchandise",
|
||||
description: "Shop authentic anime collectibles. Stickers, mystery packs, posters, and more with dark red aesthetic.",
|
||||
images: ["http://img.b2bpic.net/free-photo/rendering-abstract-futuristic-background-with-glowing-neon-blue-orange-lights_181624-23700.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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user