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}
-
+
+
+
+
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 93f2253..e975680 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,4 +1,4 @@
-"use client"
+"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
@@ -46,7 +46,7 @@ export default function LandingPage() {
{ text: "Learn More", href: "#services" }
]}
background={{ variant: "plain" }}
- imageSrc="http://img.b2bpic.net/free-photo/people-having-debate-while-looking-computer_23-2149389780.jpg"
+ imageSrc="/images/hero-mentorship.jpg"
imageAlt="Mentorship and professional guidance"
frameStyle="card"
mediaAnimation="slide-up"
@@ -63,7 +63,7 @@ export default function LandingPage() {
{ value: "5.0★", title: "Customer Rating" },
{ value: "Local", title: "NH-Based Mentor" }
]}
- imageSrc="http://img.b2bpic.net/free-photo/two-businesswomen-working-cafe_1157-26377.jpg"
+ imageSrc="/images/about-mentor.jpg"
imageAlt="Professional real estate mentor"
useInvertedBackground={false}
mediaAnimation="slide-up"
@@ -97,16 +97,16 @@ export default function LandingPage() {
);
-}
\ No newline at end of file
+}