diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..d6e618b --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,256 @@ +"use client"; + +import { useState } from "react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { Phone, Mail, MapPin, Heart } from "lucide-react"; + +export default function ContactPage() { + const [formData, setFormData] = useState({ + name: "", email: "", message: ""}); + + const handleInputChange = (e: React.ChangeEvent) => { + const { name, value } = e.target; + setFormData((prev) => ({ + ...prev, + [name]: value, + })); + }; + + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault(); + // Handle form submission + console.log("Form submitted:", formData); + // Reset form + setFormData({ name: "", email: "", message: "" }); + }; + + const handlePhoneCall = () => { + window.location.href = "tel:+1-385-555-0123"; + }; + + return ( + + {/* Navbar */} + + + {/* Hero Section */} +
+ +
+ + {/* Contact Form Section */} +
+
+
+ {/* Contact Information */} +
+
+

Contact Information

+
+ + {/* Phone */} +
+
+ +
+
+

Phone

+

Call us directly for immediate assistance

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

Email

+

Send us a message anytime

+ + hello@provoriverkinn.com + +
+
+ + {/* Address */} +
+
+ +
+
+

Address

+

+ 123 River Road
+ Provo, UT 84604
+ United States +

+
+
+
+ + {/* Contact Form */} +
+

Send us a Message

+
+
+ + +
+ +
+ + +
+ +
+ +