import Image from "next/image"; import React from "react"; import Container from "./container"; import userOneImg from "../public/img/user1.jpg"; import userTwoImg from "../public/img/user2.jpg"; import userThreeImg from "../public/img/user3.jpg"; const Testimonials = () => { return (

Share a real testimonial that hits some of your benefits from one of your popular customer.

Make sure you only pick the right sentence to keep it short and simple.

This is an awesome landing page template I've seen. I would use this for anything.

); } function Avatar(props) { return (
Avatar
{props.name}
{props.title}
); } function Mark(props) { return ( <> {" "} {props.children} {" "} ); } export default Testimonials;