Merge version_3 into main #5

Merged
bender merged 2 commits from version_3 into main 2026-03-09 18:03:12 +00:00
2 changed files with 24 additions and 42 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
<body className={inter.className}>
<ServiceWrapper>
{children}
</ServiceWrapper>
<Tag />
<script
async
src="https://cdn.jsdelivr.net/npm/lenis@latest"
/>
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1410,7 +1393,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -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() {
<TestimonialCardTwelve
testimonials={[
{
id: "1", name: "John Willard", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1649.jpg", imageAlt: "John Willard"
id: "1", name: "John Willard", imageSrc: "/images/testimonial-john.jpg", imageAlt: "John Willard"
},
{
id: "2", name: "Kevin Fassnacht", imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-holding-hand-pocket_23-2148095771.jpg", imageAlt: "Kevin Fassnacht"
id: "2", name: "Kevin Fassnacht", imageSrc: "/images/testimonial-kevin.jpg", imageAlt: "Kevin Fassnacht"
},
{
id: "3", name: "Robert Guess", imageSrc: "http://img.b2bpic.net/free-photo/bald-man-with-beard-wearing-business-clothes-glasses-smiling-cheerful-showing-pointing-with-fingers-teeth-mouth-dental-health-concept_839833-16033.jpg", imageAlt: "Robert Guess"
id: "3", name: "Robert Guess", imageSrc: "/images/testimonial-robert.jpg", imageAlt: "Robert Guess"
},
{
id: "4", name: "Sarah Mitchell", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-as-real-estate-agent_23-2151064992.jpg", imageAlt: "Sarah Mitchell"
id: "4", name: "Sarah Mitchell", imageSrc: "/images/testimonial-sarah.jpg", imageAlt: "Sarah Mitchell"
}
]}
cardTitle="Trusted by real estate professionals building successful careers in New Hampshire"
@@ -130,7 +130,7 @@ export default function LandingPage() {
required: true
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/man-talking-women-office_23-2147727722.jpg"
imageSrc="/images/contact-consultation.jpg"
imageAlt="Professional mentorship consultation"
mediaAnimation="slide-up"
mediaPosition="right"
@@ -175,4 +175,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}