Index: components/BuildCard.tsx
===================================================================
--- components/BuildCard.tsx	(revision 6ce67397d2c78df0968f51f75185de688968b04a)
+++ components/BuildCard.tsx	(revision 387083452a874472599c1fd728bdeea99bf1c966)
@@ -1,36 +1,79 @@
-import React from 'react';
-import { Card, CardMedia, CardContent, Typography, Box, Chip } from '@mui/material';
+import React, {useEffect, useState} from 'react';
+import {Card, CardContent, CardMedia, Typography, Box, Chip} from '@mui/material';
 import StarIcon from '@mui/icons-material/Star';
-// import PersonIcon from '@mui/icons-material/Person';
+import {onGetBuildDetails} from "../pages/+Layout.telefunc";
 
-export default function BuildCard({ build, onClick }: { build: any, onClick: () => void }) {
-    const formattedPrice = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'EUR' }).format(build.total_price || 0);
+export default function BuildCard({build, onClick}: { build: any, onClick?: () => void }) {
+    const [caseImage, setCaseImage] = useState<string>("https://placehold.co/600x400?text=PC+Build");
+    const [imageLoading, setImageLoading] = useState(true);
+
+    const formattedPrice = new Intl.NumberFormat('en-US', {
+        style: 'currency',
+        currency: 'EUR'
+    }).format(build.total_price || 0);
+
+    useEffect(() => {
+        onGetBuildDetails({buildId: build.id})
+            .then(details => {
+                const caseComponent = details.components.find((c: any) => c.type === 'case');
+                setCaseImage(caseComponent?.imgUrl || caseComponent?.imgUrl || "https://placehold.co/600x400?text=PC+Build");
+            })
+            .catch(() => {
+            })
+            .finally(() => setImageLoading(false));
+    }, [build.id]);
 
     return (
         <Card
-            sx={{ height: '100%', display: 'flex', flexDirection: 'column', cursor: 'pointer', transition: 'all 0.2s', '&:hover': { transform: 'translateY(-4px)', boxShadow: 6 } }}
             onClick={onClick}
+            sx={{
+                width: '100%',
+                height: '100%',
+                display: 'flex',
+                flexDirection: 'column',
+                cursor: onClick ? 'pointer' : 'default',
+                transition: 'transform 0.2s, box-shadow 0.2s',
+                '&:hover': onClick ? {
+                    transform: 'translateY(-4px)',
+                    boxShadow: 6
+                } : {},
+                position: 'relative'
+            }}
         >
-            <CardMedia
-                component="img"
-                height="160"
-                image={build.img_url || "https://placehold.co/600x400?text=PC+Build"}
-                alt={build.name}
-            />
-            <CardContent sx={{ flexGrow: 1, pb: 1 }}>
-                <Typography gutterBottom variant="h6" noWrap title={build.name}>
-                    {build.name}
-                </Typography>
+            <Box sx={{position: 'relative', paddingTop: '75%'}}>
+                <CardMedia
+                    component="img"
+                    image={caseImage || '/placeholder-pc.png'}
+                    alt={build.name}
+                    sx={{
+                        position: 'absolute',
+                        top: 0,
+                        left: 0,
+                        width: '100%',
+                        height: '100%',
+                        objectFit: 'contain',
+                        p: 2,
+                        bgcolor: '#f5f5f5'
+                    }}
+                />
+            </Box>
 
-                {/*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>*/}
+            <CardContent sx={{flexGrow: 1, display: 'flex', flexDirection: 'column', justifyContent: 'space-between'}}>
+                <Box sx={{mb: 2}}>
+                    <Typography variant="h6" component="div" fontWeight="bold" wrap title={build.name}>
+                        {build.name}
+                    </Typography>
                 </Box>
 
-                <Box sx={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', mt: 'auto' }}>
-                    <Chip label={formattedPrice} size="small" color="primary" variant="outlined" />
-                    <Box sx={{ display: 'flex', alignItems: 'center' }}>
-                        <StarIcon fontSize="small" sx={{ color: '#faaf00', mr: 0.5 }} />
+                <Box sx={{display: 'flex', justifyContent: 'space-between', alignItems: 'center', mt: 'auto'}}>
+                    <Chip
+                        label={formattedPrice}
+                        color="primary"
+                        variant="outlined"
+                        size="small"
+                        sx={{fontWeight: 'bold'}}
+                    />
+                    <Box sx={{display: 'flex', alignItems: 'center'}}>
+                        <StarIcon sx={{color: '#faaf00', fontSize: 20, mr: 0.5}}/>
                         <Typography variant="body2" fontWeight="bold">
                             {Number(build.avgRating || 5).toFixed(1)}
Index: components/BuildDetailsDialog.tsx
===================================================================
--- components/BuildDetailsDialog.tsx	(revision 6ce67397d2c78df0968f51f75185de688968b04a)
+++ components/BuildDetailsDialog.tsx	(revision 387083452a874472599c1fd728bdeea99bf1c966)
@@ -1,6 +1,6 @@
 import React, { useEffect, useState } from 'react';
 import {
-    Dialog, DialogTitle, DialogContent, Button, Grid, Box, Typography,
-    IconButton, Tab, Tabs, Table, TableBody, TableCell, TableRow, Rating, TextField, Avatar, Chip
+    Dialog, DialogTitle, DialogContent, DialogActions, Button, Grid, Box, Typography,
+    IconButton, Tab, Tabs, Table, TableBody, TableCell, TableRow, Rating, TextField, Avatar, Chip, Alert
 } from '@mui/material';
 import CloseIcon from '@mui/icons-material/Close';
@@ -9,12 +9,14 @@
 import FavoriteBorderIcon from '@mui/icons-material/FavoriteBorder';
 import PersonIcon from "@mui/icons-material/Person";
-import { onGetBuildDetails, onSetReview, onToggleFavorite } from '../pages/+Layout.telefunc';
+import {onGetBuildDetails, onSetReview, onToggleFavorite, onCloneBuild, onSetRating} from '../pages/+Layout.telefunc';
 
 const formatPrice = (price: any) => new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(Number(price) || 0);
 
-export default function BuildDetailsDialog({ open, buildId, onClose, onClone, currentUser }: any) {
+export default function BuildDetailsDialog({ open, buildId, onClose, currentUser }: any) {
     const [details, setDetails] = useState<any>(null);
     const [loading, setLoading] = useState(false);
     const [tabIndex, setTabIndex] = useState(0);
+    const [cloneDialogOpen, setCloneDialogOpen] = useState(false);
+    const [cloningBuildId, setCloningBuildId] = useState<number | null>(null);
 
     const [reviewText, setReviewText] = useState("");
@@ -45,7 +47,15 @@
     const handleSubmitReview = async () => {
         if (!currentUser) return alert("Please login to review.");
-        await onSetReview({ buildId, content: reviewText });
-
-        setReviewText("");
+
+        await onSetReview({
+            buildId,
+            content: reviewText,
+            // rating: ratingVal
+        });
+
+        await onSetRating({
+            buildId,
+            value: ratingVal
+        })
 
         const refreshed = await onGetBuildDetails({ buildId });
@@ -53,158 +63,204 @@
     };
 
+    const handleCloneConfirm = async () => {
+        if (!cloningBuildId) return;
+
+        try {
+            const newBuildId = await onCloneBuild({ buildId: cloningBuildId });
+
+            window.location.href = `/forge?buildId=${newBuildId}`;
+
+            setCloneDialogOpen(false);
+            setCloningBuildId(null);
+        } catch (e) {
+            alert("Failed to clone build. Please try again.");
+        }
+    };
+
+
     if (!open) return null;
 
-    // @ts-ignore
     return (
-        <Dialog open={open} onClose={onClose} maxWidth="md" fullWidth scroll="paper">
-            {loading || !details ? (
-                <Box sx={{ p: 5, textAlign: 'center' }}>Loading Forge Schematics...</Box>
-            ) : (
-                <>
-                    <DialogTitle sx={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', bgcolor: '#ff8201' }}>
-                        <Box>
-                            <Typography variant="h5" fontWeight="bold">{details.name}</Typography>
-                            <Box sx={{ display: 'flex', alignItems: 'center', gap: 1 }}>
-                                <PersonIcon sx={{ fontSize: 16 }} />
-                                <Typography variant="subtitle2" color="text.secondary" fontWeight="bold">
-                                    by {details.creator}
-                                </Typography>
-                                <Chip label={formatPrice(details.totalPrice)} size="small" color="primary" variant="outlined" />
+        <>
+            <Dialog open={open} onClose={onClose} maxWidth="md" fullWidth scroll="paper">
+                {loading || !details ? (
+                    <Box sx={{ p: 5, textAlign: 'center' }}>Loading Forge Schematics...</Box>
+                ) : (
+                    <>
+                        <DialogTitle sx={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', bgcolor: '#ff8201' }}>
+                            <Box>
+                                <Typography variant="h5" fontWeight="bold">{details.name}</Typography>
+                                <Box sx={{ display: 'flex', alignItems: 'center', gap: 1 }}>
+                                    <PersonIcon sx={{ fontSize: 16 }} />
+                                    <Typography variant="subtitle2" color="text.secondary" fontWeight="bold">
+                                        by {details.creator}
+                                    </Typography>
+                                    <Chip label={formatPrice(details.totalPrice)} size="small" color="primary" variant="outlined" />
+                                </Box>
                             </Box>
-                        </Box>
-                        <IconButton onClick={onClose}><CloseIcon /></IconButton>
-                    </DialogTitle>
-
-                    <DialogContent sx={{ p: 0 }}>
-                        <Box sx={{ borderBottom: 1, borderColor: 'divider', px: 2, bgcolor: 'primary', position: 'sticky', top: 0, zIndex: 1 }}>
-                            <Tabs value={tabIndex} onChange={(_, v) => setTabIndex(v)}>
-                                <Tab label="Specs" />
-                                <Tab label={`Reviews (${details.ratingStatistics.ratingCount})`} />
-                            </Tabs>
-                        </Box>
-
-                        <Box sx={{ p: 3 }}>
-                            {tabIndex === 0 && (
-                                <Grid container spacing={2}>
-                                    <Grid item xs={12} md={8}>
-                                        <Table size="small">
-                                            <TableBody>
-                                                {details.components.map((comp: any) => (
-                                                    <TableRow key={comp.id}>
-                                                        <TableCell sx={{ width: 50 }}>
-                                                            <Avatar
-                                                                src={comp.img_url || undefined}
-                                                                variant="rounded"
-                                                                sx={{ width: 45, height: 45, bgcolor: '#ff8201'}}
-                                                            >
-                                                                {comp.type?.substring(0, 3)?.toUpperCase()}
-                                                            </Avatar>
-                                                        </TableCell>
-                                                        <TableCell>
-                                                            <Typography variant="body2" color="text.secondary" sx={{ fontSize: '0.75rem', textTransform: 'uppercase' }}>
-                                                                {comp.type}
-                                                            </Typography>
-                                                            <Typography variant="body1" fontWeight="500">
-                                                                {comp.brand} {comp.name}
-                                                            </Typography>
-                                                        </TableCell>
-                                                        <TableCell align="right" sx={{ fontWeight: 'bold', color: '#ff8201' }}>
-                                                            {formatPrice(comp.price)}
+                            <IconButton onClick={onClose}><CloseIcon /></IconButton>
+                        </DialogTitle>
+
+                        <DialogContent sx={{ p: 0 }}>
+                            <Box sx={{ borderBottom: 1, borderColor: 'divider', px: 2, bgcolor: 'primary', position: 'sticky', top: 0, zIndex: 1 }}>
+                                <Tabs value={tabIndex} onChange={(_, v) => setTabIndex(v)}>
+                                    <Tab label="Specs" />
+                                    <Tab label={`Reviews (${details.ratingStatistics.ratingCount})`} />
+                                </Tabs>
+                            </Box>
+
+                            <Box sx={{ p: 3 }}>
+                                {tabIndex === 0 && (
+                                    <Grid container spacing={2}>
+                                        <Grid item xs={12} md={8}>
+                                            <Table size="small">
+                                                <TableBody>
+                                                    {details.components.map((comp: any) => (
+                                                        <TableRow key={comp.id}>
+                                                            <TableCell sx={{ width: 50 }}>
+                                                                <Avatar
+                                                                    src={comp.img_url || undefined}
+                                                                    variant="rounded"
+                                                                    sx={{ width: 45, height: 45, bgcolor: '#ff8201'}}
+                                                                >
+                                                                    {comp.type?.substring(0, 3)?.toUpperCase()}
+                                                                </Avatar>
+                                                            </TableCell>
+                                                            <TableCell>
+                                                                <Typography variant="body2" color="text.secondary" sx={{ fontSize: '0.75rem', textTransform: 'uppercase' }}>
+                                                                    {comp.type}
+                                                                </Typography>
+                                                                <Typography variant="body1" fontWeight="500">
+                                                                    {comp.brand} {comp.name}
+                                                                </Typography>
+                                                            </TableCell>
+                                                            <TableCell align="right" sx={{ fontWeight: 'bold', color: '#ff8201' }}>
+                                                                {formatPrice(comp.price)}
+                                                            </TableCell>
+                                                        </TableRow>
+                                                    ))}
+                                                    <TableRow sx={{ bgcolor: '#424343' }}>
+                                                        <TableCell colSpan={2} sx={{ fontWeight: 'bold', color: '#ff8201' }}>TOTAL</TableCell>
+                                                        <TableCell align="right" sx={{ fontWeight: 'bold', fontSize: '1.1rem', color: 'primary.main' }}>
+                                                            {formatPrice(details.totalPrice)}
                                                         </TableCell>
                                                     </TableRow>
-                                                ))}
-                                                <TableRow sx={{ bgcolor: '#424343' }}>
-                                                    <TableCell colSpan={2} sx={{ fontWeight: 'bold', color: '#ff8201' }}>TOTAL</TableCell>
-                                                    <TableCell align="right" sx={{ fontWeight: 'bold', fontSize: '1.1rem', color: 'primary.main' }}>
-                                                        {formatPrice(details.totalPrice)}
-                                                    </TableCell>
-                                                </TableRow>
-                                            </TableBody>
-                                        </Table>
+                                                </TableBody>
+                                            </Table>
+                                        </Grid>
+
+                                        <Grid item xs={12} md={4}>
+                                            <Box sx={{ bgcolor: '#424343', p: 2, borderRadius: 2, mb: 2 }}>
+                                                <Typography color="primary.main" gutterBottom fontWeight="bold">Builder's Notes</Typography>
+                                                <Typography color="primary.main" variant="body2" sx={{ fontStyle: 'italic' }}>
+                                                    "{details.description || "No notes provided."}"
+                                                </Typography>
+                                            </Box>
+
+                                            <Box sx={{ display: 'flex', flexDirection: 'column', gap: 1 }}>
+                                                <Button
+                                                    variant="contained"
+                                                    color="primary"
+                                                    size="large"
+                                                    startIcon={<AutoFixHighIcon />}
+                                                    onClick={() => {
+                                                        setCloningBuildId(details.id);
+                                                        setCloneDialogOpen(true);
+                                                    }}
+                                                >
+                                                    Clone & Edit
+                                                </Button>
+                                                <Button
+                                                    variant={details.isFavorite ? "contained" : "outlined"}
+                                                    color={details.isFavorite ? "error" : "primary"}
+                                                    startIcon={details.isFavorite ? <FavoriteIcon /> : <FavoriteBorderIcon />}
+                                                    onClick={handleFavorite}
+                                                >
+                                                    {details.isFavorite ? "Favorited" : "Add to Favorites"}
+                                                </Button>
+                                            </Box>
+                                        </Grid>
                                     </Grid>
-
-                                    <Grid item xs={12} md={4}>
-                                        <Box sx={{ bgcolor: '#424343', p: 2, borderRadius: 2, mb: 2 }}>
-                                            <Typography color="primary.main" gutterBottom fontWeight="bold">Builder's Notes</Typography>
-                                            <Typography color="primary.main" variant="body2" sx={{ fontStyle: 'italic' }}>
-                                                "{details.description || "No notes provided."}"
-                                            </Typography>
+                                )}
+
+                                {tabIndex === 1 && (
+                                    <Box>
+                                        <Box sx={{ display: 'flex', alignItems: 'center', gap: 2, mb: 4, p: 2, bgcolor: '#5e5e5e', borderRadius: 2 }}>
+                                            <Typography variant="h3" fontWeight="bold">{details.ratingStatistics.averageRating.toFixed(1)}</Typography>
+                                            <Box>
+                                                <Rating value={details.ratingStatistics.averageRating} readOnly precision={0.5} />
+                                                <Typography variant="body2" color="text.secondary">{details.ratingStatistics.ratingCount} ratings</Typography>
+                                            </Box>
                                         </Box>
 
-                                        <Box sx={{ display: 'flex', flexDirection: 'column', gap: 1 }}>
-                                            <Button
-                                                variant="contained"
-                                                color="primary"
-                                                size="large"
-                                                startIcon={<AutoFixHighIcon />}
-                                                onClick={() => onClone({ buildId: details.id })}
-                                            >
-                                                Clone & Edit
-                                            </Button>
-                                            <Button
-                                                variant={details.isFavorite ? "contained" : "outlined"}
-                                                color={details.isFavorite ? "error" : "primary"}
-                                                startIcon={details.isFavorite ? <FavoriteIcon /> : <FavoriteBorderIcon />}
-                                                onClick={handleFavorite}
-                                            >
-                                                {details.isFavorite ? "Favorited" : "Add to Favorites"}
-                                            </Button>
-                                        </Box>
-                                    </Grid>
-                                </Grid>
-                            )}
-
-                            {tabIndex === 1 && (
-                                <Box>
-                                    <Box sx={{ display: 'flex', alignItems: 'center', gap: 2, mb: 4, p: 2, bgcolor: '#5e5e5e', borderRadius: 2 }}>
-                                        <Typography variant="h3" fontWeight="bold">{details.ratingStatistics.averageRating.toFixed(1)}</Typography>
-                                        <Box>
-                                            <Rating value={details.ratingStatistics.averageRating} readOnly precision={0.5} />
-                                            <Typography variant="body2" color="text.secondary">{details.ratingStatistics.ratingCount} ratings</Typography>
+                                        {currentUser && details.userId !== currentUser.id && (
+                                            <Box sx={{ mb: 4, p: 2, border: '1px solid #ddd', borderRadius: 2 }}>
+                                                <Typography variant="subtitle2" gutterBottom>Your Review</Typography>
+                                                <Box sx={{ display: 'flex', alignItems: 'center', mb: 1 }}>
+                                                    <Rating value={ratingVal} onChange={(_, v) => setRatingVal(v || 5)} />
+                                                </Box>
+                                                <TextField
+                                                    fullWidth
+                                                    multiline
+                                                    rows={2}
+                                                    placeholder="Share your thoughts on this build..."
+                                                    value={reviewText}
+                                                    onChange={(e) => setReviewText(e.target.value)}
+                                                    sx={{ mb: 1 }}
+                                                />
+                                                <Button size="small" variant="contained" onClick={handleSubmitReview}>
+                                                    Submit Review
+                                                </Button>
+                                            </Box>
+                                        )}
+
+                                        {currentUser && details.userId === currentUser.id && (
+                                            <Alert severity="info" sx={{ mb: 4 }}>
+                                                You cannot rate your own builds.
+                                            </Alert>
+                                        )}
+
+                                        <Box sx={{ display: 'flex', flexDirection: 'column', gap: 2 }}>
+                                            {details.reviews.map((rev: any, i: number) => (
+                                                <Box key={i} sx={{ pb: 2, borderBottom: '1px solid #eee' }}>
+                                                    <Box sx={{ display: 'flex', justifyContent: 'space-between', mb: 0.5 }}>
+                                                        <Typography fontWeight="bold" variant="body2">{rev.username}</Typography>
+                                                        <Typography variant="caption" color="text.secondary">{rev.createdAt}</Typography>
+                                                    </Box>
+                                                    <Typography variant="body2">{rev.content}</Typography>
+                                                </Box>
+                                            ))}
+                                            {details.reviews.length === 0 && (
+                                                <Typography color="text.secondary" align="center">No reviews yet. Be the first!</Typography>
+                                            )}
                                         </Box>
                                     </Box>
-
-                                    {currentUser && (
-                                        <Box sx={{ mb: 4, p: 2, border: '1px solid #ddd', borderRadius: 2 }}>
-                                            <Typography variant="subtitle2" gutterBottom>Your Review</Typography>
-                                            <Box sx={{ display: 'flex', alignItems: 'center', mb: 1 }}>
-                                                <Rating value={ratingVal} onChange={(_, v) => setRatingVal(v || 5)} />
-                                            </Box>
-                                            <TextField
-                                                fullWidth
-                                                multiline
-                                                rows={2}
-                                                placeholder="Share your thoughts on this build..."
-                                                value={reviewText}
-                                                onChange={(e) => setReviewText(e.target.value)}
-                                                sx={{ mb: 1 }}
-                                            />
-                                            <Button size="small" variant="contained" onClick={handleSubmitReview}>
-                                                Submit Review
-                                            </Button>
-                                        </Box>
-                                    )}
-
-                                    <Box sx={{ display: 'flex', flexDirection: 'column', gap: 2}}>
-                                        {details.reviews.map((rev: any, i: number) => (
-                                            <Box key={i} sx={{ pb: 2, borderBottom: '1px solid #eee'}}>
-                                                <Box sx={{ display: 'flex', justifyContent: 'space-between', mb: 0.5 }}>
-                                                    <Typography fontWeight="bold" variant="body2">{rev.username}</Typography>
-                                                    <Typography variant="caption" color="text.secondary">{rev.createdAt}</Typography>
-                                                </Box>
-                                                <Typography variant="body2">{rev.content}</Typography>
-                                            </Box>
-                                        ))}
-                                        {details.reviews.length === 0 && (
-                                            <Typography color="text.secondary" align="center">No reviews yet. Be the first!</Typography>
-                                        )}
-                                    </Box>
-                                </Box>
-                            )}
-                        </Box>
-                    </DialogContent>
-                </>
-            )}
-        </Dialog>
+                                )}
+                            </Box>
+                        </DialogContent>
+                    </>
+                )}
+            </Dialog>
+
+            <Dialog open={cloneDialogOpen} onClose={() => setCloneDialogOpen(false)}>
+                <DialogTitle>Clone Build</DialogTitle>
+                <DialogContent>
+                    <Typography>
+                        This will create a copy of "{details?.name}" in your Forge so you can edit it.
+                        All components will be copied over.
+                    </Typography>
+                </DialogContent>
+                <DialogActions>
+                    <Button onClick={() => setCloneDialogOpen(false)}>Cancel</Button>
+                    <Button
+                        variant="contained"
+                        onClick={handleCloneConfirm}
+                        disabled={!cloningBuildId}
+                    >
+                        Clone Build
+                    </Button>
+                </DialogActions>
+            </Dialog>
+        </>
     );
 }
Index: components/ComponentDetailsDialog.tsx
===================================================================
--- components/ComponentDetailsDialog.tsx	(revision 6ce67397d2c78df0968f51f75185de688968b04a)
+++ components/ComponentDetailsDialog.tsx	(revision 387083452a874472599c1fd728bdeea99bf1c966)
@@ -33,7 +33,23 @@
     const renderValue = (key: string, val: any) => {
         if (Array.isArray(val)) {
-            if (val.length > 0 && typeof val[0] === 'object') {
-                return val.map((v: any) => v.formFactor || v.socket || JSON.stringify(v)).join(', ');
+            if (val.length === 0) return 'None';
+
+            if (typeof val[0] === 'string') {
+                return val.join(', ');
             }
+
+            if (typeof val[0] === 'object') {
+                const parts = val
+                    .map((v: any) =>
+                        v.socket ||
+                        v.formFactor ||
+                        v.name ||
+                        v.type ||
+                        Object.values(v)[0]
+                    )
+                    .filter(Boolean);
+                return parts.length > 0 ? parts.join(', ') : 'None';
+            }
+
             return val.join(', ');
         }
@@ -42,5 +58,4 @@
         const lowerKey = key.toLowerCase();
 
-        // Dodava merni edinici vo zavisnost koja komponenta e
         if (lowerKey.includes('capacity') || lowerKey.includes('vram') || lowerKey === 'memory') {
             return `${strVal} GB`;
@@ -58,4 +73,5 @@
             return `${strVal} GHz`;
         }
+
         if (lowerKey.includes('speed')) {
             return `${strVal} MHz`;
Index: components/ComponentDialog.tsx
===================================================================
--- components/ComponentDialog.tsx	(revision 6ce67397d2c78df0968f51f75185de688968b04a)
+++ components/ComponentDialog.tsx	(revision 387083452a874472599c1fd728bdeea99bf1c966)
@@ -1,27 +1,57 @@
 import React, {useEffect, useState} from 'react';
 import {
-    Dialog, DialogContent, IconButton, Grid, Box, Typography,
+    Dialog, DialogContent, IconButton, Box, Typography, Chip,
     Slider, FormControl, InputLabel, Select, MenuItem, Checkbox, ListItemText,
-    Card, CardContent, CardMedia, Button, CircularProgress, Divider, AppBar, Toolbar
+    Card, CardContent, CardMedia, Button, CircularProgress, AppBar, Toolbar, InputAdornment, TextField,
+    TextField as MuiTextField, DialogTitle, DialogActions, Snackbar, Alert
 } from '@mui/material';
 import CloseIcon from '@mui/icons-material/Close';
-import FilterListIcon from '@mui/icons-material/FilterList';
-import SortIcon from '@mui/icons-material/Sort';
-
-import {onGetAllComponents} from '../pages/+Layout.telefunc';
+import AddCircleIcon from '@mui/icons-material/AddCircle';
+
+import {onGetAllComponents, onGetAuthState, onSuggestComponent} from '../pages/+Layout.telefunc'
+import {onGetCompatibleComponents} from '../pages/forge/forge.telefunc';
 import ComponentDetailsDialog from "./ComponentDetailsDialog";
-
-const formatMoney = (amount: number) => `$${amount}`;
-
-export default function ComponentBrowserDialog({open, category, onClose}: any) {
+import SearchIcon from "@mui/icons-material/Search";
+
+const formatMoney = (amount: number) => `$${Number(amount).toFixed(2)}`;
+
+export default function ComponentDialog({open, category, onClose, mode, onSelect, currentBuildId}: any) {
     const [components, setComponents] = useState<any[]>([]);
     const [loading, setLoading] = useState(false);
-
     const [selectedComponent, setSelectedComponent] = useState<any>(null);
     const [priceRange, setPriceRange] = useState<number[]>([0, 2000]);
     const [selectedBrands, setSelectedBrands] = useState<string[]>([]);
     const [availableBrands, setAvailableBrands] = useState<string[]>([]);
-
     const [sortOrder, setSortOrder] = useState<string>('default');
+
+    const [tempSearchQuery, setTempSearchQuery] = useState("");
+    const [searchQuery, setSearchQuery] = useState("");
+
+    const [suggestOpen, setSuggestOpen] = useState(false);
+    const [suggestForm, setSuggestForm] = useState({
+        link: '',
+        description: '',
+        componentType: category || ''
+    });
+    const [suggestLoading, setSuggestLoading] = useState(false);
+    const [snackbarOpen, setSnackbarOpen] = useState(false);
+    const [snackbarMessage, setSnackbarMessage] = useState("");
+    const [userId, setUserId] = useState<number | null>(null);
+
+    useEffect(() => {
+        const timeoutId = setTimeout(() => {
+            setSearchQuery(tempSearchQuery);
+        }, 300);
+        return () => clearTimeout(timeoutId);
+    }, [tempSearchQuery]);
+
+    // Load user auth
+    useEffect(() => {
+        if (open) {
+            onGetAuthState().then(userData => {
+                setUserId(userData.userId);
+            });
+        }
+    }, [open]);
 
     useEffect(() => {
@@ -30,23 +60,85 @@
             setSortOrder('price_desc');
 
-            onGetAllComponents({componentType: category})
+            const shouldUseCompatibility = mode === 'forge' && currentBuildId;
+            const fetcher = shouldUseCompatibility
+                ? onGetCompatibleComponents({
+                    buildId: currentBuildId,
+                    componentType: category,
+                    limit: 100,
+                    sort: 'price_desc'
+                })
+                : onGetAllComponents({
+                    componentType: category,
+                    limit: 100,
+                    sort: 'price_desc'
+                });
+
+            fetcher
                 .then((data) => {
-                    setComponents(data);
-
-                    const brands = Array.from(new Set(data.map((c: any) => c.brand)));
+                    const comps = data || [];
+                    setComponents(comps);
+
+                    const brands = Array.from(new Set(comps.map((c: any) => c.brand)));
                     setAvailableBrands(brands as string[]);
-
-                    const maxPrice = data.length > 0 ? Math.max(...data.map((c: any) => Number(c.price))) : 2000;
+                    const maxPrice = comps.length > 0 ? Math.max(...comps.map((c: any) => Number(c.price))) : 2000;
                     setPriceRange([0, Math.ceil(maxPrice)]);
                 })
-                .catch(console.error)
+                .catch((err) => {
+                    console.error('[Dialog] fetch error:', err);
+                    setComponents([]);
+                })
                 .finally(() => setLoading(false));
         }
-    }, [open, category]);
+    }, [open, category, mode, currentBuildId]);
+
+    const handleSuggestChange = (e: React.ChangeEvent<HTMLInputElement>) => {
+        setSuggestForm({
+            ...suggestForm,
+            [e.target.name]: e.target.value
+        });
+    };
+
+    const submitSuggestion = async () => {
+        if (!userId) {
+            setSnackbarMessage("Please login to submit suggestions!");
+            setSnackbarOpen(true);
+            return;
+        }
+
+        if (!suggestForm.link || !suggestForm.description) {
+            setSnackbarMessage("Please fill in all fields!");
+            setSnackbarOpen(true);
+            return;
+        }
+
+        setSuggestLoading(true);
+        try {
+            const suggestionId = await onSuggestComponent({
+                link: suggestForm.link,
+                description: suggestForm.description,
+                componentType: suggestForm.componentType
+            });
+
+            setSnackbarMessage("Suggestion submitted! Admin will review it.");
+            setSnackbarOpen(true);
+            setSuggestOpen(false);
+            setSuggestForm({link: '', description: '', componentType: category || ''});
+        } catch (error) {
+            console.error('Suggestion error:', error);
+            setSnackbarMessage("Failed to submit suggestion. Try again.");
+            setSnackbarOpen(true);
+        } finally {
+            setSuggestLoading(false);
+        }
+    };
 
     let processedComponents = components.filter(comp => {
         const matchesBrand = selectedBrands.length === 0 || selectedBrands.includes(comp.brand);
         const matchesPrice = Number(comp.price) >= priceRange[0] && Number(comp.price) <= priceRange[1];
-        return matchesBrand && matchesPrice;
+        const matchesSearch = searchQuery === "" ||
+            comp.name.toLowerCase().includes(searchQuery.toLowerCase()) ||
+            comp.brand.toLowerCase().includes(searchQuery.toLowerCase());
+
+        return matchesBrand && matchesPrice && matchesSearch;
     });
 
@@ -65,169 +157,280 @@
 
     return (
-        <Dialog
-            open={open}
-            onClose={onClose}
-            maxWidth="xl"
-            fullWidth
-            sx={{height: '90vh'}}
-        >
-            <AppBar position="relative" sx={{bgcolor: '#ff8201'}}>
-                <Toolbar>
-                    <Typography sx={{ml: 2, flex: 1, textTransform: 'capitalize'}} variant="h6" component="div">
-                        Browsing: <b>{category === 'gpu' ? 'Graphics Cards' : category?.toUpperCase()}</b>
-                    </Typography>
-                    <IconButton edge="start" color="inherit" onClick={onClose}>
-                        <CloseIcon/>
-                    </IconButton>
-                </Toolbar>
-            </AppBar>
-
-            <DialogContent sx={{p: 0, display: 'flex', height: '100%'}}>
-                <Box sx={{
-                    width: 300,
-                    borderRight: '1px solid #ddd',
-                    p: 3,
-                    bgcolor: '#1e1e1e',
-                    display: {xs: 'none', md: 'block'}
-                }}>
-                    <Box sx={{display: 'flex', alignItems: 'center', mb: 2}}>
-                        <SortIcon sx={{mr: 1}}/>
-                        <Typography variant="h6">Sort By</Typography>
+        <>
+            <Dialog open={open} onClose={onClose} maxWidth="xl" fullWidth sx={{height: '90vh'}}>
+                <AppBar position="relative" sx={{bgcolor: '#ff8201'}}>
+                    <Toolbar>
+                        <Typography sx={{ml: 2, flex: 1, textTransform: 'capitalize'}} variant="h6" component="div">
+                            Browsing: <b>{category === 'gpu' ? 'Graphics Cards' : category?.toUpperCase()}</b>
+                            {mode === 'forge' && currentBuildId && (
+                                <Typography variant="caption"
+                                            sx={{ml: 2, bgcolor: 'rgba(0,0,0,0.2)', px: 1, borderRadius: 1}}>
+                                    COMPATIBILITY MODE ON
+                                </Typography>
+                            )}
+                        </Typography>
+                        <IconButton edge="start" color="inherit" onClick={onClose}>
+                            <CloseIcon/>
+                        </IconButton>
+                    </Toolbar>
+                </AppBar>
+
+                <DialogContent sx={{p: 0, display: 'flex', height: '100%'}}>
+                    <Box sx={{
+                        width: 300,
+                        borderRight: '1px solid #ddd',
+                        p: 3,
+                        bgcolor: '#1e1e1e',
+                        display: {xs: 'none', md: 'block'},
+                        overflowY: 'auto'
+                    }}>
+                        <TextField
+                            fullWidth
+                            size="small"
+                            placeholder="Search components..."
+                            value={tempSearchQuery}
+                            onChange={(e) => setTempSearchQuery(e.target.value)}
+                            sx={{mb: 2}}
+                            InputProps={{
+                                startAdornment: <InputAdornment position="start"><SearchIcon/></InputAdornment>,
+                            }}
+                        />
+
+
+                        <FormControl fullWidth size="small" sx={{mb: 2}}>
+                            <InputLabel>Sort By</InputLabel>
+                            <Select value={sortOrder} label="Sort By" onChange={(e) => setSortOrder(e.target.value)}>
+                                <MenuItem value="price_asc">Price: Low to High</MenuItem>
+                                <MenuItem value="price_desc">Price: High to Low</MenuItem>
+                            </Select>
+                        </FormControl>
+
+                        <FormControl fullWidth size="small" sx={{mb: 2}}>
+                            <InputLabel>Brands</InputLabel>
+                            <Select multiple value={selectedBrands} onChange={handleBrandChange} label="Brands"
+                                    renderValue={(s) => s.join(', ')}>
+                                {availableBrands.map((brand) => (
+                                    <MenuItem key={brand} value={brand}>
+                                        <Checkbox checked={selectedBrands.indexOf(brand) > -1}/>
+                                        <ListItemText primary={brand}/>
+                                    </MenuItem>
+                                ))}
+                            </Select>
+                        </FormControl>
+
+                        <Typography gutterBottom fontWeight="bold">Price Range</Typography>
+                        <Slider value={priceRange} onChange={(_, v) => setPriceRange(v as number[])} min={0} max={2000}
+                                sx={{color: '#ff8201'}}/>
+                        <Box sx={{display: 'flex', justifyContent: 'space-between', mt: 1}}>
+                            <Typography variant="caption">${priceRange[0]}</Typography>
+                            <Typography variant="caption">${priceRange[1]}+</Typography>
+                        </Box>
+                        {/*TO BE FINISHED*/}
+                        <Button
+                            fullWidth
+                            variant="contained"
+                            startIcon={<AddCircleIcon/>}
+                            onClick={() => setSuggestOpen(true)}
+                            sx={{
+                                mt: 2,
+                                bgcolor: '#ff8201',
+                                fontWeight: 'bold',
+                                fontSize: '0.875rem',
+                                '&:hover': {bgcolor: '#e67300'}
+                            }}
+                        >
+                            Suggest Component
+                        </Button>
                     </Box>
-                    <FormControl fullWidth size="small" sx={{mb: 4}}>
-                        <InputLabel>Price</InputLabel>
-                        <Select
-                            value={sortOrder}
-                            label="Price"
-                            onChange={(e) => setSortOrder(e.target.value)}>
-                            {/*<MenuItem value="default">Featured</MenuItem>*/}
-                            <MenuItem value="price_asc">Price: Low to High</MenuItem>
-                            <MenuItem value="price_desc">Price: High to Low</MenuItem>
-                        </Select>
-                    </FormControl>
-
-                    <Divider sx={{mb: 3}}/>
-
-                    <Box sx={{display: 'flex', alignItems: 'center', mb: 2}}>
-                        <FilterListIcon sx={{mr: 1}}/>
-                        <Typography variant="h6">Filters</Typography>
-                    </Box>
-
-                    <Typography gutterBottom fontWeight="bold">Price Range</Typography>
-                    <Slider
-                        value={priceRange}
-                        onChange={(_, newValue) => setPriceRange(newValue as number[])}
-                        valueLabelDisplay="auto"
-                        min={0}
-                        max={components.length > 0 ? Math.max(...components.map(c => Number(c.price))) : 2000}
-                        sx={{color: '#ff8201', mb: 2}}
-                    />
-                    <Box sx={{display: 'flex', justifyContent: 'space-between', mb: 2}}>
-                        <Typography variant="caption">{formatMoney(priceRange[0])}</Typography>
-                        <Typography variant="caption">{formatMoney(priceRange[1])}</Typography>
-                    </Box>
-
-                    <FormControl fullWidth size="small">
-                        <InputLabel>Brands</InputLabel>
-                        <Select
-                            multiple
-                            value={selectedBrands}
-                            onChange={handleBrandChange}
-                            renderValue={(selected) => selected.join(', ')}
-                            label="Brands"
-                        >
-                            {availableBrands.map((brand) => (
-                                <MenuItem key={brand} value={brand}>
-                                    <Checkbox checked={selectedBrands.indexOf(brand) > -1}/>
-                                    <ListItemText primary={brand}/>
-                                </MenuItem>
-                            ))}
-                        </Select>
-                    </FormControl>
-                </Box>
-
-                <Box sx={{flex: 1, p: 3, overflowY: 'auto'}}>
-                    {loading ? (
-                        <Box sx={{display: 'flex', justifyContent: 'center', mt: 10}}>
-                            <CircularProgress sx={{color: '#ff8201'}}/>
-                        </Box>
-                    ) : (
-                        <Grid container spacing={1}>
-                            {processedComponents.map((comp) => (
-                                <Grid item xs={12} sm={6} md={4} lg={3} key={comp.id}>
-                                    <Card elevation={1} sx={{
-                                        height: '100%',
-                                        display: 'flex',
-                                        flexDirection: 'column',
-                                        maxWidth: 220,
-                                        width: 220,
-                                        overflow: 'hidden',
-                                        whiteSpace: 'nowrap',
-                                        textOverflow: 'ellipsis'
-                                    }}>
-                                        <CardMedia
-                                            component="img"
-                                            height="140"
-                                            // image={`https://placehold.co/400x400?text=${encodeURIComponent(comp.name)}`}
-                                            image={comp.imgUrl}
-                                            alt={comp.name}
-                                            sx={{p: 2, objectFit: 'contain'}}
-                                        />
-                                        <CardContent sx={{flexGrow: 1}}>
-                                            <Typography variant="caption" color="text.secondary"
-                                                        sx={{textTransform: 'uppercase'}}>
-                                                {comp.brand}
-                                            </Typography>
-                                            <Typography variant="subtitle1" fontWeight="bold" sx={{
-                                                lineHeight: 1.2,
-                                                mb: 1,
+
+                    <Box sx={{flex: 1, p: 3, overflowY: 'auto', bgcolor: '#121212'}}>
+                        {loading ? (
+                            <Box sx={{display: 'flex', justifyContent: 'center', mt: 10}}>
+                                <CircularProgress sx={{color: '#ff8201'}}/>
+                            </Box>
+                        ) : (
+                            <Box sx={{
+                                display: 'grid',
+                                gridTemplateColumns: {
+                                    xs: '1fr',
+                                    sm: 'repeat(2, 1fr)',
+                                    md: 'repeat(3, 1fr)',
+                                    lg: 'repeat(4, 1fr)',
+                                    xl: 'repeat(5, 1fr)'
+                                },
+                                gap: 3,
+                                width: '100%'
+                            }}>
+                                {processedComponents.map((comp) => (
+                                    <Box key={comp.id} sx={{width: '100%'}}>
+                                        <Card
+                                            elevation={3}
+                                            sx={{
+                                                width: '100%',
+                                                height: '100%',
+                                                display: 'flex',
+                                                flexDirection: 'column',
+                                                transition: 'transform 0.2s, box-shadow 0.2s',
+                                                '&:hover': {
+                                                    transform: 'translateY(-4px)',
+                                                    boxShadow: 6
+                                                }
+                                            }}
+                                        >
+                                            <Box sx={{position: 'relative', paddingTop: '75%', bgcolor: '#1e1e1e'}}>
+                                                <CardMedia
+                                                    component="img"
+                                                    image={comp.imgUrl || comp.img_url || `https://placehold.co/400x400?text=${comp.name}`}
+                                                    alt={comp.name}
+                                                    sx={{
+                                                        position: 'absolute',
+                                                        top: 0,
+                                                        left: 0,
+                                                        width: '100%',
+                                                        height: '100%',
+                                                        objectFit: 'contain',
+                                                        p: 2
+                                                    }}
+                                                />
+                                            </Box>
+
+                                            <CardContent sx={{
+                                                flexGrow: 1,
+                                                display: 'flex',
+                                                flexDirection: 'column',
+                                                justifyContent: 'space-between'
                                             }}>
-                                                {comp.name}
-                                            </Typography>
-
-                                            <Box sx={{
-                                                display: 'flex',
-                                                justifyContent: 'space-between',
-                                                alignItems: 'center',
-                                                mt: 2
-                                            }}>
-                                                <Typography variant="h6" color="primary.main">
+                                                <Box>
+                                                    <Typography variant="caption" color="text.secondary"
+                                                                sx={{textTransform: 'uppercase', letterSpacing: 0.5}}>
+                                                        {comp.brand}
+                                                    </Typography>
+                                                    <Typography variant="subtitle1" fontWeight="bold" sx={{
+                                                        lineHeight: 1.2,
+                                                        mt: 0.5,
+                                                        mb: 1,
+                                                        overflow: 'hidden',
+                                                        textOverflow: 'ellipsis',
+                                                        display: '-webkit-box',
+                                                        WebkitLineClamp: 2,
+                                                        WebkitBoxOrient: 'vertical',
+                                                        minHeight: '2.4em'
+                                                    }}>
+                                                        {comp.name}
+                                                    </Typography>
+                                                </Box>
+                                                <Typography variant="h6" color="primary.main" fontWeight="bold">
                                                     {formatMoney(comp.price)}
                                                 </Typography>
+                                            </CardContent>
+
+                                            <Box sx={{p: 2, pt: 0, display: 'flex', flexDirection: 'column', gap: 1}}>
+                                                <Button
+                                                    fullWidth
+                                                    variant="contained"
+                                                    onClick={() => setSelectedComponent(comp)}
+                                                    sx={{
+                                                        bgcolor: '#ff8201',
+                                                        fontWeight: 'bold',
+                                                        '&:hover': {bgcolor: '#e67300'}
+                                                    }}
+                                                >
+                                                    Details
+                                                </Button>
+                                                {mode === 'forge' && onSelect && (
+                                                    <Button
+                                                        fullWidth
+                                                        variant="contained"
+                                                        onClick={() => onSelect(comp)}
+                                                        sx={{
+                                                            bgcolor: '#4caf50',
+                                                            fontWeight: 'bold',
+                                                            '&:hover': {bgcolor: '#388e3c'}
+                                                        }}
+                                                    >
+                                                        Add
+                                                    </Button>
+                                                )}
                                             </Box>
-                                        </CardContent>
-                                        <Box sx={{p: 2, pt: 0}}>
-                                            <Button
-                                                fullWidth
-                                                variant="outlined"
-                                                onClick={() => setSelectedComponent(comp)}
-                                                sx={{
-                                                    backgroundColor: '#ff8201',
-                                                    color: 'white',
-                                                    borderColor: '#ff8201',
-                                                    onHover: {backgroundColor: '#e67300', borderColor: '#e67300'}
-                                                }}
-                                            >
-                                                Details
-                                            </Button>
-                                        </Box>
-                                    </Card>
-                                </Grid>
-                            ))}
-                            {processedComponents.length === 0 && (
-                                <Box sx={{width: '100%', textAlign: 'center', mt: 5}}>
-                                    <Typography variant="h6" color="text.secondary">No components match.</Typography>
-                                </Box>
-                            )}
-                        </Grid>
-                    )}
-                </Box>
-            </DialogContent>
-            <ComponentDetailsDialog
-                open={!!selectedComponent}
-                component={selectedComponent}
-                onClose={() => setSelectedComponent(null)}
-            />
-        </Dialog>
+                                        </Card>
+                                    </Box>
+                                ))}
+                                {processedComponents.length === 0 && (
+                                    <Box sx={{gridColumn: '1 / -1', width: '100%', textAlign: 'center', mt: 5}}>
+                                        <Typography variant="h6" color="text.secondary">
+                                            No compatible components found.
+                                        </Typography>
+                                        {mode === 'forge' && (
+                                            <Typography variant="body2" color="error">
+                                                (Try removing incompatible parts)
+                                            </Typography>
+                                        )}
+                                    </Box>
+                                )}
+                            </Box>
+                        )}
+                    </Box>
+                </DialogContent>
+
+                <ComponentDetailsDialog
+                    open={!!selectedComponent}
+                    component={selectedComponent}
+                    onClose={() => setSelectedComponent(null)}
+                />
+            </Dialog>
+
+            <Dialog open={suggestOpen} onClose={() => setSuggestOpen(false)} maxWidth="sm" fullWidth>
+                <DialogTitle>Suggest a New Component</DialogTitle>
+                <DialogContent>
+                    <MuiTextField
+                        fullWidth
+                        label="Product Link *"
+                        name="link"
+                        value={suggestForm.link}
+                        onChange={handleSuggestChange}
+                        placeholder="https://example.com/product"
+                        sx={{mt: 1}}
+                        size="small"
+                    />
+                    <MuiTextField
+                        fullWidth
+                        label="Description *"
+                        name="description"
+                        value={suggestForm.description}
+                        onChange={handleSuggestChange}
+                        multiline
+                        rows={3}
+                        placeholder="Why should we add this component? Any specs/details?"
+                        sx={{mt: 2}}
+                        size="small"
+                    />
+                    <Typography variant="caption" color="text.secondary" sx={{mt: 1, display: 'block'}}>
+                        Category: <b>{category?.toUpperCase()}</b>
+                    </Typography>
+                </DialogContent>
+                <DialogActions>
+                    <Button onClick={() => setSuggestOpen(false)}>Cancel</Button>
+                    <Button
+                        onClick={submitSuggestion}
+                        disabled={suggestLoading || !userId}
+                        variant="contained"
+                        startIcon={suggestLoading ? <CircularProgress size={20}/> : null}
+                    >
+                        {suggestLoading ? 'Submitting...' : 'Submit Suggestion'}
+                    </Button>
+                </DialogActions>
+            </Dialog>
+
+            <Snackbar
+                open={snackbarOpen}
+                autoHideDuration={4000}
+                onClose={() => setSnackbarOpen(false)}
+                anchorOrigin={{vertical: 'bottom', horizontal: 'right'}}
+            >
+                <Alert onClose={() => setSnackbarOpen(false)} sx={{width: '100%'}}>
+                    {snackbarMessage}
+                </Alert>
+            </Snackbar>
+        </>
     );
 }
