@@ -1,60 +1,23 @@
import type { Metadata } from "next" ;
import { Public_Sa ns } from "next/font/google" ;
import { Halant } from "next/font/google" ;
import { Inter } from "next/font/google" ;
import { Poppi ns } from "next/font/google" ;
import "./globals.css" ;
import { ServiceWrapper } from "@/components/ServiceWrapper" ;
import Tag from "@/tag/Tag" ;
const publicSa ns = Public_Sa ns ( {
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 poppi ns = Poppi ns ( {
subsets : [ "latin" ] ,
weight : [ "100" , "200" , "300" , "400" , "500" , "600" , "700" , "800" , "900" ] ,
} ) ;
export const metadata : Metadata = {
title : "Studio J Hair Lounge Laval | Balayage & Hair Extension s" , description : "Trusted hair salon in Laval. Expert balayage, color, e xtensions & 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 Expert s" , description : "Color, Balayage & E xtensions – Rated 4.7★ by 76+ Happy Clients " } ;
export default function RootLayout ( {
children ,
} : Readonly < {
} : {
children : React.ReactNode ;
} > ) {
} ) {
return (
< html lang = "en" suppressHydrationWarning >
< ServiceWrapper >
< body
className = { ` ${ publicSans . variable } ${ halant . variable } ${ inter . variable } antialiased ` }
>
< Tag / >
{ children }
< html lang = "en" >
< body className = { poppins . className } > { children }
< script
dangerouslySetInnerHTML = { {
__html : `
@@ -1422,7 +1385,6 @@ export default function RootLayout({
} }
/ >
< / body >
< / ServiceWrapper >
< / html >
) ;
}