diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 3b0980f..8824ffb 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,48 +1,20 @@
import type { Metadata } from "next";
-import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const dmSans = DM_Sans({
- variable: "--font-dm-sans", subsets: ["latin"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Essence Luxe | Famous Perfumes & Luxury Fragrances", description: "Discover the world's most famous perfumes from Dior, Chanel, Gucci & more. Authentic luxury fragrances curated for fragrance enthusiasts.", keywords: "luxury perfumes, famous fragrances, designer scents, fragrance collection", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Essence Luxe | Luxury Perfume Collection", description: "Explore iconic fragrances from the world's most prestigious perfume houses", type: "website", siteName: "Essence Luxe", images: [
- {
- url: "http://img.b2bpic.net/free-photo/closeup-shot-beautifully-shaped-glass-bottles-filled-with-perfume_181624-28370.jpg", alt: "Essence Luxe Perfume Collection"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Discover Famous Perfumes at Essence Luxe", description: "Luxury fragrances from Dior, Chanel, Gucci and more", images: ["http://img.b2bpic.net/free-photo/closeup-shot-beautifully-shaped-glass-bottles-filled-with-perfume_181624-28370.jpg"],
- },
-};
+ title: "Essence Luxe - Premium Perfumes", description: "Discover the world's most famous perfumes and luxury fragrances"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-