diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..ff91591 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,77 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit"; +import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; + +export default function AboutPage() { + return ( + + + + + + + + + + + + + + + + ); +} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..077db44 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,67 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; + +export default function ContactPage() { + return ( + + + + + + + + + + + + ); +} diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx new file mode 100644 index 0000000..fbcfccb --- /dev/null +++ b/src/app/gallery/page.tsx @@ -0,0 +1,91 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit"; +import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; + +export default function GalleryPage() { + return ( + + + + + + + + + + + + + + + + ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 4f1ff6b..e1d0c47 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,8 +10,17 @@ import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCar import FaqBase from "@/components/sections/faq/FaqBase"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; +import { MapPin, Phone, Clock, MapPinIcon } from "lucide-react"; export default function LandingPage() { + const handleCallClick = () => { + window.location.href = "tel:+15551234567"; + }; + + const handleMapClick = () => { + window.open("https://maps.google.com/?q=Complete+Detail+Car+Wash+San+Marcos+TX", "_blank"); + }; + return ( { + console.log("Booking data:", data); + // Handle form submission - could send to backend or email service + }} /> + + + Visit Our San Marcos Location + + + + Address + 123 Detailing LaneSan Marcos, TX 78666 + View on Maps + + + + Phone + (555) 123-4567 + Click to Call + + + + Hours + Mon-Fri: 9AM - 6PMSat: 10AM - 4PMSun: Closed + + + + +
123 Detailing LaneSan Marcos, TX 78666
(555) 123-4567
Mon-Fri: 9AM - 6PMSat: 10AM - 4PMSun: Closed