"use client" import type React from "react" import { SiteHeader } from "@/components/site-header" import { SiteFooter } from "@/components/site-footer" import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" import { Textarea } from "@/components/ui/textarea" import { Label } from "@/components/ui/label" import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group" import { Mail, Phone, MapPin, Clock, Play, ExternalLink } from "lucide-react" import { useState } from "react" import Image from "next/image" export default function ContactPage() { const [formData, setFormData] = useState({ firstName: "", lastName: "", email: "", phone: "", interest: "", message: "", }) const handleSubmit = (e: React.FormEvent) => { e.preventDefault() console.log("Form submitted:", formData) } const handleChange = (e: React.ChangeEvent) => { setFormData({ ...formData, [e.target.name]: e.target.value, }) } return (
{/* Hero Section */}

Contact Us

Get in touch with our team to discuss your next high-performance project.

{/* Main Content - Left Column */}
{/* Intro Text */}

We want to hear from you!

We have over 20 years of construction experience and specialize in Insulated Concrete Form (ICFs) installations, Structural Concrete Flooring and Radiant Heating Systems. If you are interested in more information regarding ICF structures or require an estimate, please fill out the contact form, call or email us today.

Address:

We are located in beautiful Woodland Park, CO and serve the Rocky Mtn. Region and the Front Range. Please call to set up an appointment.

Business Hours:

8:00a–4:00p M-F

{/* Contact Form */}
setFormData({ ...formData, interest: value })} className="space-y-3" > {[ "ICF Training/Consultation", "Installation Estimate (Excavation, Footers, ICF Foundation, ICF Above-Grade Walls, Other)", "General Information About Building with ICFs", "Custom Residential Design/Build Services", "Commercial New Construction", "Other (Please Explain Below)", ].map((option) => (
))}