diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index bf51081..99e399e 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -18,26 +18,23 @@ const navItems = [ const footerColumns = [ { - title: "Quick Links", - items: [ + title: "Quick Links", items: [ { label: "Home", href: "/" }, - { label: "Services", href: "/" }, + { label: "Services", href: "/services" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }, ], }, { - title: "Services", - items: [ - { label: "Back & Neck Pain", href: "/" }, - { label: "Joint Pain Therapy", href: "/" }, - { label: "Post-Surgery Rehab", href: "/" }, - { label: "Sports Injuries", href: "/" }, + title: "Services", items: [ + { label: "Back & Neck Pain", href: "/services" }, + { label: "Joint Pain Therapy", href: "/services" }, + { label: "Post-Surgery Rehab", href: "/services" }, + { label: "Sports Injuries", href: "/services" }, ], }, { - title: "Contact Info", - items: [ + title: "Contact Info", items: [ { label: "Phone: +91-9876-543-210", href: "tel:+919876543210" }, { label: "Email: info@jainphysio.com", href: "mailto:info@jainphysio.com" }, { label: "Address: Char Imli, Bhopal", href: "#" }, @@ -45,8 +42,7 @@ const footerColumns = [ ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Disclaimer", href: "#" }, @@ -75,9 +71,7 @@ export default function AboutPage() { navItems={navItems} brandName="Jain Physiotherapy Clinic" button={{ - text: "Call Now", - href: "tel:+919876543210", - }} + text: "Call Now", href: "tel:+919876543210"}} /> @@ -86,15 +80,10 @@ export default function AboutPage() {