New 2 blogs updated
@ -39,13 +39,16 @@ export default function Blog() {
|
||||
<li>{blog.comments}</li>
|
||||
</ul> */}
|
||||
<h3>
|
||||
<Link href={`/blog/${blog.slug}`} aria-label="Our Blog Title">
|
||||
{/* <Link href={`/blog/${blog.slug}`} aria-label="Our Blog Title">
|
||||
{blog.title.split(" ").length > 5
|
||||
? blog.title.split(" ").slice(0, 5).join(" ") + "..."
|
||||
: blog.title}
|
||||
</Link>
|
||||
</Link> */}
|
||||
<Link href={`/blog/${blog.slug}`} aria-label="Our Blog title">
|
||||
{blog.title.length > 35 ? blog.title.slice(0, 35) + "..." : blog.title}
|
||||
</Link>
|
||||
</h3>
|
||||
<p>{blog.shortDesc}</p>
|
||||
<p> {blog.shortDesc.length > 80 ? blog.shortDesc.slice(0, 80) + "..." : blog.shortDesc}</p>
|
||||
<div className="link">
|
||||
<Link href={`/blog/${blog.slug}`} aria-label="Read More"><span>Read More</span></Link>
|
||||
</div>
|
||||
|
||||
BIN
public/assets/images/blog/blog-15/chronic-back-pain-banner.webp
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
public/assets/images/blog/blog-15/chronic-back-pain-big-img.webp
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
public/assets/images/blog/blog-15/chronic-back-pain-card.webp
Normal file
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 10 KiB |
BIN
public/assets/images/blog/blog-15/chronic-back-pain-left.webp
Normal file
|
After Width: | Height: | Size: 4.7 KiB |
BIN
public/assets/images/blog/blog-15/chronic-back-pain-right.webp
Normal file
|
After Width: | Height: | Size: 7.8 KiB |
BIN
public/assets/images/blog/blog-16/massage-therapy-banner.webp
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
public/assets/images/blog/blog-16/massage-therapy-big-img.webp
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
public/assets/images/blog/blog-16/massage-therapy-card.webp
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
public/assets/images/blog/blog-16/massage-therapy-left-img.webp
Normal file
|
After Width: | Height: | Size: 7.2 KiB |
BIN
public/assets/images/blog/blog-16/massage-therapy-left.webp
Normal file
|
After Width: | Height: | Size: 9.7 KiB |
BIN
public/assets/images/blog/blog-16/massage-therapy-right.webp
Normal file
|
After Width: | Height: | Size: 10 KiB |
@ -73,6 +73,8 @@ const blogPosts = [
|
||||
{ slug: '/blog/post-surgery-rehabilitation-in-etobicoke-step-by-step-guide-to-faster-recovery/' },
|
||||
{ slug: '/blog/top-benefits-of-physiotherapy-in-etobicoke-for-pain-relief-and-better-mobility/' },
|
||||
{ slug: '/blog/sports-injury-rehabilitation-how-etobicoke-athletes-recover-faster-with-rapharehab/' },
|
||||
{ slug: '/blog/what-is-the-best-treatment-for-chronic-back-pain-in-etobicoke-and-how-long-does-recovery-take/' },
|
||||
{ slug: '/blog/can-massage-therapy-at-rapha-rehab-help-with-sports-injuries-or-muscle-stiffness/' },
|
||||
];
|
||||
|
||||
// Convert blog slugs to sitemap entries
|
||||
|
||||