From 958e668bba6be27a81a8ab7491aea37142681622 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 19:01:57 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 44 ++++++++++++-------------------------------- 1 file changed, 12 insertions(+), 32 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 205a154..bf7d3ab 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,47 +1,28 @@ import type { Metadata } from "next"; -import { Raleway } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-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"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Derma | Nordic Luxury Skincare | Clean Beauty Science", description: "Discover transformative Nordic skincare. Derma combines Scandinavian purity with cutting-edge dermatology. Clean, clinically tested, sustainably crafted for affluent conscious consumers.", keywords: "luxury skincare, Nordic beauty, clean skincare, dermatology, sustainable beauty, premium skincare, skincare science", openGraph: { - title: "Derma | Nordic Luxury Skincare Meets Scientific Innovation", description: "Experience transformative skincare rooted in Nordic excellence and dermatological science.", siteName: "Derma", type: "website"}, - robots: { - index: true, - follow: true, - }, -}; + title: "Derma | Nordic Science Meets Minimalist Luxury", description: "Luxury Scandinavian skincare combining Nordic botanicals, clinical testing, and sustainability."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +