Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7a41b660a7 | |||
| 5760a1544b | |||
| 3696d56035 | |||
| dbd5c5ad93 | |||
| 82d4320542 | |||
| 4ae92a98e9 | |||
| 1ee5dba289 | |||
| 2416f876d8 | |||
| ebc42d4966 | |||
| 03efc5522e | |||
| ea981c56fa | |||
| b4f62b5b5f | |||
| 0f99892cae |
@@ -7,6 +7,7 @@ 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 { Manrope } from "next/font/google";
|
import { Manrope } from "next/font/google";
|
||||||
|
import { Nunito_Sans } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -15,8 +16,9 @@ export const metadata: Metadata = {
|
|||||||
description: "Generated by create next app",
|
description: "Generated by create next app",
|
||||||
};
|
};
|
||||||
|
|
||||||
const manrope = Manrope({
|
|
||||||
variable: "--font-manrope",
|
const nunitoSans = Nunito_Sans({
|
||||||
|
variable: "--font-nunito-sans",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -28,7 +30,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${manrope.variable} antialiased`}>
|
<body className={`${nunitoSans.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
|||||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||||
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
|
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
|
||||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||||
@@ -41,13 +41,15 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogoBillboard
|
<HeroBillboardCarousel
|
||||||
logoText="Blue Flamingo Lawn Care & Outdoor Services"
|
title="Blue Flamingo Lawn Care"
|
||||||
description="Professional lawn maintenance, yard cleanup, and specialized outdoor care for Niceville homeowners. We show up on time, every time."
|
description="Professional lawn maintenance, yard cleanup, and specialized outdoor care for Niceville homeowners. We show up on time, every time."
|
||||||
buttons={[{ text: "Get a Free Quote", href: "#contact" }]}
|
buttons={[{ text: "Get a Free Quote", href: "#contact" }]}
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D34ob8YKysMwHiGdHbbh9qHWCg/uploaded-1777497709040-ytymkbyv.png"
|
mediaItems={[
|
||||||
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D34ob8YKysMwHiGdHbbh9qHWCg/uploaded-1777497709040-ytymkbyv.png", imageAlt: "Lawn Care" },
|
||||||
|
{ imageSrc: "http://img.b2bpic.net/free-photo/professional-gardener-trimming-hedge-yard_342744-537.jpg?_wi=1", imageAlt: "Gardening" }
|
||||||
|
]}
|
||||||
background={{ variant: "gradient-bars" }}
|
background={{ variant: "gradient-bars" }}
|
||||||
frameStyle="card"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -59,7 +61,7 @@ export default function LandingPage() {
|
|||||||
description="We noticed most lawn care companies have a reliability problem. Blue Flamingo was built to change that. We show up when scheduled, do the job right, and keep your yard maintained without the stress."
|
description="We noticed most lawn care companies have a reliability problem. Blue Flamingo was built to change that. We show up when scheduled, do the job right, and keep your yard maintained without the stress."
|
||||||
subdescription="Whether you need weekly mowing or a seasonal cleanup, we focus on consistent, professional quality."
|
subdescription="Whether you need weekly mowing or a seasonal cleanup, we focus on consistent, professional quality."
|
||||||
icon={Flame}
|
icon={Flame}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/professional-gardener-trimming-hedge-yard_342744-537.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/professional-gardener-trimming-hedge-yard_342744-537.jpg?_wi=2"
|
||||||
mediaAnimation="blur-reveal"
|
mediaAnimation="blur-reveal"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -148,4 +150,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-manrope), sans-serif;
|
font-family: var(--font-nunito-sans), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-manrope), sans-serif;
|
font-family: var(--font-nunito-sans), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f6f0e9;
|
--background: #0a0a0a;
|
||||||
--card: #efe7dd;
|
--card: #1a1a1a;
|
||||||
--foreground: #2b180a;
|
--foreground: #ffffff;
|
||||||
--primary-cta: #2b180a;
|
--primary-cta: #1f7cff;
|
||||||
--primary-cta-text: #f6f0e9;
|
--primary-cta-text: #ffffff;
|
||||||
--secondary-cta: #efe7dd;
|
--secondary-cta: #010101;
|
||||||
--secondary-cta-text: #2b180a;
|
--secondary-cta-text: #ffffff;
|
||||||
--accent: #94877c;
|
--accent: #1f7cff;
|
||||||
--background-accent: #afa094;
|
--background-accent: #f96b2f;
|
||||||
|
|
||||||
/* 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