12 Commits

Author SHA1 Message Date
8e9ae9980a Update src/app/page.tsx 2026-03-26 16:44:29 +00:00
c4c040e103 Update src/app/page.tsx 2026-03-26 16:44:05 +00:00
7a12c40d06 Switch to version 1: modified src/app/styles/variables.css 2026-03-26 16:31:42 +00:00
c73d26ce0c Switch to version 1: modified src/app/styles/base.css 2026-03-26 16:31:42 +00:00
5f5b62b388 Switch to version 1: modified src/app/page.tsx 2026-03-26 16:31:42 +00:00
fca637c5a8 Switch to version 1: modified src/app/layout.tsx 2026-03-26 16:31:41 +00:00
3f4ee72923 Merge version_2 into main
Merge version_2 into main
2026-03-26 16:24:40 +00:00
150bd633e4 Merge version_2 into main
Merge version_2 into main
2026-03-26 16:24:05 +00:00
b05d23efe0 Merge version_2 into main
Merge version_2 into main
2026-03-26 16:23:28 +00:00
7dd66a9894 Merge version_2 into main
Merge version_2 into main
2026-03-26 16:20:35 +00:00
b9ad710211 Merge version_2 into main
Merge version_2 into main
2026-03-26 16:15:33 +00:00
0c4096328c Merge version_2 into main
Merge version_2 into main
2026-03-26 16:14:58 +00:00
4 changed files with 23 additions and 18 deletions

View File

@@ -7,7 +7,6 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Libre_Baskerville } from "next/font/google";
import { Libre_Baskerville, Lato } from "next/font/google";
@@ -42,9 +41,15 @@ export const metadata: Metadata = {
},
};
const libreBaskerville = Libre_Baskerville({ variable: '--font-libre-baskerville', subsets: ['latin'], weight: ['400', '700'] });
const lato = Lato({ variable: '--font-lato', subsets: ['latin'], weight: ['100', '300', '400', '700', '900'] });
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export default function RootLayout({
children,
@@ -54,7 +59,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${libreBaskerville.variable} ${lato.variable} antialiased`}>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -47,8 +47,8 @@ export default function LandingPage() {
background={{ variant: "plain" }}
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/palm-trees-line-water_23-2148107102.jpg", imageAlt: "South Florida Coastal Luxury" },
{ imageSrc: "http://img.b2bpic.net/free-photo/beautiful-aerial-shot-coastal-city-sea_181624-242.jpg", imageAlt: "Miami Skyline View" },
{ imageSrc: "http://img.b2bpic.net/free-photo/stair-pool_1203-3694.jpg", imageAlt: "Modern Luxury Estate Pool" },
{ imageSrc: "http://img.b2bpic.net/free-photo/beautiful-aerial-shot-coastal-city-sea_181624-242.jpg?_wi=1", imageAlt: "Miami Skyline View" },
{ imageSrc: "http://img.b2bpic.net/free-photo/stair-pool_1203-3694.jpg?_wi=1", imageAlt: "Modern Luxury Estate Pool" },
]}
/>
</div>
@@ -76,8 +76,8 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{ id: "p1", brand: "Waterfront", name: "Biscayne Bay Estate", price: "$12.5M", rating: 5, reviewCount: "4", imageSrc: "http://img.b2bpic.net/free-photo/miami-beach-ocean-view_649448-223.jpg" },
{ id: "p2", brand: "New Dev", name: "Downtown Apex Tower", price: "$5.2M", rating: 5, reviewCount: "2", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-aerial-shot-coastal-city-sea_181624-242.jpg" },
{ id: "p3", brand: "Acquisition", name: "Palm Beach Sanctuary", price: "$8.9M", rating: 5, reviewCount: "3", imageSrc: "http://img.b2bpic.net/free-photo/stair-pool_1203-3694.jpg" },
{ id: "p2", brand: "New Dev", name: "Downtown Apex Tower", price: "$5.2M", rating: 5, reviewCount: "2", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-aerial-shot-coastal-city-sea_181624-242.jpg?_wi=2" },
{ id: "p3", brand: "Acquisition", name: "Palm Beach Sanctuary", price: "$8.9M", rating: 5, reviewCount: "3", imageSrc: "http://img.b2bpic.net/free-photo/stair-pool_1203-3694.jpg?_wi=2" },
]}
/>
</div>
@@ -114,7 +114,7 @@ export default function LandingPage() {
tag="Finalize Your Acquisition"
title="Experience The Guarantee"
description="Inquire today about our intelligence-driven process and leverage our No-Hassle Guarantee for your next Florida property purchase."
buttons={[{ text: "Connect Now", href: "#" }]}
buttons={[{ text: "Connect Now", href: "#" }, { text: "View Market Reports", href: "#reports" }]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
@@ -133,4 +133,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-libre-baskerville), sans-serif;
font-family: var(--font-inter), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #F5F5F5;
--card: #FFFFFF;
--foreground: #1C1C1C;
--primary-cta: #1F3251;
--background: #FFFFFF;
--card: #F9F9F9;
--foreground: #001F3F;
--primary-cta: #D4AF37;
--primary-cta-text: #001F3F;
--secondary-cta: #FFFFFF;
--secondary-cta-text: #001F3F;
--accent: #C0C0C0;
--background-accent: #A8CCE8;
--accent: #D4AF37;
--background-accent: #E0E7F2;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);