From cb0954e0d21ee422e5387d4163fba1d3a93a9b79 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 14:53:51 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 226781f..b0a5a90 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Mulish } 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 mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "ESSENCE | Luxury Fragrances & Premium Perfumes", description: "Discover ESSENCE luxury fragrances crafted with the finest ingredients. Premium perfumes for the discerning. Explore our collections today.", keywords: "luxury perfume, fragrance, premium scent, eau de parfum, fragrance collection", metadataBase: new URL("https://essence-fragrances.com"), - alternates: { - canonical: "https://essence-fragrances.com"}, - openGraph: { - title: "ESSENCE | Luxury Fragrances", description: "Luxury fragrances crafted with the finest ingredients.", url: "https://essence-fragrances.com", siteName: "ESSENCE Fragrances", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/front-view-argan-oil-arrangement_23-2148955757.jpg", alt: "ESSENCE Luxury Perfume"}, - ], - }, - twitter: { - card: "summary_large_image", title: "ESSENCE | Luxury Fragrances", description: "Discover premium fragrances crafted with elegance.", images: ["http://img.b2bpic.net/free-photo/front-view-argan-oil-arrangement_23-2148955757.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "ESSENCE - Luxury Fragrances", description: "Discover your signature scent with ESSENCE premium fragrances"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}