51 lines
2.6 KiB
JavaScript
51 lines
2.6 KiB
JavaScript
|
||
import Layout from "@/components/layout/Layout"
|
||
import Link from "next/link"
|
||
import { servicesList } from "@/utils/Services.utils"
|
||
|
||
export const metadata = {
|
||
title: "Our Professional Services – Rapharehab Physiotherapy",
|
||
description: "Explore a full range of trusted services at Rapharehab, from physiotherapy to acupuncture, massage, osteopathy, chiropody, and more.",
|
||
};
|
||
|
||
export default function ServicesPage() {
|
||
return (
|
||
<Layout headerStyle={2} footerStyle={1} breadcrumbTitle="Services"
|
||
bannerImage="/assets/images/areas-of-injury/area-of-injury-banner.webp">
|
||
<section className="service-section sec-pad-2">
|
||
<div className="auto-container">
|
||
<div className="row clearfix">
|
||
{servicesList.map((item) => (
|
||
<div className="col-lg-4 col-md-6 col-sm-12 service-block" key={item.id}>
|
||
<div className="service-block-one wow fadeInUp animated" data-wow-delay="00ms" data-wow-duration="1500ms">
|
||
<div className="inner-box">
|
||
<div className="image-box">
|
||
<figure className="image">
|
||
<Link href={`/etobicoke-treatment-service/${item.slug}`}>
|
||
<img src={item.image} alt={item.title} />
|
||
</Link>
|
||
</figure>
|
||
</div>
|
||
<div className="lower-content">
|
||
<div className="icon-box">
|
||
<img
|
||
src={item.icon}
|
||
alt={`${item.title} Icon`}
|
||
/>
|
||
</div>
|
||
<h3>
|
||
<Link href={`/etobicoke-treatment-service/${item.slug}`}>{item.shortTitle}</Link>
|
||
</h3>
|
||
<p>{item.shortDescription}</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
))}
|
||
</div>
|
||
</div>
|
||
</section>
|
||
</Layout>
|
||
)
|
||
}
|