Update src/app/layout.tsx

This commit is contained in:
2026-03-16 20:23:45 +00:00
parent 47b22db20b
commit 9db09ef5d1

View File

@@ -1,24 +1,60 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } 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 { Figtree } 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 figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "RESELL Fashion Store | Streetwear & Designer Clothing",
description: "Shop authentic streetwear, designer clothing, and vintage fashion. Curated resell collection verified on Vinted. Premium pieces at great prices.",
keywords: "fashion resell, streetwear, vintage clothing, designer shoes, sustainable fashion, Vinted, resale",
robots: {
index: true,
follow: true,
},
metadataBase: new URL("https://resell-fashion.com"),
alternates: {
canonical: "https://resell-fashion.com",
},
openGraph: {
title: "RESELL Fashion Store",
description: "Discover curated fashion pieces and authentic streetwear from our verified Vinted store",
type: "website",
siteName: "RESELL",
images: [
{
url: "http://img.b2bpic.net/free-photo/leather-boots-shoes_1203-8161.jpg",
alt: "RESELL Fashion Store - Curated Streetwear Collection",
},
],
},
twitter: {
card: "summary_large_image",
title: "RESELL Fashion Store",
description: "Shop authentic streetwear and designer fashion",
images: ["http://img.b2bpic.net/free-photo/leather-boots-shoes_1203-8161.jpg"],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +63,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${figtree.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +77,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}