Index: components/BuildCard.tsx
===================================================================
--- components/BuildCard.tsx	(revision 1bf6e1f519ad45c39ba56ccdc473328a666f1335)
+++ components/BuildCard.tsx	(revision e09fe6ff3ab0ade0c931236df5aa4b711ed8e058)
@@ -2,8 +2,8 @@
 import { Card, CardMedia, CardContent, Typography, Box, Chip } from '@mui/material';
 import StarIcon from '@mui/icons-material/Star';
-import PersonIcon from '@mui/icons-material/Person';
+// import PersonIcon from '@mui/icons-material/Person';
 
 export default function BuildCard({ build, onClick }: { build: any, onClick: () => void }) {
-    const formattedPrice = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(build.total_price || 0);
+    const formattedPrice = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'EUR' }).format(build.total_price || 0);
 
     return (
@@ -25,8 +25,6 @@
                 {/*Ne se renderira user-ot*/}
                 <Box sx={{ display: 'flex', alignItems: 'center', mb: 1, color: 'text.secondary' }}>
-                {/*    <PersonIcon sx={{ fontSize: 16, mr: 0.5 }} />*/}
-                {/*    <Typography variant="caption">{build.user || 'Unknown'}</Typography>*/}
-                    <Typography variant="h6" gutterBottom noWrap title={build.cpu}>{build.cpu}</Typography>
-                    <Typography variant="h6" gutterBottom noWrap title={build.gpu}>{build.gpu}</Typography>
+                    {/*    <PersonIcon sx={{ fontSize: 16, mr: 0.5 }} />*/}
+                    {/*    <Typography variant="caption">{build.user || 'Unknown'}</Typography>*/}
                 </Box>
 
@@ -36,5 +34,5 @@
                         <StarIcon fontSize="small" sx={{ color: '#faaf00', mr: 0.5 }} />
                         <Typography variant="body2" fontWeight="bold">
-                            {Number(build.avg_rating || 5).toFixed(1)}
+                            {Number(build.avgRating || 5).toFixed(1)}
                         </Typography>
                     </Box>
