diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 1dfbddd..7ae8b38 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-