@rileybathurst/paddle 0.0.72 → 0.0.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/PaddleSEO.tsx +3 -1
- package/src/styles/cards.css +7 -1
package/package.json
CHANGED
package/src/PaddleSEO.tsx
CHANGED
|
@@ -78,7 +78,7 @@ type SEOtypes = {
|
|
|
78
78
|
postalCode: string;
|
|
79
79
|
};
|
|
80
80
|
|
|
81
|
-
allStrapiLocation
|
|
81
|
+
allStrapiLocation?: {
|
|
82
82
|
nodes: {
|
|
83
83
|
name: string;
|
|
84
84
|
schemaType: string;
|
|
@@ -150,6 +150,7 @@ export const PaddleSEO = ({ title, description, ogImage, ogImageDescription, bre
|
|
|
150
150
|
"postalCode": "${strapiLocation.postalCode}",
|
|
151
151
|
"addressCountry": "US"
|
|
152
152
|
},
|
|
153
|
+
${allStrapiLocation ? `
|
|
153
154
|
"department": [
|
|
154
155
|
${allStrapiLocation.nodes.map((location) => {
|
|
155
156
|
return `{
|
|
@@ -166,6 +167,7 @@ export const PaddleSEO = ({ title, description, ogImage, ogImageDescription, bre
|
|
|
166
167
|
}`
|
|
167
168
|
})}
|
|
168
169
|
],
|
|
170
|
+
` : ''}
|
|
169
171
|
"areaServed": {
|
|
170
172
|
"@type": "GeoCircle",
|
|
171
173
|
"geoMidpoint": {
|
package/src/styles/cards.css
CHANGED
|
@@ -121,10 +121,16 @@
|
|
|
121
121
|
}
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
-
.card:hover
|
|
124
|
+
.card:hover,
|
|
125
|
+
.ticket:hover {
|
|
125
126
|
p {
|
|
126
127
|
text-decoration: underline;
|
|
127
128
|
}
|
|
129
|
+
|
|
130
|
+
/* TODO: this could use more */
|
|
131
|
+
img {
|
|
132
|
+
filter: brightness(80%);
|
|
133
|
+
}
|
|
128
134
|
}
|
|
129
135
|
|
|
130
136
|
.deck:empty {
|