import Layout from "@/components/layout/Layout" import Link from "next/link" export default function Home() { const getTestimonialName = (index) => { // Replace with actual names based on the index or fetch from a data source const names = ['Jane Cooper', 'Black, Marvin', 'Jenny Wilson', 'Devon Lane', 'Jacob Jones', 'Ralph Edwards']; return names[index - 1] || 'Unknown'; }; const getTestimonialDesignation = (index) => { // Replace with actual designations based on the index or fetch from a data source const designations = ['Marketing Coordinator', 'Web Designer', 'Medical Assistant', 'President of Sales', 'Nursing Assistant', 'Dog Trainer']; return designations[index - 1] || 'Unknown Designation'; }; return ( <>
{/* Repeat the testimonial blocks for each testimonial */} {[1, 2, 3, 4, 5, 6].map((index) => (

Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia coequat duis enim velit mollit.

{/* Replace the names and designations dynamically */}

{getTestimonialName(index)}

{getTestimonialDesignation(index)}
))}
  • 1
  • 2
  • 3
{/* subscibe */}

Subscribe for the exclusive updates!

{/* subscibe end */}
) }