diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d9287c5..16f5f5b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { DM_Sans } from "next/font/google"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Good Vibes Beauty Spa & Academy - Premium Beauty Services Bangalore", description: "Luxury beauty salon & academy in Sarjapura offering facials, hair treatments, makeup, nails & professional beauty training. Book appointments online.", keywords: "beauty salon Bangalore, facial treatments, hair spa, makeup services, nail care, beauty academy, Sarjapura", metadataBase: new URL("https://goodvibesbeauty.com"), - alternates: { - canonical: "https://goodvibesbeauty.com"}, - openGraph: { - title: "Good Vibes Beauty Spa & Academy - Premium Beauty Services", description: "Experience luxury beauty and wellness at Good Vibes. Professional facials, hair treatments, makeup, and beauty training in Sarjapura.", url: "https://goodvibesbeauty.com", siteName: "Good Vibes Beauty Spa & Academy", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/side-view-woman-holding-flowers_23-2149640967.jpg", alt: "Good Vibes Beauty Spa & Academy - Premium Beauty Services"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Good Vibes Beauty Spa & Academy", description: "Premium beauty salon in Bangalore offering facials, hair treatments, makeup, and professional beauty training.", images: ["http://img.b2bpic.net/free-photo/side-view-woman-holding-flowers_23-2149640967.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Good Vibes Beauty Spa & Academy", description: "Premium beauty and wellness services in Bangalore"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +