Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fe63d13431 | |||
| bf5ac24b8c | |||
| 8480c3acc1 | |||
| 4a28303447 | |||
| bd97ac0330 | |||
| db9e6987ef | |||
| 0dd2962462 | |||
| d13db4032c | |||
| b97d294029 | |||
| 1798c35fab | |||
| f7a1085fee | |||
| 628dc66463 | |||
| 8f32d49d67 | |||
| 32c86b8d06 | |||
| ae0b0da4fa | |||
| 53b5e7fed2 |
@@ -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
|
||||
|
||||
@@ -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" },
|
||||
]}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #fffefe;
|
||||
--card: #f6f7f4;
|
||||
--foreground: #080908;
|
||||
--primary-cta: #0e3a29;
|
||||
--primary-cta-text: #fffefe;
|
||||
--secondary-cta: #e7eecd;
|
||||
--secondary-cta-text: #080908;
|
||||
--accent: #35c18b;
|
||||
--background-accent: #ecebe4;
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000f06e6;
|
||||
--primary-cta: #0a7039;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #000f06e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #c4c4c4;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user