diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 48f0838..200fda7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Mo's Beautiful - Professional Hair & Beauty Salon Krugersdorp", description: "Professional braids, locs, weave installs, sew-ins, and makeup in Krugersdorp. 5-star salon in Munsieville. Book appointments on WhatsApp or call 071 643 3346.", keywords: "hair salon Krugersdorp, professional braids, weave installation, hair styling, makeup services, Munsieville salon", metadataBase: new URL("https://mosbeautiful.com"), - alternates: { - canonical: "https://mosbeautiful.com"}, - openGraph: { - title: "Mo's Beautiful - Krugersdorp's Trusted Hair & Beauty Salon", description: "Professional hair and beauty services including braids, locs, weave installs, and makeup. Open until 8 PM daily.", url: "https://mosbeautiful.com", siteName: "Mo's Beautiful Salon", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/beauty-black-woman-portrait-closeup-short-haircut-softlight_633478-855.jpg", alt: "Beautiful professional braids at Mo's Beautiful"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Mo's Beautiful - Professional Hair Salon", description: "Professional braids, locs, weave installs, and makeup in Krugersdorp.", images: [ - "http://img.b2bpic.net/free-photo/beauty-black-woman-portrait-closeup-short-haircut-softlight_633478-855.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Mo's Beautiful - Hair & Beauty Salon Krugersdorp", description: "Professional braids, locs, weave installs, sew-ins, and makeup services in Krugersdorp"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}