Switch to version 1: modified src/app/layout.tsx

This commit is contained in:
2026-03-03 22:44:53 +00:00
parent 45c5427fb9
commit e7efde0c3d

View File

@@ -1,20 +1,64 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const inter = Inter({ subsets: ["latin"] });
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "HANGOVER - Bold Streetwear for the Fearless", description: "Premium quality streetwear designed for those who live fearlessly. Shop authentic styles with Cash on Delivery in Morocco."};
title: "HANGOVER - Bold Streetwear Fashion | Cash on Delivery", description: "Premium streetwear brand HANGOVER offers authentic jeans, hoodies, t-shirts & accessories. Shop now with Cash on Delivery in Morocco. Fast shipping, quality guaranteed.", keywords: "streetwear, clothing brand, jeans, hoodies, t-shirts, Morocco, cash on delivery, fashion", metadataBase: new URL("https://hangover.store"),
alternates: {
canonical: "https://hangover.store"
},
openGraph: {
title: "HANGOVER - Bold Streetwear Fashion", description: "Premium streetwear designed for those who live fearlessly.", url: "https://hangover.store", siteName: "HANGOVER", type: "website", images: [
{
url: "https://hangover.store/og-image.jpg", alt: "HANGOVER Streetwear Collection"
}
]
},
twitter: {
card: "summary_large_image", title: "HANGOVER - Bold Streetwear Fashion", description: "Premium streetwear designed for those who live fearlessly.", images: ["https://hangover.store/twitter-image.jpg"]
},
robots: {
index: true,
follow: true
}
};
export default function RootLayout({
children,
}: {
}: Readonly<{
children: React.ReactNode;
}) {
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1382,6 +1426,7 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}