Update src/app/layout.tsx

This commit is contained in:
2026-03-07 18:06:06 +00:00
parent 04efbd8b5b
commit ec2b330791

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } 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 nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Woline LLC - Premium Quality Shoes & Footwear", description: "Discover Woline LLC's exclusive collection of premium shoes. High-quality, comfortable, and sustainable footwear for every lifestyle and occasion.", keywords: "shoes, footwear, premium shoes, comfortable shoes, sustainable shoes, athletic shoes, casual shoes, dress shoes", openGraph: {
title: "Woline LLC - Premium Quality Shoes & Footwear", description: "Discover Woline LLC's exclusive collection of premium shoes. Comfort, style, and sustainability in every pair.", siteName: "Woline LLC", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/close-up-feet-smartphone-ground_23-2148876519.jpg", alt: "Woline LLC Premium Shoes Collection"},
],
},
twitter: {
card: "summary_large_image", title: "Woline LLC - Premium Quality Shoes", description: "Discover our exclusive collection of premium footwear designed for comfort and style.", images: ["http://img.b2bpic.net/free-photo/close-up-feet-smartphone-ground_23-2148876519.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Woline LLC - Premium Footwear", description: "Discover Woline LLC's exclusive collection of high-quality shoes designed with comfort, style, and sustainability in mind."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}