diff --git a/src/app/about-us/page.tsx b/src/app/about-us/page.tsx new file mode 100644 index 0000000..da773d7 --- /dev/null +++ b/src/app/about-us/page.tsx @@ -0,0 +1,145 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; +import TeamCardOne from "@/components/sections/team/TeamCardOne"; +import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Leaf, TreePine } from "lucide-react"; + +export default function AboutUsPage() { + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx new file mode 100644 index 0000000..fdaa4e5 --- /dev/null +++ b/src/app/gallery/page.tsx @@ -0,0 +1,176 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import ProductCardOne from "@/components/sections/product/ProductCardOne"; +import { Leaf } from "lucide-react"; + +export default function GalleryPage() { + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 841c7df..09156a8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -37,6 +37,7 @@ export default function LandscapingPage() { { name: "About Us", id: "about" }, { name: "Our Team", id: "team" }, { name: "Testimonials", id: "testimonials" }, + { name: "FAQ", id: "faq" }, { name: "Contact", id: "contact" } ]} button={{ text: "Request a Quote", href: "#contact" }} @@ -164,7 +165,7 @@ export default function LandscapingPage() { cardTag="Hear From Our Happy Clients" cardTagIcon={Leaf} cardTitle="Botanica Landscapes is praised for hard work, quality, and reasonable pricing throughout Yuba City and beyond." - buttons={[{ text: "Request Your Quote", href: "#contact" }]} + buttons={[{ text: "Request Your Quote", href: "#contact" }]} buttonAnimation="slide-up" cardAnimation="slide-up" useInvertedBackground={false} @@ -243,10 +244,10 @@ export default function LandscapingPage() { columns={[ { title: "Services", items: [ - { label: "Commercial Landscaping", href: "#services" }, - { label: "Residential Landscaping", href: "#services" }, - { label: "Landscape Maintenance", href: "#services" }, { label: "Landscape Design", href: "#services" }, + { label: "Residential Landscaping", href: "#services" }, + { label: "Commercial Landscaping", href: "#services" }, + { label: "Landscape Maintenance", href: "#services" }, { label: "Lawn Care", href: "#services" }, { label: "Irrigation Services", href: "#services" } ] @@ -263,7 +264,8 @@ export default function LandscapingPage() { title: "Contact", items: [ { label: "(530) 671-1029", href: "tel:5306711029" }, { label: "5411 CA-20, Yuba City, CA 95993" }, - { label: "info@botanicalandscapes.com", href: "mailto:info@botanicalandscapes.com" } + { label: "info@botanicalandscapes.com", href: "mailto:info@botanicalandscapes.com" }, + { label: "Emergency Service", href: "tel:5306711029" } ] } ]} diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx new file mode 100644 index 0000000..0012945 --- /dev/null +++ b/src/app/reviews/page.tsx @@ -0,0 +1,116 @@ +"use client"; + +import React from "react"; +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; +import { Leaf, Star } from "lucide-react"; + +export default function ReviewsPage() { + return ( + + + + +
+
+

Our Customer Reviews

+

Hear what our satisfied clients in Yuba City have to say about our professional landscaping services.

+
+ {[...Array(5)].map((_, i) => ( + + ))} + 5.0 / 5.0 Rating + (Based on 100+ Reviews) +
+
+
+ +
+ +
+ + +
+
+ ); +} diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 9e219f9..883d2fb 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f7f9f4; - --card: #ffffff; - --foreground: #1a2e1a; - --primary-cta: #2d5a27; - --primary-cta-text: #ffffff; - --secondary-cta: #ffffff; - --secondary-cta-text: #2d5a27; - --accent: #4a8c3f; - --background-accent: #6fb85e; + --background: #000000; + --card: #1a2f1d; + --foreground: #ffffff; + --primary-cta: #ffffff; + --primary-cta-text: #0a1a0c; + --secondary-cta: #0d200f; + --secondary-cta-text: #d4f6d8; + --accent: #1a3d1f; + --background-accent: #355e3b; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);