diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1d8f879..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,28 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Luminara | Lab-Grown Diamonds & Luxury Jewelry", description: "Discover brilliant, ethically-sourced lab-grown diamonds and luxury jewelry. IGI certified, 40% less carbon, conflict-free. Shop stunning collections today.", keywords: "lab-grown diamonds, lab diamonds, ethical jewelry, sustainable diamonds, luxury rings, engagement rings, diamond necklace", metadataBase: new URL("https://luminara.jewelry"), - alternates: { - canonical: "https://luminara.jewelry" - }, - openGraph: { - title: "Luminara | Luxury Lab-Grown Diamonds", description: "Brilliant lab-grown diamonds that are ethical, sustainable, and beautifully affordable. Discover luxury redefined.", url: "https://luminara.jewelry", siteName: "Luminara", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/high-angle-wedding-ring-cloth_23-2148966235.jpg", alt: "Luminara luxury lab-grown diamond engagement ring" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Luminara | Luxury Lab-Grown Diamonds", description: "Ethically beautiful. Environmentally responsible. Brilliantly affordable.", images: ["http://img.b2bpic.net/free-photo/high-angle-wedding-ring-cloth_23-2148966235.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +