From 5cb275a67a30b4df7e7bbbf0ae803d07779461a2 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 19:21:27 +0000 Subject: [PATCH] Add src/app/call-us/page.tsx --- src/app/call-us/page.tsx | 176 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 176 insertions(+) create mode 100644 src/app/call-us/page.tsx diff --git a/src/app/call-us/page.tsx b/src/app/call-us/page.tsx new file mode 100644 index 0000000..44de798 --- /dev/null +++ b/src/app/call-us/page.tsx @@ -0,0 +1,176 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { Phone, Mail, MapPin, Clock } from "lucide-react"; + +export default function CallUsPage() { + return ( + + + +
+
+ {/* Header */} +
+

Get in Touch

+

We're here to help! Reach out to us today for your landscaping needs.

+
+ + {/* Contact Information Cards */} +
+ {/* Phone */} +
+
+ +

Call Us

+
+

Speak directly with our team about your project.

+ + (612) 532-1875 + +

Available Monday - Friday, 8am - 6pm

+
+ + {/* Email */} +
+
+ +

Email Us

+
+

Send us an email and we'll get back to you within 24 hours.

+ + gotogopher@gmail.com + +

Email response: 24 hours or less

+
+
+ + {/* Additional Information */} +
+
+ {/* Hours */} +
+
+ +

Business Hours

+
+
    +
  • Monday - Friday: 8:00 AM - 6:00 PM
  • +
  • Saturday: 9:00 AM - 4:00 PM
  • +
  • Sunday: Closed
  • +
  • Emergency services available 24/7
  • +
+
+ + {/* Why Call Us */} +
+

Why Contact Us?

+
    +
  • ✓ Free consultations and quotes
  • +
  • ✓ Experienced professionals
  • +
  • ✓ Fast response times
  • +
  • ✓ Satisfaction guaranteed
  • +
  • ✓ Custom solutions for your needs
  • +
+
+
+
+ + {/* Quick Actions */} +
+

Ready to Transform Your Landscape?

+

+ Don't wait! Contact Go To Gophers today and let's discuss your landscaping vision. +

+ +
+
+
+ + +
+ ); +}