Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b3be36a145 | |||
| 2e937702a6 | |||
| 8406965558 | |||
| 4105d91be8 |
@@ -3,7 +3,6 @@
|
|||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
|
||||||
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
|
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
|
||||||
import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve";
|
import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve";
|
||||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||||
@@ -67,25 +66,6 @@ export default function AboutPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
|
||||||
<InlineImageSplitTextAbout
|
|
||||||
heading={[
|
|
||||||
{
|
|
||||||
type: "text", content: "20+ Years of Excellence in"},
|
|
||||||
{
|
|
||||||
type: "text", content: "Tel-Aviv Real Estate"},
|
|
||||||
]}
|
|
||||||
useInvertedBackground={false}
|
|
||||||
buttons={[
|
|
||||||
{
|
|
||||||
text: "Learn Our Story", href: "/about"},
|
|
||||||
{
|
|
||||||
text: "Meet Our Team", href: "/contact"},
|
|
||||||
]}
|
|
||||||
ariaLabel="Company overview and mission"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="metrics" data-section="metrics">
|
<div id="metrics" data-section="metrics">
|
||||||
<MetricCardThree
|
<MetricCardThree
|
||||||
metrics={[
|
metrics={[
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import Link from "next/link";
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||||
|
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||||
import FaqBase from "@/components/sections/faq/FaqBase";
|
import FaqBase from "@/components/sections/faq/FaqBase";
|
||||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||||
import { Phone } from "lucide-react";
|
import { Phone } from "lucide-react";
|
||||||
@@ -66,6 +67,28 @@ export default function ContactPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="contact-form" data-section="contact-form">
|
||||||
|
<ContactSplit
|
||||||
|
tag="Contact Us"
|
||||||
|
tagIcon={Phone}
|
||||||
|
title="Get in Touch with Our Team"
|
||||||
|
description="Have questions about properties or ready to schedule a viewing? Fill out the form below and our expert team will be in touch within 24 hours."
|
||||||
|
background={{
|
||||||
|
variant: "plain"
|
||||||
|
}}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/city-sunset_181624-8834.jpg?_wi=1"
|
||||||
|
imageAlt="Contact our team"
|
||||||
|
mediaAnimation="slide-up"
|
||||||
|
mediaPosition="right"
|
||||||
|
inputPlaceholder="Enter your email"
|
||||||
|
buttonText="Send"
|
||||||
|
termsText="We respect your privacy. Your information will be kept confidential."
|
||||||
|
onSubmit={(email) => console.log('Contact form submitted:', email)}
|
||||||
|
ariaLabel="Contact form section"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCTA
|
<ContactCTA
|
||||||
tag="Get in Touch"
|
tag="Get in Touch"
|
||||||
|
|||||||
@@ -94,29 +94,6 @@ export default function HomePage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
|
||||||
<InlineImageSplitTextAbout
|
|
||||||
heading={[
|
|
||||||
{
|
|
||||||
type: "text", content: "20+ Years of Excellence in"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "text", content: "Tel-Aviv Real Estate"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
useInvertedBackground={false}
|
|
||||||
buttons={[
|
|
||||||
{
|
|
||||||
text: "Learn Our Story", href: "/about"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
text: "Meet Our Team", href: "/contact"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
ariaLabel="Company overview and mission"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="metrics" data-section="metrics">
|
<div id="metrics" data-section="metrics">
|
||||||
<MetricCardThree
|
<MetricCardThree
|
||||||
title="Our Track Record"
|
title="Our Track Record"
|
||||||
|
|||||||
Reference in New Issue
Block a user