From a3f56d5cef9280570ae95027d72c135b1ff7f751 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:10:36 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 56 ++++++++-------------------------------------- 1 file changed, 9 insertions(+), 47 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a47b03d..701fbc3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,60 +1,23 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-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 poppins = Poppins({ + subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Studio J Hair Lounge Laval | Balayage & Hair Extensions", description: "Trusted hair salon in Laval. Expert balayage, color, extensions & more. Rated 4.7★ by 76+ clients. Call (450) 661-7070 to book.", keywords: "salon de coiffure Laval, balayage Laval, extensions cheveux Laval, coiffeur professionnel", metadataBase: new URL("https://studiojhairlaval.com"), - alternates: { - canonical: "https://studiojhairlaval.com" - }, - openGraph: { - title: "Studio J Hair Lounge | Laval's Trusted Hair Experts", description: "Premium hair salon offering balayage, color, extensions & styling. Rated 4.7★. Book your transformation today.", url: "https://studiojhairlaval.com", siteName: "Studio J Hair Lounge", images: [ - { - url: "http://img.b2bpic.net/free-photo/skies-snowboard-lounge-area_482257-76730.jpg", alt: "Studio J Hair Lounge salon" - } - ], - type: "website" - }, - twitter: { - card: "summary_large_image", title: "Studio J Hair Lounge | Premium Hair Services in Laval", description: "Expert stylists. Premium products. Affordable luxury. Book your appointment today.", images: ["http://img.b2bpic.net/free-photo/skies-snowboard-lounge-area_482257-76730.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Studio J Hair Salon - Laval's Trusted Hair Experts", description: "Color, Balayage & Extensions – Rated 4.7★ by 76+ Happy Clients"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}