feat: normalize delivery methods in CartTab and DeliveryMethodSelector components
This commit is contained in:
@@ -345,10 +345,45 @@ class Footer extends Component {
|
||||
</Stack>
|
||||
|
||||
{/* Copyright Section */}
|
||||
<Box sx={{ pb:'20px',textAlign: 'center', filter: 'drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3))', opacity: 0.7 }}>
|
||||
<Box sx={{ pb: 0, textAlign: 'center', filter: 'drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3))', opacity: 0.7 }}>
|
||||
<Typography variant="body2" sx={{ mb: 1, fontSize: { xs: '11px', md: '14px' }, lineHeight: 1.5 }}>
|
||||
{this.props.t ? this.props.t('footer.allPricesIncl') : '* Alle Preise inkl. gesetzlicher USt., zzgl. Versand'}
|
||||
</Typography>
|
||||
<Typography
|
||||
variant="body2"
|
||||
sx={{
|
||||
mb: 1,
|
||||
fontSize: { xs: '11px', md: '14px' },
|
||||
lineHeight: 1.5,
|
||||
display: 'flex',
|
||||
justifyContent: 'center',
|
||||
alignItems: 'center',
|
||||
gap: 0.75,
|
||||
}}
|
||||
>
|
||||
Made with
|
||||
<Box
|
||||
component="span"
|
||||
sx={{
|
||||
backgroundColor: '#1976d2',
|
||||
color: '#ffffff',
|
||||
borderRadius: '3px',
|
||||
px: 0.6,
|
||||
py: 0.15,
|
||||
fontWeight: 700,
|
||||
lineHeight: 1,
|
||||
fontSize: { xs: '10px', md: '12px' },
|
||||
letterSpacing: '0.3px',
|
||||
display: 'inline-flex',
|
||||
alignItems: 'center',
|
||||
}}
|
||||
>
|
||||
jB
|
||||
</Box>
|
||||
<StyledDomainLink href="https://jbuddy.de" target="_blank" rel="noopener noreferrer">
|
||||
jBuddy.de
|
||||
</StyledDomainLink>
|
||||
</Typography>
|
||||
<Typography variant="body2" sx={{ fontSize: { xs: '11px', md: '14px' }, lineHeight: 1.5 }}>
|
||||
© {new Date().getFullYear()} <StyledDomainLink href="https://growheads.de" target="_blank" rel="noopener noreferrer">GrowHeads.de</StyledDomainLink>
|
||||
</Typography>
|
||||
|
||||
Reference in New Issue
Block a user