changed cards into links

This commit is contained in:
2026-01-11 14:46:55 -05:00
parent 0ab8d6b642
commit 11ea37d133
+15 -18
View File
@@ -80,6 +80,7 @@
/** Services */ /** Services */
a.service { text-decoration: none;}
.service { .service {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@@ -481,13 +482,8 @@
/** LEVEL ONE INTERIOR */ /** LEVEL ONE INTERIOR */
{ {
"title" : "Level One Interior", "title" : "Level One Interior",
"subtitle" : "Clean as a whistle!", "subtitle" : "A deep clean of your car's interior.",
"left" : { "left" : {
"header" : "Description",
"paragraph" : "A deep clean of your car's interior.",
"bullets" : []
},
"right" : {
"header" : "Includes", "header" : "Includes",
"paragraph" : "", "paragraph" : "",
"bullets" : [ "bullets" : [
@@ -498,6 +494,11 @@
"Crack & crevice cleaning" "Crack & crevice cleaning"
] ]
}, },
"right" : {
"header" : "",
"paragraph" : "",
"bullets" : []
},
"url" : "https://app.urable.com/virtual-shop/IQlYjZyF1i2XilEiEKB5/iy5yKtAhm0O0w0P05acA?productServiceId=3LCNMgeB58hjFwhg58BU&sku=MuCpgSMV0hU4sUdjAPBi" "url" : "https://app.urable.com/virtual-shop/IQlYjZyF1i2XilEiEKB5/iy5yKtAhm0O0w0P05acA?productServiceId=3LCNMgeB58hjFwhg58BU&sku=MuCpgSMV0hU4sUdjAPBi"
}, },
/** LEVEL TWO INTERIOR */ /** LEVEL TWO INTERIOR */
@@ -510,18 +511,16 @@
"bullets" : [ "bullets" : [
"Upholstery shampooing", "Upholstery shampooing",
"Crack & crevice cleaning", "Crack & crevice cleaning",
"6 month interior protection (Spills, UV, less dust, less cleaning, and plastic rejuvenation)" "6 month interior protection (Spills, UV, less dust, less cleaning, and plastic rejuvenation)",
"Vacuum & carpet shampooing",
"Plastics, leather, and vinyls scrubbed",
"Leather conditioning for protection and suppleness"
] ]
}, },
"right" : { "right" : {
"header" : "and", "header" : "",
"paragraph" : "", "paragraph" : "",
"bullets" : [ "bullets" : []
"Vacuum & carpet shampooing",
"Plastics, leather, and vinyls scrubbed",
"Leather conditioning for protection and suppleness",
]
}, },
"url" : "https://app.urable.com/virtual-shop/IQlYjZyF1i2XilEiEKB5/yT4vtoWKB5qGaQMaxOdd?productServiceId=bc8YSJd6fl0CprnAY43r&sku=iUA7y7dwM4Kz51pBpQNI" "url" : "https://app.urable.com/virtual-shop/IQlYjZyF1i2XilEiEKB5/yT4vtoWKB5qGaQMaxOdd?productServiceId=bc8YSJd6fl0CprnAY43r&sku=iUA7y7dwM4Kz51pBpQNI"
} }
@@ -542,7 +541,7 @@
target.insertAdjacentHTML( target.insertAdjacentHTML(
"beforeend", "beforeend",
` `
<div class="service"> <a class="service" href=${service.url} target="_blank">
<div class="card"> <div class="card">
<div class="card-head"> <div class="card-head">
<h2>${service.title}</h2> <h2>${service.title}</h2>
@@ -553,9 +552,7 @@
${rightSide ? rightSide : ""} ${rightSide ? rightSide : ""}
</div> </div>
</div> </div>
</a>
<button>book</button>
</div>
`); `);
} }
} }