17 Commits

Author SHA1 Message Date
fe63d13431 Update src/app/page.tsx 2026-04-12 06:38:05 +00:00
bf5ac24b8c Update src/app/page.tsx 2026-04-12 06:35:33 +00:00
8480c3acc1 Update src/app/page.tsx 2026-04-12 06:16:10 +00:00
4a28303447 Update theme fonts 2026-04-12 05:57:41 +00:00
bd97ac0330 Update theme fonts 2026-04-12 05:57:41 +00:00
db9e6987ef Update theme fonts 2026-04-12 05:57:19 +00:00
0dd2962462 Update theme fonts 2026-04-12 05:57:19 +00:00
d13db4032c Update theme colors 2026-04-12 05:56:55 +00:00
b97d294029 Update theme colors 2026-04-12 05:54:05 +00:00
1798c35fab Update theme colors 2026-04-12 05:53:34 +00:00
f7a1085fee Update theme colors 2026-04-12 05:53:06 +00:00
628dc66463 Update theme fonts 2026-04-12 05:50:01 +00:00
8f32d49d67 Update theme fonts 2026-04-12 05:50:01 +00:00
32c86b8d06 Update theme fonts 2026-04-12 05:49:26 +00:00
ae0b0da4fa Update theme fonts 2026-04-12 05:49:25 +00:00
53b5e7fed2 Update theme colors 2026-04-12 05:49:13 +00:00
663792f54e Update theme colors 2026-04-12 05:48:41 +00:00
4 changed files with 25 additions and 11 deletions

View File

@@ -7,6 +7,10 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Playfair_Display, Lato } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Figtree } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
import { Public_Sans } from "next/font/google";
@@ -20,8 +24,18 @@ export const metadata: Metadata = {
},
};
const playfair = Playfair_Display({ variable: "--font-playfair", subsets: ["latin"] });
const lato = Lato({ variable: "--font-lato", subsets: ["latin"], weight: ["400", "700"] });
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export default function RootLayout({
children,
@@ -31,7 +45,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${playfair.variable} ${lato.variable} antialiased`}>
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -48,7 +48,7 @@ export default function LandingPage() {
{ text: "Schedule a Private Viewing", href: "#contact" },
{ text: "Request Property Details", href: "#details" },
]}
imageSrc="http://img.b2bpic.net/free-photo/high-angle-view-beautiful-green-landscape-with-pathway-cloudy-sky_181624-17759.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CF5hQqo1l7OIIMqHWdP4kqMcu5/uploaded-1775974452552-4xu8vli1.jpg"
/>
</div>
@@ -80,7 +80,7 @@ export default function LandingPage() {
features={[
{
title: "22 Acres of Flat, Usable Land", description: "Maximize every square foot of your investment.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/close-up-crispy-chocolate-rolls_171337-16250.jpg", imageAlt: "fertile soil close up rich texture" },
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/field-sunflowers-aerial-view-agricultural-fields-flowering-oilseed_661209-339.jpg", imageAlt: "flat agricultural land expanse" }
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/strawberry-field_1203-7581.jpg?id=1123505", imageAlt: "flat agricultural land expanse" }
},
{
title: "Prime Agricultural Zoning", description: "Proven yield capability in world-class conditions.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/photo-ground-texture-pattern_58702-15946.jpg", imageAlt: "fertile soil close up rich texture" },
@@ -106,7 +106,7 @@ export default function LandingPage() {
{ id: "1", value: "22", title: "Acres", description: "Rich, fertile soil ready for cultivation", imageSrc: "http://img.b2bpic.net/free-photo/green-field_155999-13.jpg" },
{ id: "2", value: "100%", title: "Potential", description: "Expansive acreage with endless potential", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-natural-landscape_23-2151839196.jpg" },
{ id: "3", value: "Prime", title: "Region", description: "Located in renowned Steinbeck Country", imageSrc: "http://img.b2bpic.net/free-photo/hill-slope-with-rare-trees-grazing-goats-moldova_1268-15989.jpg" },
{ id: "4", value: "Stable", title: "Appreciation", description: "High demand, limited supply", imageSrc: "http://img.b2bpic.net/free-photo/iceland-landscape_1361-66.jpg" },
{ id: "4", value: "Stable", title: "Appreciation", description: "High demand, limited supply", imageSrc: "http://img.b2bpic.net/free-photo/close-up-red-ripe-organic-strawberries-plant-modern-greenhouse-concept-delicious-fresh-berries-grow-garden-bush_7502-8962.jpg?id=16663861" },
{ id: "5", value: "Strategic", title: "Location", description: "Near Salinas, Carmel & Pacific Coast", imageSrc: "http://img.b2bpic.net/free-photo/rural-landscape-aragon_1398-3257.jpg" },
{ id: "6", value: "Ready", title: "Development", description: "Excellent access to infrastructure", imageSrc: "http://img.b2bpic.net/free-photo/lonely-road-with-wheatfield-sunset_1160-568.jpg" },
]}

View File

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

View File

@@ -12,11 +12,11 @@
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000612e6;
--primary-cta: #15479c;
--foreground: #000f06e6;
--primary-cta: #0a7039;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6;
--secondary-cta-text: #000f06e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;