Update src/app/layout.tsx

This commit is contained in:
2026-03-04 05:30:04 +00:00
parent afcf0ba939
commit 423cd8c769

View File

@@ -1,50 +1,20 @@
import type { Metadata } from "next";
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 halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Icehouse Supply | Premium Moissanite Jewelry", description: "Shop luxury moissanite earrings, cuban bracelets, tennis bracelets, and chains. Premium quality jewelry for streetwear and luxury enthusiasts.", keywords: "moissanite jewelry, luxury jewelry, diamond alternatives, cuban bracelet, tennis bracelet, moissanite earrings", openGraph: {
title: "Icehouse Supply | Premium Moissanite Jewelry", description: "Discover our curated collection of moissanite jewelry designed for the luxury enthusiast.", type: "website", siteName: "Icehouse Supply", images: [
{
url: "http://img.b2bpic.net/free-photo/portrait-european-woman-wedding-dress-wearing-necklace-ring_343596-847.jpg", alt: "Icehouse Supply moissanite jewelry"
}
]
},
twitter: {
card: "summary_large_image", title: "Icehouse Supply | Premium Moissanite Jewelry", description: "Shop luxury moissanite jewelry for streetwear and designer enthusiasts.", images: ["http://img.b2bpic.net/free-photo/portrait-european-woman-wedding-dress-wearing-necklace-ring_343596-847.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Icehouse Supply - Premium Moissanite Jewelry", description: "Discover premium moissanite jewelry crafted for luxury enthusiasts. Lab-Certified • 30-Day Money Back • Free Shipping."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1412,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}