feat: add short descriptions to product and extras displays
- Included kurzBeschreibung in the GrowTentKonfigurator for products, lamps, and ventilation components to enhance user information. - Updated ExtrasSelector to display kurzBeschreibung for each extra, improving clarity and user experience.
This commit is contained in:
@@ -116,6 +116,10 @@ class ExtrasSelector extends Component {
|
|||||||
{extra.name}
|
{extra.name}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|
||||||
|
<Typography gutterBottom>
|
||||||
|
{extra.kurzBeschreibung}
|
||||||
|
</Typography>
|
||||||
|
|
||||||
{/* Price with VAT - Same as other sections */}
|
{/* Price with VAT - Same as other sections */}
|
||||||
<Typography variant="h6" sx={{
|
<Typography variant="h6" sx={{
|
||||||
color: '#2e7d32',
|
color: '#2e7d32',
|
||||||
|
|||||||
@@ -671,6 +671,9 @@ class GrowTentKonfigurator extends Component {
|
|||||||
<Typography variant="h6" gutterBottom sx={{ fontWeight: 'bold' }}>
|
<Typography variant="h6" gutterBottom sx={{ fontWeight: 'bold' }}>
|
||||||
{product.name}
|
{product.name}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
<Typography gutterBottom>
|
||||||
|
{product.kurzBeschreibung}
|
||||||
|
</Typography>
|
||||||
|
|
||||||
{/* Price with VAT - Same as Product.js */}
|
{/* Price with VAT - Same as Product.js */}
|
||||||
<Typography variant="h6" sx={{
|
<Typography variant="h6" sx={{
|
||||||
@@ -797,6 +800,9 @@ class GrowTentKonfigurator extends Component {
|
|||||||
<Typography variant="h6" gutterBottom sx={{ fontWeight: 'bold' }}>
|
<Typography variant="h6" gutterBottom sx={{ fontWeight: 'bold' }}>
|
||||||
{lamp.name}
|
{lamp.name}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
<Typography gutterBottom>
|
||||||
|
{lamp.kurzBeschreibung}
|
||||||
|
</Typography>
|
||||||
|
|
||||||
{/* Price with VAT */}
|
{/* Price with VAT */}
|
||||||
<Typography variant="h6" sx={{
|
<Typography variant="h6" sx={{
|
||||||
@@ -961,6 +967,9 @@ class GrowTentKonfigurator extends Component {
|
|||||||
}}>
|
}}>
|
||||||
{ventilation.name}
|
{ventilation.name}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
<Typography gutterBottom>
|
||||||
|
{ventilation.kurzBeschreibung}
|
||||||
|
</Typography>
|
||||||
|
|
||||||
{/* Price with VAT */}
|
{/* Price with VAT */}
|
||||||
<Typography variant="h6" sx={{
|
<Typography variant="h6" sx={{
|
||||||
|
|||||||
Reference in New Issue
Block a user