diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 4b3147e..e8ae70b 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,58 +1,28 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Roboto } 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 halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
+const geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const roboto = Roboto({
- variable: "--font-roboto", subsets: ["latin"],
- weight: ["100", "300", "400", "500", "700", "900"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "NVG LUX Fragrances | Premium Fragrance Samples", description: "Discover luxury fragrance samples from NVG LUX. Explore curated collections of premium perfumes at affordable prices. Find your signature scent today.", keywords: "fragrance samples, luxury perfume, premium cologne, fragrance discovery, perfume samples", metadataBase: new URL("https://nvgluxfragrances.com"),
- alternates: {
- canonical: "https://nvgluxfragrances.com"},
- openGraph: {
- title: "NVG LUX Fragrances | Premium Fragrance Samples", description: "Discover luxury fragrance samples from the world's finest perfume houses. Experience premium quality at accessible prices.", url: "https://nvgluxfragrances.com", siteName: "NVG LUX Fragrances", type: "website", images: [
- {
- url: "https://nvgluxfragrances.com/og-image.jpg", alt: "NVG LUX Premium Fragrance Samples"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "NVG LUX Fragrances | Premium Fragrance Samples", description: "Discover luxury fragrance samples at NVG LUX. Premium perfumes, curated collections, and your signature scent awaits.", images: ["https://nvgluxfragrances.com/twitter-image.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "NVG LUX - Premium Fragrance Samples", description: "Discover luxury fragrances risk-free with our curated sample sets."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-