'use client' import { Card, CardContent } from "@/components/ui/card" import { Separator } from "@/components/ui/separator" import { Phone, Mail, Clock } from "lucide-react" import Link from "next/link" import { ContactForm } from "@/components/forms/contact-form" export function ContactPage() { const businessHours = [ { day: "Sunday", hours: "Closed", isClosed: true }, { day: "Monday", hours: "8:00 AM to 5:00 PM", isClosed: false }, { day: "Tuesday", hours: "8:00 AM to 5:00 PM", isClosed: false }, { day: "Wednesday", hours: "8:00 AM to 5:00 PM", isClosed: false }, { day: "Thursday", hours: "8:00 AM to 5:00 PM", isClosed: false }, { day: "Friday", hours: "8:00 AM to 5:00 PM", isClosed: false }, { day: "Saturday", hours: "Closed", isClosed: true }, ] return (
{/* Header */}

Contact Us

{/* Main Content - Form and Contact Info */}
{/* Left Column - Contact Form */}

Get in Touch with Us

console.log('Contact form submitted:', data)} />
{/* Right Column - Contact Information */}

Contact Information

Phone

(435) 233-9668

Call us during business hours

Email

info@rockymountainvending.com

Send us an email anytime

{/* Hours of Operation */}

Hours of Operation

Business Hours

{businessHours.map((schedule, index) => (
{schedule.day} {schedule.hours}
))}
{/* Additional Info Card */}

Need Help Outside Business Hours?

While our office hours are Monday through Friday, 8:00 AM to 5:00 PM, we understand that vending machine issues can happen anytime. For urgent matters, please leave us a message or send an email, and we'll get back to you as soon as possible.

Quick Response Options:

  • Text us at (435) 233-9668
  • Use the chat widget on our website
  • Submit the contact form above
) }