From 0ae575adb25c368d75b192efec5e04039d69a6dc Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 04:56:23 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d43dc95..f27c354 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,11 @@ import type { Metadata } from "next"; +import { Inter } from "next/font/google"; import "./globals.css"; +const inter = Inter({ subsets: ["latin"] }); + export const metadata: Metadata = { - title: "BeautyGlow - Premium Skincare Products", description: "Discover premium beauty care products for every skin type. Cruelty-free, natural ingredients, dermatologist tested."}; + title: "BeautyGlow - Premium Beauty Care Products", description: "Discover our carefully curated collection of skincare essentials designed to transform your beauty routine."}; export default function RootLayout({ children, @@ -11,7 +14,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}