From 14114e7524c8e1a843be7ecd6e49ba3557bf23c3 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 13:19:33 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b4ba79e..f192545 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,19 @@ import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; +import { Poppins } from "next/font/google"; import { DM_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - export const metadata: Metadata = { title: "WNIKELS | Luxury Fragrance & Premium Perfumes", description: "Discover WNIKELS luxury fragrances. Premium perfumes crafted by master artisans with 100% natural ingredients. Timeless elegance in every essence.", keywords: "luxury perfume, premium fragrance, designer fragrance, luxury scent, artisan perfume, WNIKELS", openGraph: { title: "WNIKELS | Luxury Fragrance & Premium Perfumes", description: "Experience the pinnacle of fragrance artistry. Discover WNIKELS luxury perfumes crafted with precision and passion.", siteName: "WNIKELS", type: "website", images: [ @@ -49,7 +39,7 @@ export default function RootLayout({ {children}