diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 7d00882..90d9669 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,58 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Poppins } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "@/styles/globals.css";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const poppins = Poppins({
- variable: "--font-poppins", subsets: ["latin"],
- weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Lumière Jewellery - Luxury Handcrafted Pieces", description: "Discover exquisite luxury jewellery collections from Lumière. Handcrafted diamonds, engagement rings, and timeless pieces since 1995.", keywords: "luxury jewellery, handcrafted jewelry, diamond rings, engagement rings, fine jewels, custom design", metadataBase: new URL("https://lumiere-jewels.com"),
- alternates: {
- canonical: "https://lumiere-jewels.com"},
- openGraph: {
- title: "Lumière Jewellery - Luxury Handcrafted Pieces", description: "Discover exquisite luxury jewellery collections. Handcrafted diamonds and timeless pieces.", url: "https://lumiere-jewels.com", siteName: "Lumière Jewellery", images: [
- {
- url: "http://img.b2bpic.net/free-photo/side-view-silver-bracelets-with-diamonds-black-wall_140725-12838.jpg", alt: "Luxury jewellery collection"},
- ],
- type: "website"},
- twitter: {
- card: "summary_large_image", title: "Lumière Jewellery - Luxury Handcrafted Pieces", description: "Discover exquisite luxury jewellery collections and timeless pieces.", images: ["http://img.b2bpic.net/free-photo/side-view-silver-bracelets-with-diamonds-black-wall_140725-12838.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Lumière - Luxury Jewellery", description: "Discover timeless elegance with our exquisite collection of luxury jewellery, handcrafted with precision and passion."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-