Update cursive font to Caveat and fixed brand stores spacing problem.
This commit is contained in:
parent
845cc7185d
commit
e804720c7a
|
@ -3,7 +3,7 @@ import { getCategoryIdForSeoLink } from '../categories';
|
|||
|
||||
export const CoastStoreProducts: Product[] = [
|
||||
{
|
||||
slug: 'B07V3LB5DN',
|
||||
slug: 'B00SJRDIN2',
|
||||
tags: ['flashlight', 'safety'],
|
||||
brand: 'Coast',
|
||||
name: 'Durable 8" Spot/Flood LED flashlight',
|
||||
|
|
|
@ -11,25 +11,25 @@ export const VortextOpticsStoreProducts: Product[] = [
|
|||
categoryId: getCategoryIdForSeoLink('safety-equipment')!,
|
||||
tags: ['safety', 'outdoor'],
|
||||
description: `
|
||||
Let's just say you're pulling up and you're not sure if it's the right place. When you need a closer look, look no further than
|
||||
the Vortex Optics Crossfire HD 10x42 Binoculars. With this rugged and reliable companion by your side, you can gain
|
||||
clarity and confidence in a variety of environments.
|
||||
|
||||
**This Product Features:**
|
||||
|
||||
* 10x magnification & 42mm objective lenses
|
||||
* HD Optical System with select glass elements for exceptional resolution
|
||||
* Roof prism design for greater durability and compact size
|
||||
* Adjustable eyecups for comfortable viewing with or without eyeglasses
|
||||
* Center focus wheel adjusts both barrels simultaneously
|
||||
* Diopter adjustment for differences in a user's eyes
|
||||
* Rubber armor provides secure grip and durable external protection
|
||||
* Tripod adaptable for use on a tripod or car window mount
|
||||
* Nitrogen purging and o-ring seals provide water and fogproof performance
|
||||
* Rugged construction withstands recoil and impact
|
||||
* Included GlassPak binocular harness for quick optic deployment in the field
|
||||
|
||||
The Crossfire HD binoculars bring HD optics, rugged performance and high end form-factor. Add in the included GlassPak binocular harness for quick optic deployment in the field and superior protection and comfort. The Crossfire HD truly is a rare find.
|
||||
Let's just say you're pulling up and you're not sure if it's the right place. When you need a closer look, look no further than
|
||||
the Vortex Optics Crossfire HD 10x42 Binoculars. With this rugged and reliable companion by your side, you can gain
|
||||
clarity and confidence in a variety of environments.
|
||||
|
||||
**This Product Features:**
|
||||
|
||||
* 10x magnification & 42mm objective lenses
|
||||
* HD Optical System with select glass elements for exceptional resolution
|
||||
* Roof prism design for greater durability and compact size
|
||||
* Adjustable eyecups for comfortable viewing with or without eyeglasses
|
||||
* Center focus wheel adjusts both barrels simultaneously
|
||||
* Diopter adjustment for differences in a user's eyes
|
||||
* Rubber armor provides secure grip and durable external protection
|
||||
* Tripod adaptable for use on a tripod or car window mount
|
||||
* Nitrogen purging and o-ring seals provide water and fogproof performance
|
||||
* Rugged construction withstands recoil and impact
|
||||
* Included GlassPak binocular harness for quick optic deployment in the field
|
||||
|
||||
The Crossfire HD binoculars bring HD optics, rugged performance and high end form-factor. Add in the included GlassPak binocular harness for quick optic deployment in the field and superior protection and comfort. The Crossfire HD truly is a rare find.
|
||||
`.trim(),
|
||||
productDetails: {
|
||||
"title": "Vortex Optics Crossfire HD 10x42 Binoculars - HD Optical System, Tripod Adaptable, Rubber Armor, Waterproof, Fogproof, Shockproof, Included GlassPak - Unlimited, Unconditional Warranty",
|
||||
|
|
|
@ -23,7 +23,7 @@ const { title } = Astro.props;
|
|||
<script src={bootstrap}></script>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Holtwood+One+SC&family=Protest+Strike&family=Charm:wght@400;700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Holtwood+One+SC&family=Caveat:wght@400..700&Protest+Strike&family=Charm:wght@400;700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<slot />
|
||||
|
|
|
@ -126,12 +126,12 @@ const category = allCategories.find(c => c.id == product.categoryId)!;
|
|||
margin-bottom: 2rem;
|
||||
border: 1px solid rgba(var(--accent-light), 25%);
|
||||
background: linear-gradient(rgba(var(--accent-dark), 66%), rgba(var(--accent-dark), 33%));
|
||||
padding: 1.5rem;
|
||||
padding: 0.5rem;
|
||||
border-radius: 8px;
|
||||
font-family: "Charm", cursive;
|
||||
font-family: "Caveat", cursive;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
font-size: 2rem;
|
||||
font-size: 2.5rem;
|
||||
text-align: center;
|
||||
}
|
||||
.instructions code {
|
||||
|
|
|
@ -72,12 +72,12 @@ import { allCategories } from '../data/categories';
|
|||
margin-bottom: 2rem;
|
||||
border: 1px solid rgba(var(--accent-light), 25%);
|
||||
background: linear-gradient(rgba(var(--accent-dark), 66%), rgba(var(--accent-dark), 33%));
|
||||
padding: 1.5rem;
|
||||
padding: 0.5rem;
|
||||
border-radius: 8px;
|
||||
font-family: "Charm", cursive;
|
||||
font-family: "Caveat", cursive;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
font-size: 2rem;
|
||||
font-size: 2.5rem;
|
||||
text-align: center;
|
||||
}
|
||||
.instructions code {
|
||||
|
|
|
@ -90,12 +90,12 @@ const categoryProducts = allProducts.filter(p => p.categoryId === category.id)!;
|
|||
margin-bottom: 2rem;
|
||||
border: 1px solid rgba(var(--accent-light), 25%);
|
||||
background: linear-gradient(rgba(var(--accent-dark), 66%), rgba(var(--accent-dark), 33%));
|
||||
padding: 1.5rem;
|
||||
padding: 0.5rem;
|
||||
border-radius: 8px;
|
||||
font-family: "Charm", cursive;
|
||||
font-family: "Caveat", cursive;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
font-size: 2rem;
|
||||
font-size: 2.5rem;
|
||||
text-align: center;
|
||||
}
|
||||
.instructions code {
|
||||
|
|
|
@ -70,12 +70,12 @@ import { allCategories } from '../data/categories';
|
|||
margin-bottom: 2rem;
|
||||
border: 1px solid rgba(var(--accent-light), 25%);
|
||||
background: linear-gradient(rgba(var(--accent-dark), 66%), rgba(var(--accent-dark), 33%));
|
||||
padding: 1.5rem;
|
||||
padding: 0.5rem;
|
||||
border-radius: 8px;
|
||||
font-family: "Charm", cursive;
|
||||
font-family: "Caveat", cursive;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
font-size: 2rem;
|
||||
font-size: 2.5rem;
|
||||
text-align: center;
|
||||
}
|
||||
.instructions code {
|
||||
|
|
Loading…
Reference in New Issue
Block a user