|
4 | 4 | import ProductCard from "$lib/components/ProductCard.svelte"; |
5 | 5 | import Accordion from "$lib/components/Accordion.svelte"; |
6 | 6 | import Button from "$lib/components/Button.svelte"; |
| 7 | + import Badge from "$lib/components/Badge.svelte"; |
7 | 8 |
|
8 | 9 | import FourImage from "$lib/images/products/comma-four/four_screen_on.png"; |
9 | 10 |
|
10 | 11 | import RecordingsIcon from "$lib/icons/features/recordings.svg?raw"; |
11 | 12 | import CalendarIcon from "$lib/icons/features/calendar.svg?raw"; |
12 | | - import CurrencyIcon from "$lib/icons/features/currency.svg?raw"; |
| 13 | + import CarIcon from "$lib/icons/features/car.svg?raw"; |
13 | 14 | import BusinessIcon from "$lib/icons/features/business.svg?raw"; |
14 | 15 | import ContactIcon from "$lib/icons/features/contact.svg?raw"; |
15 | 16 | import ImmediateIcon from "$lib/icons/features/immediate.svg?raw"; |
|
49 | 50 | <div class="product-display gradient-bg"> |
50 | 51 | <Grid columns={2} alignItems="center" size="large"> |
51 | 52 | <div class="product-content"> |
| 53 | + <Badge style="accent">NEW DEVICE!</Badge> |
52 | 54 | <hgroup> |
53 | 55 | <h1>comma four</h1> |
54 | 56 | <span>${FOUR_PRICE}</span> |
|
57 | 59 | Buy now |
58 | 60 | </LinkButton> |
59 | 61 | <p> |
60 | | - Works with {vehicleCountText} cars. |
61 | | - <a class="highlight muted" href="/vehicles">Check compatibility</a>. |
| 62 | + Works with {vehicleCountText} cars from 27 brands. |
| 63 | + <a class="highlight muted" href="/vehicles">Is your car compatible?</a> |
62 | 64 | </p> |
63 | 65 | </div> |
64 | 66 | <div class="mobile-first"> |
65 | 67 | <img src={FourImage} loading="lazy" alt="comma four device" /> |
66 | 68 | </div> |
67 | 69 | </Grid> |
68 | 70 | </div> |
| 71 | + <div class="traits light"> |
| 72 | + <Grid columns={3} alignItems="stretch" columnGap="0" rowGap="0"> |
| 73 | + <div class="trait"> |
| 74 | + <div>{@html CarIcon}</div> |
| 75 | + <hgroup> |
| 76 | + <h2>Works with {vehicleCountText} cars</h2> |
| 77 | + <div> |
| 78 | + Compatible with {vehicleCountText} vehicles. |
| 79 | + <a class="highlight" href="/vehicles">Check compatibility</a>. |
| 80 | + </div> |
| 81 | + </hgroup> |
| 82 | + </div> |
| 83 | + <div class="trait"> |
| 84 | + <div>{@html RecordingsIcon}</div> |
| 85 | + <hgroup> |
| 86 | + <h2>Easy to plug in</h2> |
| 87 | + <div> |
| 88 | + Check out our step-by-step guide. Get set up in your car in 15 minutes. |
| 89 | + </div> |
| 90 | + </hgroup> |
| 91 | + </div> |
| 92 | + <div class="trait"> |
| 93 | + <div>{@html CalendarIcon}</div> |
| 94 | + <hgroup> |
| 95 | + <h2>30-day money-back trial</h2> |
| 96 | + <div> |
| 97 | + See for yourself why Consumer Reports rated us as the |
| 98 | + <a class="highlight" href="https://data.consumerreports.org/wp-content/uploads/2020/11/consumer-reports-active-driving-assistance-systems-november-16-2020.pdf" target="_blank">top ADAS system</a>. |
| 99 | + </div> |
| 100 | + </hgroup> |
| 101 | + </div> |
| 102 | + </Grid> |
| 103 | + </div> |
69 | 104 | </article> |
70 | 105 |
|
71 | 106 | </div> |
|
0 commit comments