import React from "react"; import Grid from "@mui/material/Grid"; import { Box, Typography } from "@mui/material"; import Card from "@mui/material/Card"; import Button from "@mui/material/Button"; import IconButton from "@mui/material/IconButton"; import DeleteIcon from "@mui/icons-material/Delete"; import Tooltip from "@mui/material/Tooltip"; import BorderColorIcon from "@mui/icons-material/BorderColor"; import Link from "next/link"; import styles from '@/styles/PageTitle.module.css' const sellerLists = [ { id: 1, brandLogo: "/images/seller1.png", brandName: "Nesta Technologies", sellersName: "Katia Stapleton", itemStock: "12,0558", walletBalance: "$48,450.00", viewUrl: "#", }, { id: 2, brandLogo: "/images/seller2.png", brandName: "Force Medicines", sellersName: "Wade Dave", itemStock: "10,500", walletBalance: "$50,500.00", viewUrl: "#", }, { id: 3, brandLogo: "/images/seller3.png", brandName: "Metelgo Sys", sellersName: "Gilbert Dan", itemStock: "8,450", walletBalance: "$60,450.00", viewUrl: "#", }, { id: 4, brandLogo: "/images/seller4.png", brandName: "Digito Galatoxy", sellersName: "Roberto Ramon", itemStock: "15,0587", walletBalance: "$78,450.00", viewUrl: "#", }, { id: 5, brandLogo: "/images/seller5.png", brandName: "Micro Technology", sellersName: "Nathaniel Liam", itemStock: "18,0558", walletBalance: "$65,450.00", viewUrl: "#", }, { id: 6, brandLogo: "/images/seller6.png", brandName: "iTest Factory", sellersName: "Ethan Milton", itemStock: "19,0558", walletBalance: "$76,450.00", viewUrl: "#", }, { id: 7, brandLogo: "/images/seller7.png", brandName: "Syntech Service", sellersName: "Joshua Harvey", itemStock: "20,0558", walletBalance: "$56,450.00", viewUrl: "#", }, { id: 8, brandLogo: "/images/seller8.png", brandName: "Zotic Mentex", sellersName: "Antonio Connor", itemStock: "22,0558", walletBalance: "$90,450.00", viewUrl: "#", }, ]; const Sellers = () => { return ( <> {/* Page title */}

Sellers

{sellerLists.map((seller) => ( Seller {seller.brandName} {seller.sellersName} Item Stock {seller.itemStock} Wallet Balance {seller.walletBalance} {/* Edit & Delete Button */} ))} ); }; export default Sellers;