Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a6537d6ba6 | |||
| ca50180fff | |||
| 693e116350 | |||
| b46a5b8a3f | |||
| 6db2f6d073 | |||
| 1970034c93 | |||
| 71ba4daa5e | |||
| 22b2f42706 | |||
| f3bc3dbf07 | |||
| bead972d69 | |||
| d8a66b1271 |
@@ -14,16 +14,16 @@ export default function AboutPage() {
|
|||||||
{ name: "Pricing", id: "/pricing" },
|
{ name: "Pricing", id: "/pricing" },
|
||||||
{ name: "Testimonials", id: "/#testimonials" },
|
{ name: "Testimonials", id: "/#testimonials" },
|
||||||
{ name: "FAQ", id: "/#faq" },
|
{ name: "FAQ", id: "/#faq" },
|
||||||
{ name: "Contact", id: "/#contact" },
|
{ name: "Contact", id: "/#contact-lead" },
|
||||||
];
|
];
|
||||||
|
|
||||||
const footerColumns = [
|
const footerColumns = [
|
||||||
{
|
{
|
||||||
title: "Services", items: [
|
title: "Services", items: [
|
||||||
{ label: "Physical Therapy", href: "#services" },
|
{ label: "Physical Therapy", href: "/services" },
|
||||||
{ label: "Sports Medicine", href: "#services" },
|
{ label: "Sports Medicine", href: "/services" },
|
||||||
{ label: "Pain Management", href: "#services" },
|
{ label: "Pain Management", href: "/services" },
|
||||||
{ label: "Work Injury Care", href: "#services" },
|
{ label: "Work Injury Care", href: "/services" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -31,7 +31,7 @@ export default function AboutPage() {
|
|||||||
{ label: "About Us", href: "/about" },
|
{ label: "About Us", href: "/about" },
|
||||||
{ label: "Testimonials", href: "/#testimonials" },
|
{ label: "Testimonials", href: "/#testimonials" },
|
||||||
{ label: "Pricing", href: "/pricing" },
|
{ label: "Pricing", href: "/pricing" },
|
||||||
{ label: "Contact", href: "/#contact" },
|
{ label: "Contact", href: "/#contact-lead" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -39,7 +39,7 @@ export default function AboutPage() {
|
|||||||
{ label: "Privacy Policy", href: "#" },
|
{ label: "Privacy Policy", href: "#" },
|
||||||
{ label: "Terms of Service", href: "#" },
|
{ label: "Terms of Service", href: "#" },
|
||||||
{ label: "Accessibility", href: "#" },
|
{ label: "Accessibility", href: "#" },
|
||||||
{ label: "Contact Us", href: "/#contact" },
|
{ label: "Contact Us", href: "/#contact-lead" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -20,7 +20,8 @@ export const metadata: Metadata = {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
twitter: {
|
twitter: {
|
||||||
card: "summary_large_image", title: "Pyatt MSK Rehabilitation", description: "Expert physiotherapy and MSK rehabilitation services", images: ["http://img.b2bpic.net/free-photo/orthopedic-specialist-assisting-old-patient-with-leg-joint-injury_482257-26987.jpg"],
|
card: "summary_large_image", title: "Pyatt MSK Rehabilitation", description: "Expert physiotherapy and MSK rehabilitation services", images: [
|
||||||
|
"http://img.b2bpic.net/free-photo/orthopedic-specialist-assisting-old-patient-with-leg-joint-injury_482257-26987.jpg"],
|
||||||
},
|
},
|
||||||
robots: {
|
robots: {
|
||||||
index: true,
|
index: true,
|
||||||
|
|||||||
@@ -14,20 +14,20 @@ import { Heart } from "lucide-react";
|
|||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "/services" },
|
||||||
{ name: "Pricing", id: "/pricing" },
|
{ name: "Pricing", id: "/pricing" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "#testimonials" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "#faq" },
|
||||||
{ name: "Contact", id: "contact-lead" },
|
{ name: "Contact", id: "#contact-lead" },
|
||||||
];
|
];
|
||||||
|
|
||||||
const footerColumns = [
|
const footerColumns = [
|
||||||
{
|
{
|
||||||
title: "Services", items: [
|
title: "Services", items: [
|
||||||
{ label: "Physical Therapy", href: "#services" },
|
{ label: "Physical Therapy", href: "/services" },
|
||||||
{ label: "Sports Medicine", href: "#services" },
|
{ label: "Sports Medicine", href: "/services" },
|
||||||
{ label: "Pain Management", href: "#services" },
|
{ label: "Pain Management", href: "/services" },
|
||||||
{ label: "Work Injury Care", href: "#services" },
|
{ label: "Work Injury Care", href: "/services" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -71,7 +71,7 @@ export default function HomePage() {
|
|||||||
description="Expert musculoskeletal rehabilitation and physiotherapy. Get back to doing what you love with personalized treatment plans designed for your recovery."
|
description="Expert musculoskeletal rehabilitation and physiotherapy. Get back to doing what you love with personalized treatment plans designed for your recovery."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Book Your Assessment", href: "#contact-lead" },
|
{ text: "Book Your Assessment", href: "#contact-lead" },
|
||||||
{ text: "Learn More", href: "#services" },
|
{ text: "Learn More", href: "/services" },
|
||||||
]}
|
]}
|
||||||
background={{ variant: "sparkles-gradient" }}
|
background={{ variant: "sparkles-gradient" }}
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQpbnFYe6fEjhWs3QB3kCkfR4d/uploaded-1772535267968-hspmpn0c.png?_wi=1"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQpbnFYe6fEjhWs3QB3kCkfR4d/uploaded-1772535267968-hspmpn0c.png?_wi=1"
|
||||||
@@ -134,7 +134,7 @@ export default function HomePage() {
|
|||||||
{
|
{
|
||||||
id: "4", title: "Work Injury Rehabilitation", content: "Occupational rehabilitation and ergonomic assessment to help you return to work safely and prevent future workplace injuries."},
|
id: "4", title: "Work Injury Rehabilitation", content: "Occupational rehabilitation and ergonomic assessment to help you return to work safely and prevent future workplace injuries."},
|
||||||
]}
|
]}
|
||||||
buttons={[{ text: "Explore Services", href: "#services" }]}
|
buttons={[{ text: "Explore Services", href: "/services" }]}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -14,16 +14,16 @@ export default function PricingPage() {
|
|||||||
{ name: "Pricing", id: "/pricing" },
|
{ name: "Pricing", id: "/pricing" },
|
||||||
{ name: "Testimonials", id: "/#testimonials" },
|
{ name: "Testimonials", id: "/#testimonials" },
|
||||||
{ name: "FAQ", id: "/#faq" },
|
{ name: "FAQ", id: "/#faq" },
|
||||||
{ name: "Contact", id: "/#contact" },
|
{ name: "Contact", id: "/#contact-lead" },
|
||||||
];
|
];
|
||||||
|
|
||||||
const footerColumns = [
|
const footerColumns = [
|
||||||
{
|
{
|
||||||
title: "Services", items: [
|
title: "Services", items: [
|
||||||
{ label: "Physical Therapy", href: "#services" },
|
{ label: "Physical Therapy", href: "/services" },
|
||||||
{ label: "Sports Medicine", href: "#services" },
|
{ label: "Sports Medicine", href: "/services" },
|
||||||
{ label: "Pain Management", href: "#services" },
|
{ label: "Pain Management", href: "/services" },
|
||||||
{ label: "Work Injury Care", href: "#services" },
|
{ label: "Work Injury Care", href: "/services" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -31,7 +31,7 @@ export default function PricingPage() {
|
|||||||
{ label: "About Us", href: "/about" },
|
{ label: "About Us", href: "/about" },
|
||||||
{ label: "Testimonials", href: "/#testimonials" },
|
{ label: "Testimonials", href: "/#testimonials" },
|
||||||
{ label: "Pricing", href: "/pricing" },
|
{ label: "Pricing", href: "/pricing" },
|
||||||
{ label: "Contact", href: "/#contact" },
|
{ label: "Contact", href: "/#contact-lead" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -39,7 +39,7 @@ export default function PricingPage() {
|
|||||||
{ label: "Privacy Policy", href: "#" },
|
{ label: "Privacy Policy", href: "#" },
|
||||||
{ label: "Terms of Service", href: "#" },
|
{ label: "Terms of Service", href: "#" },
|
||||||
{ label: "Accessibility", href: "#" },
|
{ label: "Accessibility", href: "#" },
|
||||||
{ label: "Contact Us", href: "/#contact" },
|
{ label: "Contact Us", href: "/#contact-lead" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -13,16 +13,16 @@ export default function ServicesPage() {
|
|||||||
{ name: "Pricing", id: "/pricing" },
|
{ name: "Pricing", id: "/pricing" },
|
||||||
{ name: "Testimonials", id: "/#testimonials" },
|
{ name: "Testimonials", id: "/#testimonials" },
|
||||||
{ name: "FAQ", id: "/#faq" },
|
{ name: "FAQ", id: "/#faq" },
|
||||||
{ name: "Contact", id: "/#contact" },
|
{ name: "Contact", id: "/#contact-lead" },
|
||||||
];
|
];
|
||||||
|
|
||||||
const footerColumns = [
|
const footerColumns = [
|
||||||
{
|
{
|
||||||
title: "Services", items: [
|
title: "Services", items: [
|
||||||
{ label: "Physical Therapy", href: "#services" },
|
{ label: "Physical Therapy", href: "/services" },
|
||||||
{ label: "Sports Medicine", href: "#services" },
|
{ label: "Sports Medicine", href: "/services" },
|
||||||
{ label: "Pain Management", href: "#services" },
|
{ label: "Pain Management", href: "/services" },
|
||||||
{ label: "Work Injury Care", href: "#services" },
|
{ label: "Work Injury Care", href: "/services" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -30,7 +30,7 @@ export default function ServicesPage() {
|
|||||||
{ label: "About Us", href: "/about" },
|
{ label: "About Us", href: "/about" },
|
||||||
{ label: "Testimonials", href: "/#testimonials" },
|
{ label: "Testimonials", href: "/#testimonials" },
|
||||||
{ label: "Pricing", href: "/pricing" },
|
{ label: "Pricing", href: "/pricing" },
|
||||||
{ label: "Contact", href: "/#contact" },
|
{ label: "Contact", href: "/#contact-lead" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -38,7 +38,7 @@ export default function ServicesPage() {
|
|||||||
{ label: "Privacy Policy", href: "#" },
|
{ label: "Privacy Policy", href: "#" },
|
||||||
{ label: "Terms of Service", href: "#" },
|
{ label: "Terms of Service", href: "#" },
|
||||||
{ label: "Accessibility", href: "#" },
|
{ label: "Accessibility", href: "#" },
|
||||||
{ label: "Contact Us", href: "/#contact" },
|
{ label: "Contact Us", href: "/#contact-lead" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
@@ -79,7 +79,7 @@ export default function ServicesPage() {
|
|||||||
{
|
{
|
||||||
id: "4", title: "Work Injury Rehabilitation", content: "Occupational rehabilitation and ergonomic assessment to help you return to work safely and prevent future workplace injuries."},
|
id: "4", title: "Work Injury Rehabilitation", content: "Occupational rehabilitation and ergonomic assessment to help you return to work safely and prevent future workplace injuries."},
|
||||||
]}
|
]}
|
||||||
buttons={[{ text: "Explore Services", href: "#services" }]}
|
buttons={[{ text: "Explore Services", href: "/services" }]}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user