Added bgcolor to Item page

This commit is contained in:
FlorianSpeicher
2025-05-21 23:40:12 +02:00
parent 080f6cbb24
commit e3a0a4e20d

View File

@@ -38,7 +38,8 @@ export default function Product() {
const discountedPrice = item.price * (1 - item.discount / 100);
return (
<Container maxWidth="lg" sx={{ py: 4 }}>
<div className='page-background'>
<Container maxWidth="lg" sx={{ py: 4 }} >
<Grid container spacing={4}>
{/* Left Column - Image */}
@@ -137,5 +138,6 @@ export default function Product() {
</Grid>
</Container>
</div>
);
};