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 Rapharehab’s specialized treatment plans for each injury area—from head to toe—designed to support full recovery with professional.", }; export default function AreaOfInjury() { return (
{areaOfInjuryData.map((item) => { const altText = item.title ? item.title.toUpperCase() : "AREA OF INJURY"; return ( //
//
//
//
//
// // {altText} // //
//
//
//
// {altText} //
//

// {item.title} //

//

{item.shortDescription}

//
//
//
//
{altText}
{altText}

{item.title}

{/*

{item.title}

*/}

{item.shortDescription}

) })}
); }