2025-09-22 18:17:35 +05:30

59 lines
2.2 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Layout from "@/components/layout/Layout";
import Link from "next/link";
import { areaOfInjuryData } from "@/utils/AreaOfInjery.utils";
export const metadata = {
title: "Expert Injury Area Rapharehab Physiotherapy",
description: "Explore Rapharehabs specialized treatment plans for each injury area—from head to toe—designed to support full recovery with professional.",
};
export default function AreaOfInjury() {
return (
<Layout
headerStyle={1}
footerStyle={1}
breadcrumbTitle="Areas of Injury"
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">
{areaOfInjuryData.map((item) => {
const altText = item.title ? item.title.toUpperCase() : "AREA OF INJURY";
return (
<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={`/area-of-injury/${item.slug}`}>
<img src={item.image} alt={altText} />
</Link>
</figure>
</div>
<div className="lower-content new-height">
<div className="icon-box">
<img src={item.icon} alt={altText} />
</div>
<h3>
<Link href={`/area-of-injury/${item.slug}`}>{item.title}</Link>
</h3>
<p>{item.shortDescription}</p>
</div>
</div>
</div>
</div>
)
})}
</div>
</div>
</section>
</Layout>
);
}