Files
2026-03-16 20:23:45 +00:00

80 lines
2.3 KiB
TypeScript

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";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
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<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}