Update src/app/layout.tsx

This commit is contained in:
2026-03-05 13:36:20 +00:00
parent 2508ef66ed
commit 8d2c22d180

View File

@@ -1,58 +1,23 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
import type { Metadata } from 'next';
import { GeistSans } from 'geist/font/sans';
import { GeistMono } from 'geist/font/mono';
import './globals.css';
export const metadata: Metadata = {
title: "StyleHub - Premium Clothing & Fashion", description: "Discover curated collections of premium clothing for every style. Shop sustainable fashion with expert styling advice and easy returns.", keywords: "clothing, fashion, apparel, online shopping, premium quality, sustainable fashion, style", metadataBase: new URL("https://stylehub.example.com"),
alternates: {
canonical: "https://stylehub.example.com"},
openGraph: {
title: "StyleHub - Your Personal Fashion Destination", description: "Discover curated collections of premium clothing designed for every occasion. Express your unique style.", url: "https://stylehub.example.com", siteName: "StyleHub", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/woman-walking-white-blouse-terracotta-pants-minimalist-setting_24972-2967.jpg", alt: "StyleHub - Premium Clothing Collection"},
],
},
twitter: {
card: "summary_large_image", title: "StyleHub - Premium Clothing", description: "Discover curated fashion collections for every style", images: [
"http://img.b2bpic.net/free-photo/woman-walking-white-blouse-terracotta-pants-minimalist-setting_24972-2967.jpg"],
},
robots: {
index: true,
follow: true,
},
title: 'StyleHub - Premium Fashion Collection',
description: 'Discover premium quality clothing designed for every occasion. From timeless classics to trendy essentials, find your signature look.',
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${GeistSans.variable} ${GeistMono.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}