import React from "react"; import Grid from "@mui/material/Grid"; import Card from "@mui/material/Card"; import Typography from "@mui/material/Typography"; import Box from "@mui/material/Box"; import Button from '@mui/material/Button'; import Link from 'next/link'; import styles from '@/styles/PageTitle.module.css'; const clientsLists = [ { image: '/images/member1.png', name: 'Alvarado Turner', userName: '@alvaradoTurner', email: 'alvaradoturner@gmail.com', projectsUrl: '#', location: 'New York, USA', phone: '+1 123 456 789', }, { image: '/images/member2.png', name: 'Evangelina Mcclain', userName: '@evangelinaMcclain', email: 'evangelina@gmail.com', projectsUrl: '#', location: 'Switzerland', phone: '+1 123 468 789', }, { image: '/images/member3.png', name: 'Candice Munoz', userName: '@candiceMunoz', email: 'candiceMunoz@gmail.com', projectsUrl: '#', location: 'Germany', phone: '+1 123 456 842', }, { image: '/images/member4.png', name: 'Bernard Langley', userName: '@bernardLangley', email: 'bernardLangley@gmail.com', projectsUrl: '#', location: 'Canada', phone: '+1 123 256 789', }, { image: '/images/member5.png', name: 'Kristie Hall', userName: '@kristieHall', email: 'kristieHall@gmail.com', projectsUrl: '#', location: 'United States', phone: '+1 123 456 742', }, { image: '/images/member6.png', name: 'Bolton Obrien', userName: '@boltonObrien', email: 'boltonObrien@gmail.com', projectsUrl: '#', location: 'Sweden', phone: '+1 123 346 789', }, { image: '/images/member7.png', name: 'Dee Alvarado', userName: '@deeAlvarado', email: 'deeAlvarado@gmail.com', projectsUrl: '#', location: 'Japan', phone: '+1 123 456 953', }, { image: '/images/member8.png', name: 'Cervantes Kramer', userName: '@cervantesKramer', email: 'cervantesKramer@gmail.com', projectsUrl: '#', location: 'Australia', phone: '+1 123 368 789', }, { image: '/images/member9.png', name: 'Dejesus Michael', userName: '@dejesusMichael', email: 'dejesusMichael@gmail.com', projectsUrl: '#', location: 'United Kingdom', phone: '+1 123 456 742', }, { image: '/images/member10.png', name: 'Alissa Nelson', userName: '@alissaNelson', email: 'alissaNelson@gmail.com', projectsUrl: '#', location: 'France', phone: '+1 123 356 789', }, { image: '/images/member11.png', name: 'English Haney', userName: '@englishHaney', email: 'englishHaney@gmail.com', projectsUrl: '#', location: 'Denmark', phone: '+1 123 456 566', }, { image: '/images/member12.png', name: 'Edwards Mckenzie', userName: '@edwardsMckenzie', email: 'edwardsMckenzie@gmail.com', projectsUrl: '#', location: 'New Zealand', phone: '+1 123 357 789', }, ]; export default function Clients() { return ( <> {/* Page title */}

Clients

{clientsLists.map((client) => ( Member {client.name} {client.userName} Location {client.location} Phone {client.phone} ))} ); }