Merge version_2 into main #2

Merged
bender merged 3 commits from version_2 into main 2026-03-05 22:25:51 +00:00
3 changed files with 18 additions and 19 deletions

View File

@@ -1,29 +1,26 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Poppins } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } 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 poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "David Azizi | Real Estate Excellence & Proven Results", description: "Luxury residential and investment property specialist with 15+ years of experience. Expert real estate agent trusted by hundreds of satisfied clients.", keywords: "real estate agent, luxury homes, investment properties, residential real estate, property specialist", openGraph: {
title: "David Azizi | Real Estate Excellence & Proven Results", description: "Luxury residential and investment property specialist with 15+ years of experience. Trusted by hundreds of satisfied clients.", siteName: "David Azizi Real Estate", type: "website"},
title: "David Azizi | Real Estate Excellence & Proven Results", description: "Luxury residential and investment property specialist with 15+ years of experience. Expert real estate agent trusted by hundreds of satisfied clients. Remax agent serving the market.", keywords: "real estate agent, luxury homes, investment properties, residential real estate, property specialist, Remax", openGraph: {
title: "David Azizi | Real Estate Excellence & Proven Results", description: "Luxury residential and investment property specialist with 15+ years of experience. Trusted by hundreds of satisfied clients.", siteName: "David Azizi Real Estate", type: "website"
},
twitter: {
card: "summary_large_image", title: "David Azizi | Real Estate Excellence & Proven Results", description: "Luxury residential and investment property specialist with 15+ years of experience."},
card: "summary_large_image", title: "David Azizi | Real Estate Excellence & Proven Results", description: "Luxury residential and investment property specialist with 15+ years of experience."
},
};
export default function RootLayout({
@@ -35,7 +32,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
className={`${poppins.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}

View File

@@ -28,7 +28,7 @@ export default function LandingPage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="David Azizi"
brandName="David Azizi - Remax"
navItems={[
{ name: "About", id: "about" },
{ name: "Portfolio", id: "portfolio" },
@@ -36,6 +36,8 @@ export default function LandingPage() {
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }
]}
bottomLeftText="416-949-4435"
bottomRightText="David Azizi - Remax Agent"
button={{
text: "Schedule Consultation", href: "#contact"
}}
@@ -45,7 +47,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroCarouselLogo
logoText="DAVID AZIZI"
description="15 years of experience specializing in luxury residential and investment properties. Trusted by hundreds of satisfied clients across the market."
description="15 years of experience specializing in luxury residential and investment properties. Trusted by hundreds of satisfied clients across the market. Remax agent dedicated to your real estate success."
buttons={[
{ text: "View My Portfolio", href: "#portfolio" },
{ text: "Get Started", href: "#contact" }
@@ -210,7 +212,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactSplitForm
title="Schedule Your Consultation"
description="Ready to explore your real estate opportunities? Connect with David Azizi today for a personalized consultation. Let's discuss your goals and create a strategy for success."
description="Ready to explore your real estate opportunities? Connect with David Azizi today for a personalized consultation. Let's discuss your goals and create a strategy for success. Call 416-949-4435 or fill out the form below."
mediaPosition="right"
imageSrc="http://img.b2bpic.net/free-photo/company-managers-discussing-solution-businesspeople-gathering-meeting-room-watching-content-computer-monitor-together-business-communication-teamwork-concept_74855-11621.jpg"
imageAlt="Professional consultation space"
@@ -232,7 +234,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="David Azizi"
logoText="David Azizi - Remax"
leftLink={{
text: "Privacy Policy", href: "#"
}}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-dm-sans), sans-serif;
font-family: var(--font-poppins), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-dm-sans), sans-serif;
font-family: var(--font-poppins), sans-serif;
}