diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 693da77..ceecad9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,31 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/providers/service/ServiceWrapper"; +import { Tag } from "@/components/common/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Real Estate Mentorship | Home Masters Mentoring - Derry, NH", description: "Get personalized real estate mentorship from experienced mentor in Derry, New Hampshire. Career guidance, sales strategies, and accountability for aspiring and new agents.", keywords: "real estate mentoring, real estate coaching, career guidance, New Hampshire, Derry", metadataBase: new URL("https://homemasters.com"), - alternates: { - canonical: "https://homemasters.com"}, - openGraph: { - title: "Real Estate Mentorship | Home Masters Mentoring", description: "Build a successful real estate career with personalized mentorship and proven strategies.", url: "https://homemasters.com", siteName: "Home Masters Mentoring", type: "website"}, - twitter: { - card: "summary_large_image", title: "Real Estate Mentorship | Home Masters Mentoring", description: "Get personalized real estate mentorship in New Hampshire"}, -}; + title: "Home Masters Mentoring", description: "Build a successful real estate career with personalized mentorship and proven strategies from an experienced mentor in New Hampshire."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - + + {children} - + + +