diff --git a/app/Components/ServerList.tsx b/app/Components/ServerList.tsx index 36e9b34..b85241a 100644 --- a/app/Components/ServerList.tsx +++ b/app/Components/ServerList.tsx @@ -6,6 +6,7 @@ import { Grid, Card, CardContent, CardActions, Typography, Box, Chip, Dialog, Di import ServerIcon from '@mui/icons-material/Dns'; import SignalCellularAltIcon from '@mui/icons-material/SignalCellularAlt'; import AttachMoneyIcon from '@mui/icons-material/AttachMoney'; +import StarIcon from '@mui/icons-material/Star'; import Rating from '@mui/material/Rating'; import useAuth from '~/hooks/useAuth'; import { signMessage } from './Metamask/Connections'; @@ -15,6 +16,7 @@ interface Node { ip: string; traffic: number; price : number; + rating : number; } function NodeItem({node}: {node: Node}) { @@ -101,6 +103,19 @@ function NodeItem({node}: {node: Node}) { variant="outlined" /> + + + + + Rating: + + 3 ? "success" : "warning"} + variant="outlined" + /> +