From 43d64810366b1c6d2ad8a29c9f343573954f9aae Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 18:24:34 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index eeeddcb..f8fa99e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,14 +1,11 @@ import type { Metadata } from "next"; -import { Outfit } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -const outfit = Outfit({ - variable: "--font-outfit", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Sakura Beauty - Korean & Japanese Beauty Products in Perth", description: "Perth's trusted destination for authentic Korean & Japanese skincare, makeup & viral beauty brands. Visit our Northbridge store today."}; + title: "Sakura Beauty - Perth's Premium Korean & Japanese Beauty Store", description: "Discover authentic Korean and Japanese skincare, makeup & beauty products at Sakura Beauty in Northbridge, Perth. Expert staff, verified authentic products, and viral K-beauty trends."}; export default function RootLayout({ children, @@ -17,9 +14,7 @@ export default function RootLayout({ }) { return ( - - {children} - + {children}