Merge version_3 into main #6

Merged
bender merged 3 commits from version_3 into main 2026-03-04 13:01:53 +00:00
3 changed files with 29 additions and 22 deletions

View File

@@ -1,5 +1,10 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Luxury Estates", description: "Discover exceptional luxury properties"};
@@ -11,7 +16,9 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body>{children}
<body className={inter.className}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -37,7 +37,7 @@ export default function LandingPage() {
{ name: "Contact", id: "contact" }
]}
button={{ text: "Schedule Viewing", href: "contact" }}
brandName="Luxury Estates"
brandName="Elevate Real Estate"
/>
</div>
@@ -94,13 +94,13 @@ export default function LandingPage() {
<div id="about" data-section="about">
<MediaAbout
title="About Luxury Estates"
title="About Elevate Real Estate"
description="With over 25 years of excellence in luxury real estate, we specialize in connecting discerning clients with their dream properties. Our expertise spans prestigious neighborhoods and exclusive developments worldwide."
tag="Our Story"
tagIcon={Award}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/modern-office-meeting-room-with-city-view_9975-23238.jpg?_wi=1"
imageAlt="Luxury Estates Office"
imageAlt="Elevate Real Estate Office"
buttons={[{ text: "Learn More", href: "#" }]}
buttonAnimation="slide-up"
useInvertedBackground={false}
@@ -191,7 +191,7 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
title="Client Success Stories"
description="Hear from distinguished clients who have found their dream properties with Luxury Estates."
description="Hear from distinguished clients who have found their dream properties with Elevate Real Estate."
tag="Testimonials"
tagIcon={MessageSquare}
tagAnimation="slide-up"
@@ -201,7 +201,7 @@ export default function LandingPage() {
buttonAnimation="slide-up"
testimonials={[
{
id: "1", name: "Michael Richardson, CEO", date: "Date: 15 March 2024", title: "Exceptional service and expertise", quote: "The team at Luxury Estates went above and beyond to help us find the perfect Manhattan penthouse. Their market knowledge and professionalism are unmatched.", tag: "Premium Client", avatarSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg", avatarAlt: "Michael Richardson", imageSrc: "http://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg?_wi=3", imageAlt: "Luxury penthouse"
id: "1", name: "Michael Richardson, CEO", date: "Date: 15 March 2024", title: "Exceptional service and expertise", quote: "The team at Elevate Real Estate went above and beyond to help us find the perfect Manhattan penthouse. Their market knowledge and professionalism are unmatched.", tag: "Premium Client", avatarSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg", avatarAlt: "Michael Richardson", imageSrc: "http://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg?_wi=3", imageAlt: "Luxury penthouse"
},
{
id: "2", name: "Catherine Hughes, Entrepreneur", date: "Date: 22 February 2024", title: "Seamless international transaction", quote: "Purchasing a villa across continents was made effortless by their expert guidance. They handled every detail with precision and sophistication.", tag: "International Client", avatarSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg", avatarAlt: "Catherine Hughes", imageSrc: "http://img.b2bpic.net/free-photo/elegant-wedding-venue-with-swimming-pool_637285-5705.jpg?_wi=3", imageAlt: "Luxury villa"
@@ -216,7 +216,7 @@ export default function LandingPage() {
id: "5", name: "Sofia Rossi, Businesswoman", date: "Date: 5 November 2023", title: "Exceptional attention to detail", quote: "Every aspect of the purchase was handled flawlessly. The concierge services made the transition seamless and luxurious.", tag: "Executive Client", avatarSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg", avatarAlt: "Sofia Rossi", imageSrc: "http://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg?_wi=4", imageAlt: "Luxury property"
},
{
id: "6", name: "Thomas Victoria, Collector", date: "Date: 12 October 2023", title: "Unparalleled expertise and discretion", quote: "Working with Luxury Estates on my portfolio acquisitions has been an absolute pleasure. Discretion and expertise combined.", tag: "Premium Collector", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-successful-businesswoman-looking-into-camera-sitting-restaurant-business-lady-with-stylish-hairstyle-wears-elegant-suit-business-meeting-attractive-appearance_8353-12611.jpg", avatarAlt: "Thomas Victoria", imageSrc: "http://img.b2bpic.net/free-photo/elegant-wedding-venue-with-swimming-pool_637285-5705.jpg?_wi=4", imageAlt: "Luxury residence"
id: "6", name: "Thomas Victoria, Collector", date: "Date: 12 October 2023", title: "Unparalleled expertise and discretion", quote: "Working with Elevate Real Estate on my portfolio acquisitions has been an absolute pleasure. Discretion and expertise combined.", tag: "Premium Collector", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-successful-businesswoman-looking-into-camera-sitting-restaurant-business-lady-with-stylish-hairstyle-wears-elegant-suit-business-meeting-attractive-appearance_8353-12611.jpg", avatarAlt: "Thomas Victoria", imageSrc: "http://img.b2bpic.net/free-photo/elegant-wedding-venue-with-swimming-pool_637285-5705.jpg?_wi=4", imageAlt: "Luxury residence"
}
]}
/>
@@ -267,7 +267,7 @@ export default function LandingPage() {
]
}
]}
bottomLeftText="© 2025 Luxury Estates. All rights reserved."
bottomLeftText="© 2025 Elevate Real Estate. All rights reserved."
bottomRightText="Elevating Luxury Real Estate"
/>
</div>

View File

@@ -2,23 +2,23 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --background: #f5f4ef;;
--card: #ebe7de;;
--foreground: #2a2928;;
--primary-cta: #8b6914;;
--secondary-cta: #ecebea;;
--accent: #c6b180;;
--background-accent: #c6b180;; */
/* --background: #f7f6f7;;
--card: #ffffff;;
--foreground: #0c1325;;
--primary-cta: #0798ff;;
--secondary-cta: #ffffff;;
--accent: #93c7ff;;
--background-accent: #a8cde8;; */
--background: #f5f4ef;;
--card: #ebe7de;;
--foreground: #2a2928;;
--primary-cta: #8b6914;;
--background: #f7f6f7;;
--card: #ffffff;;
--foreground: #0c1325;;
--primary-cta: #0798ff;;
--primary-cta-text: #ffffff;;
--secondary-cta: #ecebea;;
--secondary-cta: #ffffff;;
--secondary-cta-text: #000000;;
--accent: #c6b180;;
--background-accent: #c6b180;;
--accent: #93c7ff;;
--background-accent: #a8cde8;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);