Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8e9ae9980a | |||
| c4c040e103 | |||
| 7a12c40d06 | |||
| c73d26ce0c | |||
| 5f5b62b388 | |||
| fca637c5a8 | |||
| 3f4ee72923 | |||
| 150bd633e4 | |||
| b05d23efe0 | |||
| 7dd66a9894 | |||
| b9ad710211 | |||
| 0c4096328c |
@@ -7,7 +7,6 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Libre_Baskerville } from "next/font/google";
|
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({
|
||||||
const libreBaskerville = Libre_Baskerville({ variable: '--font-libre-baskerville', subsets: ['latin'], weight: ['400', '700'] });
|
variable: "--font-libre-baskerville",
|
||||||
const lato = Lato({ variable: '--font-lato', subsets: ['latin'], weight: ['100', '300', '400', '700', '900'] });
|
subsets: ["latin"],
|
||||||
|
weight: ["400", "700"],
|
||||||
|
});
|
||||||
|
const inter = Inter({
|
||||||
|
variable: "--font-inter",
|
||||||
|
subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -54,7 +59,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${libreBaskerville.variable} ${lato.variable} antialiased`}>
|
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -47,8 +47,8 @@ export default function LandingPage() {
|
|||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
mediaItems={[
|
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/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/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", imageAlt: "Modern Luxury Estate Pool" },
|
{ imageSrc: "http://img.b2bpic.net/free-photo/stair-pool_1203-3694.jpg?_wi=1", imageAlt: "Modern Luxury Estate Pool" },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -76,8 +76,8 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
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: "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: "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" },
|
{ 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>
|
</div>
|
||||||
@@ -114,7 +114,7 @@ export default function LandingPage() {
|
|||||||
tag="Finalize Your Acquisition"
|
tag="Finalize Your Acquisition"
|
||||||
title="Experience The Guarantee"
|
title="Experience The Guarantee"
|
||||||
description="Inquire today about our intelligence-driven process and leverage our No-Hassle Guarantee for your next Florida property purchase."
|
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" }}
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
@@ -133,4 +133,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-libre-baskerville), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #F5F5F5;
|
--background: #FFFFFF;
|
||||||
--card: #FFFFFF;
|
--card: #F9F9F9;
|
||||||
--foreground: #1C1C1C;
|
--foreground: #001F3F;
|
||||||
--primary-cta: #1F3251;
|
--primary-cta: #D4AF37;
|
||||||
--primary-cta-text: #001F3F;
|
--primary-cta-text: #001F3F;
|
||||||
--secondary-cta: #FFFFFF;
|
--secondary-cta: #FFFFFF;
|
||||||
--secondary-cta-text: #001F3F;
|
--secondary-cta-text: #001F3F;
|
||||||
--accent: #C0C0C0;
|
--accent: #D4AF37;
|
||||||
--background-accent: #A8CCE8;
|
--background-accent: #E0E7F2;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user