import React from "react"; import { Box, Typography, Grid, Card, CardMedia } from "@mui/material"; import brandimage from "../../../brandimage.jpg" const brands = [ { name: "Hockey India", img: brandimage }, { name: "J. Hampstead", img: brandimage }, { name: "Tim Hortons", img: brandimage }, { name: "Brand 4", img: brandimage }, { name: "Brand 5", img: brandimage }, { name: "Brand 6", img: brandimage }, { name: "Hockey India", img: brandimage }, { name: "J. Hampstead", img: brandimage }, { name: "Tim Hortons", img: brandimage }, ]; const TopBrands = () => { return ( TOP BRANDS Here's a look at the clients we've worked with. If you'd like to work with the best digital agency too, we'd love to hear from you. Drop us a line and we'll look forward to brewing something fresh for you! {brands.map((brand, index) => ( ))} ); }; export default TopBrands;