Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
60 lines
1.8 KiB
JavaScript
60 lines
1.8 KiB
JavaScript
import AspectRatio from '@mui/joy/AspectRatio';
|
|
import Button from '@mui/joy/Button';
|
|
import Card from '@mui/joy/Card';
|
|
import CardContent from '@mui/joy/CardContent';
|
|
import CardOverflow from '@mui/joy/CardOverflow';
|
|
import Chip from '@mui/joy/Chip';
|
|
import Link from '@mui/joy/Link';
|
|
import Typography from '@mui/joy/Typography';
|
|
import ArrowOutwardIcon from '@mui/icons-material/ArrowOutward';
|
|
|
|
export default function ProductCard() {
|
|
return (
|
|
<Card sx={{ width: 320, maxWidth: '100%', boxShadow: 'lg' }}>
|
|
<CardOverflow>
|
|
<AspectRatio sx={{ minWidth: 200 }}>
|
|
<img
|
|
src="https://images.unsplash.com/photo-1593121925328-369cc8459c08?auto=format&fit=crop&w=286"
|
|
srcSet="https://images.unsplash.com/photo-1593121925328-369cc8459c08?auto=format&fit=crop&w=286&dpr=2 2x"
|
|
loading="lazy"
|
|
alt=""
|
|
/>
|
|
</AspectRatio>
|
|
</CardOverflow>
|
|
<CardContent>
|
|
<Typography level="body-xs">Bluetooth Headset</Typography>
|
|
<Link
|
|
href="#product-card"
|
|
color="neutral"
|
|
textColor="text.primary"
|
|
overlay
|
|
endDecorator={<ArrowOutwardIcon />}
|
|
sx={{ fontWeight: 'md' }}
|
|
>
|
|
Super Rockez A400
|
|
</Link>
|
|
|
|
<Typography
|
|
level="title-lg"
|
|
sx={{ mt: 1, fontWeight: 'xl' }}
|
|
endDecorator={
|
|
<Chip component="span" size="sm" variant="soft" color="success">
|
|
Lowest price
|
|
</Chip>
|
|
}
|
|
>
|
|
2,900 THB
|
|
</Typography>
|
|
<Typography level="body-sm">
|
|
(Only <b>7</b> left in stock!)
|
|
</Typography>
|
|
</CardContent>
|
|
<CardOverflow>
|
|
<Button variant="solid" color="danger" size="lg">
|
|
Add to cart
|
|
</Button>
|
|
</CardOverflow>
|
|
</Card>
|
|
);
|
|
}
|