diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9a89dfd..eeeddcb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,25 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Mulish } from "next/font/google"; +import { Outfit } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], +const outfit = Outfit({ + variable: "--font-outfit", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Sakura Beauty Perth – Authentic Korean & Japanese Cosmetics", description: "Perth's trusted destination for authentic Korean & Japanese skincare and beauty products. Curated K-beauty and J-beauty brands. Visit us in Northbridge today. 4.6⭐ rated.", keywords: "Korean skincare Perth, Japanese cosmetics Perth, K-beauty Perth, J-beauty Australia, authentic Korean products, COSRX Perth, Laneige Perth", metadataBase: new URL("https://sakurabeauty.com.au"), - alternates: { - canonical: "https://sakurabeauty.com.au"}, - openGraph: { - title: "Sakura Beauty Perth – Authentic Korean & Japanese Cosmetics", description: "Discover curated authentic Korean and Japanese beauty products at Sakura Beauty in Northbridge, Perth. Expert guidance for all skin types.", url: "https://sakurabeauty.com.au", siteName: "Sakura Beauty", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/composition-bathroom-spa-objects_23-2147999920.jpg", alt: "Sakura Beauty premium skincare products"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Sakura Beauty Perth – Korean & Japanese Beauty", description: "Authentic K-beauty & J-beauty in Northbridge. Visit us today.", images: ["http://img.b2bpic.net/free-photo/composition-bathroom-spa-objects_23-2147999920.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + 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."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +