From 883aad920315b2a5f9fabf2714c0f6afed3e294e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 19:52:15 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 179 +++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 159 insertions(+), 20 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ed2a6f3..f37b12b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,9 +9,14 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import { Camera, CheckCircle, Clock, Heart, Phone, Scissors, Sparkles, Star, User, Zap, Users } from 'lucide-react'; +import { Camera, CheckCircle, Clock, Heart, Phone, Scissors, Sparkles, Star, User, Zap, Users, MapPin, Mail } from 'lucide-react'; export default function LandingPage() { + const handleFormSubmit = (formData: { name: string; phone: string; message: string }) => { + console.log('Form submitted:', formData); + // Handle form submission (send to backend, email, etc.) + }; + return (
- +
+
+
+ {/* Left Column - Contact Info & Hours */} +
+ {/* Tap-to-Call Button */} +
+

Call Us Directly

+ + + (469) 922-4190 + +

Tap to call • Fast service • Professional consultation

+
+ + {/* Hours Display */} +
+

+ + Business Hours +

+
+
+ Monday - Friday + 9:00 AM - 7:00 PM +
+
+ Saturday + 8:00 AM - 6:00 PM +
+
+ Sunday + Closed +
+
+
+ + Open Now – Closes 7 PM +
+
+ + {/* Address & Location */} +
+

+ + Visit Us +

+

5701 President George Bush Hwy, Suite 102

+

Rowlett, TX 75089

+ + Get Directions + +
+
+ + {/* Right Column - Contact Form */} +
+

Send us a Message

+

Fill out the form below and we'll get back to you shortly.

+
{ + e.preventDefault(); + const formData = new FormData(e.currentTarget); + handleFormSubmit({ + name: formData.get('name') as string, + phone: formData.get('phone') as string, + message: formData.get('message') as string + }); + (e.target as HTMLFormElement).reset(); + }} + className="space-y-4" + > + {/* Name Field */} +
+ + +
+ + {/* Phone Field */} +
+ + +
+ + {/* Message Field */} +
+ +