diff --git a/app/blog/page.js b/app/blog/page.js index 5064293..3de4db7 100644 --- a/app/blog/page.js +++ b/app/blog/page.js @@ -57,11 +57,11 @@ export default function Blog() { {/* Blog Title */}
-

+

{truncateTitle(stripHtml(blog.title), 30)} -

+ {/* Blog Excerpt */}

diff --git a/app/gallery/GalleryLightbox.js b/app/gallery/GalleryLightbox.js index 4252dbe..5c7baf0 100644 --- a/app/gallery/GalleryLightbox.js +++ b/app/gallery/GalleryLightbox.js @@ -10,24 +10,111 @@ export default function GalleryLightbox({ images }) { return ( <>

- {images.map((img, idx) => ( -
-
-
-
{ setPhotoIndex(idx); setIsOpen(true); }} - > - {`Gallery -
-
Image {idx + 1}
+ + {/* Column 1 */} +
+
+
+
{ setPhotoIndex(0); setIsOpen(true); }} + style={{ cursor: "pointer" }} + > + Combos +
+
Combos
+
+
+
+
+
+ + {/* Column 2 */} +
+
+
+
{ setPhotoIndex(1); setIsOpen(true); }} + style={{ cursor: "pointer" }} + > + Milk Shakes +
+
Milk Shakes
+
+
+
+
+
+
+
{ setPhotoIndex(2); setIsOpen(true); }} + style={{ cursor: "pointer" }} + > + Poutine +
+
Poutine
+
+
+
+
+
+ + {/* Column 3 */} +
+
+
+
+
+
{ setPhotoIndex(3); setIsOpen(true); }} + style={{ cursor: "pointer" }} + > + Salads +
+
Salads
+
+
+
+
+
+
+
+
+
{ setPhotoIndex(4); setIsOpen(true); }} + style={{ cursor: "pointer" }} + > + Shawarma Wraps +
+
Shawarma Wraps
+
+
+
+
+
+
+
+
+
{ setPhotoIndex(5); setIsOpen(true); }} + style={{ cursor: "pointer" }} + > + Dosa +
+
Dosa
+
- ))} +
+
{isOpen && ( diff --git a/components/sections/home2/blog.js b/components/sections/home2/blog.js index 994b305..3304d2d 100644 --- a/components/sections/home2/blog.js +++ b/components/sections/home2/blog.js @@ -34,15 +34,15 @@ export default function Blog() { {/* Blog Title */}
-

+

- {stripHtml(blog.title)} + {truncateWords(stripHtml(blog.title), 6)} -

+ {/* Blog Excerpt */}

- {truncateWords(stripHtml(blog.para))} + {truncateWords(stripHtml(blog.para), 28)}

{/* Read More Button */}