diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 0a89ead..210c643 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -29,7 +29,7 @@ export default function AboutPage() { { name: "Services", id: "services" }, { name: "Why MELD", id: "why-meld" }, { name: "Testimonials", id: "testimonials" }, - { name: "Contact", id: "contact" }, + { name: "Contact", id: "cta" }, ]} button={{ text: "Call Now", href: "tel:+16177223456"}} @@ -94,13 +94,13 @@ export default function AboutPage() { title: "Services", items: [ { label: "1-on-1 Personal Training", href: "#services" }, { label: "Small Group Training", href: "#services" }, - { label: "Intro Offer", href: "#contact" }, + { label: "Intro Offer", href: "#cta" }, ], }, { title: "Company", items: [ { label: "About Us", href: "/about" }, - { label: "Contact", href: "#contact" }, + { label: "Contact", href: "#cta" }, { label: "Testimonials", href: "#testimonials" }, ], }, diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 8adbe0d..284fa7b 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -29,7 +29,7 @@ export default function ContactPage() { { name: "Services", id: "services" }, { name: "Why MELD", id: "why-meld" }, { name: "Testimonials", id: "testimonials" }, - { name: "Contact", id: "contact" }, + { name: "Contact", id: "cta" }, ]} button={{ text: "Call Now", href: "tel:+16177223456"}} @@ -109,13 +109,13 @@ export default function ContactPage() { title: "Services", items: [ { label: "1-on-1 Personal Training", href: "#services" }, { label: "Small Group Training", href: "#services" }, - { label: "Intro Offer", href: "#contact" }, + { label: "Intro Offer", href: "#cta" }, ], }, { title: "Company", items: [ { label: "About Us", href: "/about" }, - { label: "Contact", href: "#contact" }, + { label: "Contact", href: "#cta" }, { label: "Testimonials", href: "#testimonials" }, ], }, diff --git a/src/app/page.tsx b/src/app/page.tsx index 7f0acb8..4ef8028 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,7 +34,7 @@ export default function HomePage() { { name: "Services", id: "services" }, { name: "Why MELD", id: "why-meld" }, { name: "Testimonials", id: "testimonials" }, - { name: "Contact", id: "contact" }, + { name: "Contact", id: "cta" }, ]} button={{ text: "Call Now", href: "tel:+16177223456"}} @@ -52,7 +52,7 @@ export default function HomePage() { background={{ variant: "radial-gradient" }} buttons={[ { text: "Call Now", href: "tel:+16177223456" }, - { text: "Book Free Consultation", href: "#contact" }, + { text: "Book Free Consultation", href: "#cta" }, ]} buttonAnimation="slide-up" dashboard={{ @@ -63,7 +63,7 @@ export default function HomePage() { { icon: Settings, active: false }, ], buttons: [ - { text: "Schedule Session", href: "#contact" }, + { text: "Schedule Session", href: "#cta" }, { text: "Learn More", href: "#why-meld" }, ], stats: [ @@ -111,7 +111,7 @@ export default function HomePage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={false} - buttons={[{ text: "Get Your Intro Offer", href: "#contact" }]} + buttons={[{ text: "Get Your Intro Offer", href: "#cta" }]} buttonAnimation="slide-up" /> @@ -229,7 +229,7 @@ export default function HomePage() { /> -
+
@@ -80,7 +80,7 @@ export default function ServicesPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={true} - buttons={[{ text: "Get Started", href: "#contact" }]} + buttons={[{ text: "Get Started", href: "#cta" }]} buttonAnimation="slide-up" />
@@ -123,13 +123,13 @@ export default function ServicesPage() { title: "Services", items: [ { label: "1-on-1 Personal Training", href: "#services" }, { label: "Small Group Training", href: "#services" }, - { label: "Intro Offer", href: "#contact" }, + { label: "Intro Offer", href: "#cta" }, ], }, { title: "Company", items: [ { label: "About Us", href: "/about" }, - { label: "Contact", href: "#contact" }, + { label: "Contact", href: "#cta" }, { label: "Testimonials", href: "#testimonials" }, ], },