From f6ccc232d8950954114d33239262fa35b80a68f1 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 21:21:16 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0f8954e..4b0b49a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } 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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Essência - Premium Luxury Fragrances", description: "Discover exceptional luxury fragrances crafted with precision. Explore our signature collection of premium perfumes for the discerning customer.", keywords: "luxury perfume, fragrance, eau de parfum, premium scents, designer fragrances", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Essência - Premium Luxury Fragrances", description: "Experience luxury fragrances crafted with passion and precision.", type: "website", siteName: "Essência", images: [ - { - url: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337695.jpg", alt: "luxury perfume bottle elegant background"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Essência - Premium Luxury Fragrances", description: "Discover exceptional luxury fragrances crafted with precision.", images: ["http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337695.jpg"], - }, -}; + title: "Essência - Premium Fragrances", description: "Discover timeless elegance with Essência's luxury fragrances crafted with precision and passion."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}