import Layout from "@/components/layout/Layout"; import Link from "next/link"; import Blogs from "@/utils/Blog.utils"; export const metadata = { title: "Rapharehab Blog – Wellness Tips & Rehab Insights", description: "Explore expert articles from Rapharehab on physiotherapy, injury recovery, and wellness. Stay informed with trusted health tips and rehab advice.", }; export default function Blog() { return (
Our Blog

Stay Updated with
Our Recent Blog Posts

{Blogs.map((blog, i) => (
{blog.title}
{/*
  • {blog.author}
  • {blog.date}
  • {blog.comments}
*/}

{/* {blog.title.split(" ").length > 5 ? blog.title.split(" ").slice(0, 5).join(" ") + "..." : blog.title} */} {blog.title.length > 35 ? blog.title.slice(0, 35) + "..." : blog.title}

{blog.shortDesc.length > 80 ? blog.shortDesc.slice(0, 80) + "..." : blog.shortDesc}

Read More
))}
); }