From 2281326056398ffbc26cc294801c2aa3eee7b3d8 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 10:14:09 +0000 Subject: [PATCH 1/2] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 60 ++++++++++------------------------------ 1 file changed, 15 insertions(+), 45 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index c5fef50..c669e5d 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -6,7 +6,7 @@ import ContactCenter from "@/components/sections/contact/ContactCenter"; import FaqDouble from "@/components/sections/faq/FaqDouble"; import FooterSimple from "@/components/sections/footer/FooterSimple"; import Link from "next/link"; -import { Phone } from "lucide-react"; +import { Phone, HelpCircle } from "lucide-react"; export default function ContactPage() { const navItems = [ @@ -18,8 +18,7 @@ export default function ContactPage() { const footerColumns = [ { - title: "Quick Links", - items: [ + title: "Quick Links", items: [ { label: "Home", href: "/" }, { label: "About Us", href: "/about" }, { label: "Gallery", href: "/gallery" }, @@ -27,8 +26,7 @@ export default function ContactPage() { ], }, { - title: "Events", - items: [ + title: "Events", items: [ { label: "Weddings", href: "#" }, { label: "Engagements", href: "#" }, { label: "Corporate Events", href: "#" }, @@ -37,16 +35,14 @@ export default function ContactPage() { ], }, { - title: "Contact Info", - items: [ + title: "Contact Info", items: [ { label: "📞 Call: +91 98765 43210", href: "tel:+919876543210" }, { label: "💬 WhatsApp: +91 98765 43210", href: "https://wa.me/919876543210" }, { label: "📍 Proddatur, Andhra Pradesh", href: "https://maps.google.com/?q=SH+317+Bollavaram+Proddatur" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms & Conditions", href: "#" }, { label: "Cancellation Policy", href: "#" }, @@ -75,9 +71,7 @@ export default function ContactPage() { id: item.id, }))} button={{ - text: "📞 Call Now", - href: "tel:+919876543210", - }} + text: "📞 Call Now", href: "tel:+919876543210"}} animateOnLoad={true} /> @@ -101,50 +95,26 @@ export default function ContactPage() { Date: Tue, 10 Mar 2026 10:14:09 +0000 Subject: [PATCH 2/2] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 96 ++++++++++------------------------------ 1 file changed, 23 insertions(+), 73 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 80fa92b..88b85a7 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -6,7 +6,7 @@ import FeatureCardOne from "@/components/sections/feature/FeatureCardOne"; import FaqDouble from "@/components/sections/faq/FaqDouble"; import FooterSimple from "@/components/sections/footer/FooterSimple"; import Link from "next/link"; -import { Image as ImageIcon } from "lucide-react"; +import { Image as ImageIcon, HelpCircle } from "lucide-react"; export default function GalleryPage() { const navItems = [ @@ -18,8 +18,7 @@ export default function GalleryPage() { const footerColumns = [ { - title: "Quick Links", - items: [ + title: "Quick Links", items: [ { label: "Home", href: "/" }, { label: "About Us", href: "/about" }, { label: "Gallery", href: "/gallery" }, @@ -27,8 +26,7 @@ export default function GalleryPage() { ], }, { - title: "Events", - items: [ + title: "Events", items: [ { label: "Weddings", href: "#" }, { label: "Engagements", href: "#" }, { label: "Corporate Events", href: "#" }, @@ -37,16 +35,14 @@ export default function GalleryPage() { ], }, { - title: "Contact Info", - items: [ + title: "Contact Info", items: [ { label: "📞 Call: +91 98765 43210", href: "tel:+919876543210" }, { label: "💬 WhatsApp: +91 98765 43210", href: "https://wa.me/919876543210" }, { label: "📍 Proddatur, Andhra Pradesh", href: "https://maps.google.com/?q=SH+317+Bollavaram+Proddatur" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms & Conditions", href: "#" }, { label: "Cancellation Policy", href: "#" }, @@ -75,9 +71,7 @@ export default function GalleryPage() { id: item.id, }))} button={{ - text: "📞 Call Now", - href: "tel:+919876543210", - }} + text: "📞 Call Now", href: "tel:+919876543210"}} animateOnLoad={true} /> @@ -86,40 +80,20 @@ export default function GalleryPage() {