@jhits/botanics_and_you 0.0.6 → 0.0.7
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/dist/plugin-blog/blocks/Image.d.ts.map +1 -1
- package/dist/plugin-blog/blocks/Image.js +38 -8
- package/dist/plugin-newsletter/index.d.ts +19 -0
- package/dist/plugin-newsletter/index.d.ts.map +1 -0
- package/dist/plugin-newsletter/index.js +40 -0
- package/package.json +34 -11
- package/public/BotanicsYouFull.svg +1 -0
- package/src/index.ts +10 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Image.d.ts","sourceRoot":"","sources":["../../../src/plugin-blog/blocks/Image.tsx"],"names":[],"mappings":"AAEA,OAAO,KAA4D,MAAM,OAAO,CAAC;AAGjF,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AA6B9F,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,cAAc,
|
|
1
|
+
{"version":3,"file":"Image.d.ts","sourceRoot":"","sources":["../../../src/plugin-blog/blocks/Image.tsx"],"names":[],"mappings":"AAEA,OAAO,KAA4D,MAAM,OAAO,CAAC;AAGjF,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AA6B9F,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,cAAc,CA4Z9C,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAmDpD,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,qBAoBxB,CAAC"}
|
|
@@ -30,6 +30,26 @@ export const ImageEdit = ({ block, onUpdate }) => {
|
|
|
30
30
|
// We use a ref to track the latest data without triggering re-renders during drag
|
|
31
31
|
const data = (block.data || {});
|
|
32
32
|
const { imageId, caption = '', alt = '', borderRadius = 'xl', height = 450, widthPercent = 100, brightness = 100, blur = 0, scale = 1.0, positionX = 0, positionY = 0 } = data;
|
|
33
|
+
const [wrapperWidth, setWrapperWidth] = useState(1000);
|
|
34
|
+
const [pixelWidth, setPixelWidth] = useState(0);
|
|
35
|
+
// Track wrapper width and calculate pixel width
|
|
36
|
+
// Use a fixed reference width for consistency between Edit and Preview
|
|
37
|
+
const REFERENCE_WIDTH = 938;
|
|
38
|
+
useEffect(() => {
|
|
39
|
+
if (!wrapperRef.current)
|
|
40
|
+
return;
|
|
41
|
+
const updateWidth = () => {
|
|
42
|
+
var _a;
|
|
43
|
+
const width = ((_a = wrapperRef.current) === null || _a === void 0 ? void 0 : _a.clientWidth) || REFERENCE_WIDTH;
|
|
44
|
+
setWrapperWidth(width);
|
|
45
|
+
const calculatedWidth = (widthPercent / 100) * width;
|
|
46
|
+
setPixelWidth(Math.round(calculatedWidth));
|
|
47
|
+
};
|
|
48
|
+
updateWidth();
|
|
49
|
+
const obs = new ResizeObserver(updateWidth);
|
|
50
|
+
obs.observe(wrapperRef.current);
|
|
51
|
+
return () => obs.disconnect();
|
|
52
|
+
}, [widthPercent]);
|
|
33
53
|
// MEASUREMENT: Track actual pixel width for the ImagePicker aspect ratio
|
|
34
54
|
useEffect(() => {
|
|
35
55
|
if (!containerRef.current)
|
|
@@ -167,7 +187,7 @@ export const ImageEdit = ({ block, onUpdate }) => {
|
|
|
167
187
|
document.body.style.userSelect = 'auto';
|
|
168
188
|
};
|
|
169
189
|
}, [isResizing, updateField]);
|
|
170
|
-
return (_jsxs("div", { ref: wrapperRef, className: "relative w-full flex flex-col items-center py-8", children: [imageId ? (_jsxs("div", { ref: containerRef, style: { height: `${height}px`, width: `${widthPercent}%`, maxWidth: '100%' }, className: "relative group/image-container touch-none", children: [_jsxs("div", { className: `relative w-full h-full overflow-hidden bg-neutral-100 border border-neutral-200 shadow-sm ${borderRadiusClasses[borderRadius]} group/img`, children: [_jsx("div", { className: "w-full h-full cursor-pointer relative", onClick: () => setShowSettings(true), children: _jsx(PluginImage, Object.assign({ id: imageId, alt: alt || caption, fill: true, className: "object-cover w-full h-full pointer-events-none", editable: false }, {
|
|
190
|
+
return (_jsxs("div", { ref: wrapperRef, className: "relative w-full flex flex-col items-center py-8", children: [imageId ? (_jsxs("div", { ref: containerRef, style: { height: `${height}px`, width: pixelWidth > 0 ? `${pixelWidth}px` : `${widthPercent}%`, maxWidth: '100%' }, className: "relative group/image-container touch-none", children: [_jsxs("div", { className: `relative w-full h-full overflow-hidden bg-neutral-100 border border-neutral-200 shadow-sm ${borderRadiusClasses[borderRadius]} group/img`, children: [_jsx("div", { className: "w-full h-full cursor-pointer relative", onClick: () => setShowSettings(true), children: _jsx(PluginImage, Object.assign({ id: imageId, alt: alt || caption, fill: true, className: "object-cover w-full h-full pointer-events-none", editable: false }, {
|
|
171
191
|
scale,
|
|
172
192
|
positionX,
|
|
173
193
|
positionY,
|
|
@@ -252,15 +272,25 @@ export const ImageEdit = ({ block, onUpdate }) => {
|
|
|
252
272
|
export const ImagePreview = ({ block }) => {
|
|
253
273
|
const data = (block.data || {});
|
|
254
274
|
const { imageId, caption, alt, borderRadius = 'xl', height = 450, widthPercent = 100, brightness = 100, blur = 0, scale = 1, positionX = 0, positionY = 0 } = data;
|
|
275
|
+
const wrapperRef = useRef(null);
|
|
276
|
+
const [pixelWidth, setPixelWidth] = useState(0);
|
|
277
|
+
// Use a fixed reference width for consistency between Edit and Preview
|
|
278
|
+
const REFERENCE_WIDTH = 938;
|
|
279
|
+
useEffect(() => {
|
|
280
|
+
if (!wrapperRef.current)
|
|
281
|
+
return;
|
|
282
|
+
const calculatedWidth = (widthPercent / 100) * REFERENCE_WIDTH;
|
|
283
|
+
setPixelWidth(Math.round(calculatedWidth));
|
|
284
|
+
}, [widthPercent]);
|
|
255
285
|
if (!imageId)
|
|
256
286
|
return null;
|
|
257
|
-
return (
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
287
|
+
return (_jsx("div", { ref: wrapperRef, className: "relative w-full flex flex-col items-center py-8", children: _jsxs("div", { style: { height: `${height}px`, width: pixelWidth > 0 ? `${pixelWidth}px` : `${widthPercent}%`, maxWidth: '100%' }, className: "relative group/image-container touch-none", children: [_jsx("div", { className: `relative w-full h-full overflow-hidden bg-neutral-100 border border-neutral-200 shadow-sm ${borderRadiusClasses[borderRadius]} group/img`, children: _jsx("div", { className: "w-full h-full cursor-pointer relative", children: _jsx(PluginImage, Object.assign({ id: imageId, alt: alt || caption || '', fill: true, className: "object-cover w-full h-full pointer-events-none", editable: false }, {
|
|
288
|
+
scale,
|
|
289
|
+
positionX,
|
|
290
|
+
positionY,
|
|
291
|
+
brightness,
|
|
292
|
+
blur,
|
|
293
|
+
})) }) }), caption && (_jsx("div", { className: "w-full mt-4 text-sm text-neutral-400 text-center italic", children: caption }))] }) }));
|
|
264
294
|
};
|
|
265
295
|
export const imageBlock = {
|
|
266
296
|
type: 'image',
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* BotanicsAndYou Newsletter Plugin Configuration
|
|
3
|
+
*
|
|
4
|
+
* Export blocks and config for the newsletter plugin
|
|
5
|
+
*/
|
|
6
|
+
import type { ClientBlockDefinition, NewsletterPluginConfig } from '@jhits/plugin-newsletter';
|
|
7
|
+
/**
|
|
8
|
+
* Botanical Newsletter Blocks Array
|
|
9
|
+
* Export all blocks for registration with the newsletter plugin
|
|
10
|
+
*
|
|
11
|
+
* We reuse the blog blocks, filtering out blocks that don't make sense for emails
|
|
12
|
+
*/
|
|
13
|
+
export declare const botanyNewsletterBlocks: ClientBlockDefinition[];
|
|
14
|
+
export type { ClientBlockDefinition };
|
|
15
|
+
/**
|
|
16
|
+
* Full newsletter plugin configuration for BotanicsAndYou
|
|
17
|
+
*/
|
|
18
|
+
export declare const newsletterPluginConfig: NewsletterPluginConfig;
|
|
19
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/plugin-newsletter/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,qBAAqB,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAK9F;;;;;GAKG;AACH,eAAO,MAAM,sBAAsB,EAAE,qBAAqB,EAIzD,CAAC;AAEF,YAAY,EAAE,qBAAqB,EAAE,CAAC;AAatC;;GAEG;AACH,eAAO,MAAM,sBAAsB,EAAE,sBAUpC,CAAC"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* BotanicsAndYou Newsletter Plugin Configuration
|
|
3
|
+
*
|
|
4
|
+
* Export blocks and config for the newsletter plugin
|
|
5
|
+
*/
|
|
6
|
+
// Re-export from blog package (blocks are shared)
|
|
7
|
+
import { botanyBlocks } from '@jhits/botanics_and_you/plugin-blog';
|
|
8
|
+
/**
|
|
9
|
+
* Botanical Newsletter Blocks Array
|
|
10
|
+
* Export all blocks for registration with the newsletter plugin
|
|
11
|
+
*
|
|
12
|
+
* We reuse the blog blocks, filtering out blocks that don't make sense for emails
|
|
13
|
+
*/
|
|
14
|
+
export const botanyNewsletterBlocks = [
|
|
15
|
+
...botanyBlocks.filter(block => block.type !== 'hero' && block.type !== 'recipe'),
|
|
16
|
+
];
|
|
17
|
+
/**
|
|
18
|
+
* Get the logo URL for the newsletter
|
|
19
|
+
* Uses existing environment variables
|
|
20
|
+
*/
|
|
21
|
+
function getLogoUrl() {
|
|
22
|
+
const siteUrl = process.env.NEXT_PUBLIC_SITE_URL
|
|
23
|
+
|| (process.env.NODE_ENV === 'production' ? '' : 'http://localhost:3000');
|
|
24
|
+
const logoPath = process.env.NEXT_PUBLIC_SITE_LOGO_NEWSLETTER || '/BotanicsYouFull.svg';
|
|
25
|
+
return `${siteUrl}${logoPath}`;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Full newsletter plugin configuration for BotanicsAndYou
|
|
29
|
+
*/
|
|
30
|
+
export const newsletterPluginConfig = {
|
|
31
|
+
darkMode: false,
|
|
32
|
+
backgroundColors: {
|
|
33
|
+
light: '#fefbf8',
|
|
34
|
+
},
|
|
35
|
+
emailConfig: {
|
|
36
|
+
logoUrl: getLogoUrl(),
|
|
37
|
+
logoAlt: 'Botanics & You',
|
|
38
|
+
footerText: `© ${new Date().getFullYear()} Botanics & You. All rights reserved.`,
|
|
39
|
+
},
|
|
40
|
+
};
|
package/package.json
CHANGED
|
@@ -1,28 +1,50 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jhits/botanics_and_you",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "BotanicsAndYou client configuration for JHITS plugins",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
|
-
"main": "./
|
|
9
|
-
"types": "./
|
|
8
|
+
"main": "./src/index.ts",
|
|
9
|
+
"types": "./src/index.ts",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
|
-
"types": "./
|
|
13
|
-
"
|
|
12
|
+
"types": "./src/index.ts",
|
|
13
|
+
"import": "./src/index.ts",
|
|
14
|
+
"default": "./src/index.ts"
|
|
15
|
+
},
|
|
16
|
+
"./src": {
|
|
17
|
+
"types": "./src/index.ts",
|
|
18
|
+
"import": "./src/index.ts",
|
|
19
|
+
"default": "./src/index.ts"
|
|
14
20
|
},
|
|
15
21
|
"./plugin-blog": {
|
|
16
|
-
"types": "./
|
|
17
|
-
"
|
|
22
|
+
"types": "./src/plugin-blog/index.ts",
|
|
23
|
+
"import": "./src/plugin-blog/index.ts",
|
|
24
|
+
"default": "./src/plugin-blog/index.ts"
|
|
25
|
+
},
|
|
26
|
+
"./plugin-blog/blocks": {
|
|
27
|
+
"types": "./src/plugin-blog/blocks.ts",
|
|
28
|
+
"import": "./src/plugin-blog/blocks.ts",
|
|
29
|
+
"default": "./src/plugin-blog/blocks.ts"
|
|
18
30
|
},
|
|
19
31
|
"./plugin-blog/theme": {
|
|
20
|
-
"types": "./
|
|
21
|
-
"
|
|
32
|
+
"types": "./src/plugin-blog/theme.ts",
|
|
33
|
+
"import": "./src/plugin-blog/theme.ts",
|
|
34
|
+
"default": "./src/plugin-blog/theme.css"
|
|
35
|
+
},
|
|
36
|
+
"./plugin-newsletter": {
|
|
37
|
+
"types": "./src/plugin-newsletter/index.ts",
|
|
38
|
+
"import": "./src/plugin-newsletter/index.ts",
|
|
39
|
+
"default": "./src/plugin-newsletter/index.ts"
|
|
40
|
+
},
|
|
41
|
+
"./public/*": {
|
|
42
|
+
"default": "./public/*"
|
|
22
43
|
}
|
|
23
44
|
},
|
|
24
45
|
"files": [
|
|
25
46
|
"dist",
|
|
47
|
+
"public",
|
|
26
48
|
"package.json"
|
|
27
49
|
],
|
|
28
50
|
"peerDependencies": {
|
|
@@ -33,8 +55,9 @@
|
|
|
33
55
|
"lucide-react": "^0.564.0",
|
|
34
56
|
"react": "^19.2.4",
|
|
35
57
|
"react-dom": "^19.2.4",
|
|
36
|
-
"@jhits/plugin-blog": "0.0.
|
|
37
|
-
"@jhits/plugin-images": "0.0.
|
|
58
|
+
"@jhits/plugin-blog": "0.0.14",
|
|
59
|
+
"@jhits/plugin-images": "0.0.10",
|
|
60
|
+
"@jhits/plugin-newsletter": "0.0.9"
|
|
38
61
|
},
|
|
39
62
|
"devDependencies": {
|
|
40
63
|
"@types/react": "^19.2.14",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" x="0" y="0" width="2400" height="521.080663462328" viewBox="43.484296264648435 97.53130096435547 253.03140747070313 54.93740570068359" preserveAspectRatio="xMidYMid meet" color-interpolation-filters="sRGB"><g><defs><linearGradient id="92" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="#fa71cd"></stop> <stop offset="100%" stop-color="#9b59b6"></stop></linearGradient><linearGradient id="93" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="#f9d423"></stop> <stop offset="100%" stop-color="#f83600"></stop></linearGradient><linearGradient id="94" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="#0064d2"></stop> <stop offset="100%" stop-color="#1cb0f6"></stop></linearGradient><linearGradient id="95" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="#f00978"></stop> <stop offset="100%" stop-color="#3f51b1"></stop></linearGradient><linearGradient id="96" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="#7873f5"></stop> <stop offset="100%" stop-color="#ec77ab"></stop></linearGradient><linearGradient id="97" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="#f9d423"></stop> <stop offset="100%" stop-color="#e14fad"></stop></linearGradient><linearGradient id="98" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="#009efd"></stop> <stop offset="100%" stop-color="#2af598"></stop></linearGradient><linearGradient id="99" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="#ffcc00"></stop> <stop offset="100%" stop-color="#00b140"></stop></linearGradient><linearGradient id="100" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="#d51007"></stop> <stop offset="100%" stop-color="#ff8177"></stop></linearGradient><linearGradient id="102" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="#a2b6df"></stop> <stop offset="100%" stop-color="#0c3483"></stop></linearGradient><linearGradient id="103" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="#7ac5d8"></stop> <stop offset="100%" stop-color="#eea2a2"></stop></linearGradient><linearGradient id="104" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="#00ecbc"></stop> <stop offset="100%" stop-color="#007adf"></stop></linearGradient><linearGradient id="105" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="#b88746"></stop> <stop offset="100%" stop-color="#fdf5a6"></stop></linearGradient></defs><g fill="#101115" class="endsvg" transform="translate(45.964996337890625,100.01199722290039)"> <g class="tp-name" transform="translate(0,0)"><g><rect stroke-width="2" class="i-icon-bg" x="0" y="0" width="248.07000732421875" height="35.81999969482422" fill-opacity="0"></rect> </g> <g transform="translate(0,0)"><g><g><rect stroke-width="2" class="i-icon-bg" x="0" y="0" width="175.63999938964844" height="35.81999969482422" fill-opacity="0"></rect> </g> <g transform="translate(5,7)"><rect x="0" y="-7" width="165.63999938964844" height="2" fill="#101115"></rect> <rect x="0" y="26.81999969482422" width="165.63999938964844" height="2" fill="#101115"></rect> <g fill="#101115"><g transform="scale(1)"><path d="M1.25-20.39L1.25-20.99Q1.87-20.96 2.88-20.93Q3.88-20.90 4.86-20.90L4.86-20.90Q6.25-20.90 7.53-20.93Q8.80-20.96 9.34-20.96L9.34-20.96Q12.45-20.96 14.02-19.65Q15.59-18.35 15.59-16.30L15.59-16.30Q15.59-15.27 15.16-14.27Q14.73-13.28 13.74-12.46Q12.75-11.65 11.09-11.15L11.09-11.15L11.09-11.09Q13.43-10.79 14.75-9.97Q16.07-9.16 16.60-8.06Q17.13-6.97 17.13-5.75L17.13-5.75Q17.13-3.23 15.25-1.62Q13.37 0 10.02 0L10.02 0Q9.37 0 8.06-0.04Q6.76-0.09 4.92-0.09L4.92-0.09Q3.88-0.09 2.88-0.07Q1.87-0.06 1.25 0L1.25 0L1.25-0.59Q2.25-0.65 2.77-0.83Q3.29-1.01 3.47-1.54Q3.65-2.08 3.65-3.14L3.65-3.14L3.65-17.85Q3.65-18.94 3.47-19.46Q3.29-19.98 2.77-20.17Q2.25-20.36 1.25-20.39L1.25-20.39ZM8.60-20.39L8.60-20.39Q7.23-20.39 6.82-19.89Q6.40-19.39 6.40-17.85L6.40-17.85L6.40-3.14Q6.40-1.60 6.83-1.14Q7.26-0.68 8.63-0.68L8.63-0.68Q11.53-0.68 12.85-2.03Q14.17-3.38 14.17-5.87L14.17-5.87Q14.17-8.15 12.94-9.40Q11.71-10.64 8.89-10.64L8.89-10.64L5.84-10.64Q5.84-10.64 5.84-10.89Q5.84-11.15 5.84-11.15L5.84-11.15L8.39-11.15Q10.14-11.15 11.09-11.81Q12.04-12.48 12.39-13.59Q12.75-14.70 12.75-15.98L12.75-15.98Q12.75-18.17 11.78-19.28Q10.82-20.39 8.60-20.39ZM29.47-21.40L29.47-21.40Q32.28-21.40 34.40-20.13Q36.52-18.85 37.69-16.47Q38.86-14.08 38.86-10.67L38.86-10.67Q38.86-7.35 37.66-4.86Q36.46-2.37 34.33-0.98Q32.19 0.42 29.44 0.42L29.44 0.42Q26.62 0.42 24.50-0.86Q22.38-2.13 21.21-4.54Q20.04-6.94 20.04-10.32L20.04-10.32Q20.04-13.64 21.25-16.13Q22.47-18.62 24.59-20.01Q26.71-21.40 29.47-21.40ZM29.35-20.87L29.35-20.87Q27.42-20.87 26.00-19.53Q24.57-18.20 23.79-15.86Q23.00-13.52 23.00-10.43L23.00-10.43Q23.00-7.29 23.88-4.97Q24.75-2.64 26.25-1.38Q27.75-0.12 29.55-0.12L29.55-0.12Q31.48-0.12 32.90-1.45Q34.33-2.79 35.11-5.14Q35.90-7.50 35.90-10.55L35.90-10.55Q35.90-13.72 35.02-16.04Q34.15-18.35 32.67-19.61Q31.18-20.87 29.35-20.87ZM57.98-20.99L57.98-20.99Q57.86-19.86 57.82-18.81Q57.77-17.76 57.77-17.19L57.77-17.19Q57.77-16.48 57.80-15.86Q57.83-15.24 57.86-14.76L57.86-14.76L57.18-14.76Q56.97-16.84 56.62-18.04Q56.26-19.24 55.37-19.77Q54.48-20.31 52.62-20.31L52.62-20.31L51.02-20.31L51.02-3.44Q51.02-2.25 51.24-1.66Q51.46-1.07 52.11-0.86Q52.76-0.65 54.01-0.59L54.01-0.59L54.01 0Q53.24-0.06 52.05-0.07Q50.87-0.09 49.65-0.09L49.65-0.09Q48.32-0.09 47.15-0.07Q45.98-0.06 45.26 0L45.26 0L45.26-0.59Q46.51-0.65 47.16-0.86Q47.81-1.07 48.04-1.66Q48.26-2.25 48.26-3.44L48.26-3.44L48.26-20.31L46.66-20.31Q44.82-20.31 43.92-19.77Q43.01-19.24 42.66-18.04Q42.30-16.84 42.09-14.76L42.09-14.76L41.41-14.76Q41.47-15.24 41.49-15.86Q41.50-16.48 41.50-17.19L41.50-17.19Q41.50-17.76 41.46-18.81Q41.41-19.86 41.29-20.99L41.29-20.99Q42.54-20.96 44.01-20.93Q45.47-20.90 46.95-20.90Q48.44-20.90 49.65-20.90L49.65-20.90Q50.87-20.90 52.33-20.90Q53.80-20.90 55.28-20.93Q56.77-20.96 57.98-20.99ZM67.02-21.14L67.02-21.14L74.26-2.49Q74.70-1.36 75.26-0.99Q75.83-0.62 76.30-0.59L76.30-0.59L76.30 0Q75.71-0.06 74.85-0.07Q73.99-0.09 73.13-0.09L73.13-0.09Q71.97-0.09 70.97-0.07Q69.96-0.06 69.33 0L69.33 0L69.33-0.59Q70.85-0.65 71.26-1.11Q71.68-1.57 71.08-3.08L71.08-3.08L65.57-17.82L66.04-18.20L60.89-4.80Q60.26-3.20 60.29-2.30Q60.32-1.39 60.98-1.01Q61.63-0.62 62.87-0.59L62.87-0.59L62.87 0Q62.04-0.06 61.14-0.07Q60.23-0.09 59.46-0.09L59.46-0.09Q58.72-0.09 58.20-0.07Q57.69-0.06 57.24 0L57.24 0L57.24-0.59Q57.83-0.74 58.46-1.29Q59.08-1.84 59.58-3.17L59.58-3.17L66.55-21.14Q66.67-21.14 66.79-21.14Q66.90-21.14 67.02-21.14ZM62.10-8.54L70.64-8.54L70.64-7.94L61.81-7.94L62.10-8.54ZM95.39-20.99L95.39-20.99L95.39-20.39Q94.38-20.36 93.86-20.10Q93.35-19.83 93.17-19.24Q92.99-18.65 92.99-17.55L92.99-17.55L92.99 0.15Q92.81 0.15 92.65 0.15Q92.49 0.15 92.31 0.15L92.31 0.15L79.86-19.09L79.86-3.44Q79.86-2.37 80.05-1.76Q80.24-1.16 80.82-0.90Q81.40-0.65 82.56-0.59L82.56-0.59L82.56 0Q82.02-0.06 81.16-0.07Q80.30-0.09 79.53-0.09L79.53-0.09Q78.79-0.09 78.04-0.07Q77.28-0.06 76.78 0L76.78 0L76.78-0.59Q77.78-0.65 78.30-0.90Q78.82-1.16 79.00-1.76Q79.18-2.37 79.18-3.44L79.18-3.44L79.18-17.85Q79.18-18.94 79.00-19.46Q78.82-19.98 78.30-20.17Q77.78-20.36 76.78-20.39L76.78-20.39L76.78-20.99Q77.28-20.96 78.04-20.93Q78.79-20.90 79.53-20.90L79.53-20.90Q80.18-20.90 80.78-20.93Q81.37-20.96 81.84-20.99L81.84-20.99L92.31-4.86L92.31-17.55Q92.31-18.65 92.12-19.24Q91.92-19.83 91.34-20.10Q90.77-20.36 89.61-20.39L89.61-20.39L89.61-20.99Q90.14-20.96 91.02-20.93Q91.89-20.90 92.63-20.90L92.63-20.90Q93.41-20.90 94.16-20.93Q94.92-20.96 95.39-20.99ZM105.26-20.99L105.26-20.99L105.26-20.39Q104.25-20.36 103.74-20.17Q103.22-19.98 103.04-19.46Q102.86-18.94 102.86-17.85L102.86-17.85L102.86-3.14Q102.86-2.08 103.04-1.54Q103.22-1.01 103.74-0.83Q104.25-0.65 105.26-0.59L105.26-0.59L105.26 0Q104.58-0.06 103.56-0.07Q102.54-0.09 101.50-0.09L101.50-0.09Q100.34-0.09 99.33-0.07Q98.33-0.06 97.70 0L97.70 0L97.70-0.59Q98.71-0.65 99.23-0.83Q99.75-1.01 99.93-1.54Q100.10-2.08 100.10-3.14L100.10-3.14L100.10-17.85Q100.10-18.94 99.93-19.46Q99.75-19.98 99.23-20.17Q98.71-20.36 97.70-20.39L97.70-20.39L97.70-20.99Q98.33-20.96 99.33-20.93Q100.34-20.90 101.50-20.90L101.50-20.90Q102.54-20.90 103.56-20.93Q104.58-20.96 105.26-20.99ZM117.27-21.40L117.27-21.40Q119.22-21.40 120.48-20.82Q121.74-20.25 122.72-19.48L122.72-19.48Q123.31-19.03 123.63-19.37Q123.94-19.71 124.06-20.99L124.06-20.99L124.74-20.99Q124.68-19.89 124.65-18.32Q124.62-16.75 124.62-14.17L124.62-14.17L123.94-14.17Q123.73-15.44 123.55-16.20Q123.37-16.96 123.12-17.49Q122.87-18.02 122.46-18.56L122.46-18.56Q121.54-19.77 120.14-20.32Q118.75-20.87 117.21-20.87L117.21-20.87Q115.76-20.87 114.58-20.14Q113.41-19.42 112.57-18.05Q111.72-16.69 111.26-14.76Q110.81-12.84 110.81-10.43L110.81-10.43Q110.81-7.94 111.31-6.03Q111.81-4.12 112.72-2.82Q113.62-1.51 114.85-0.84Q116.08-0.18 117.50-0.18L117.50-0.18Q118.84-0.18 120.29-0.71Q121.74-1.25 122.57-2.43L122.57-2.43Q123.23-3.29 123.48-4.30Q123.73-5.31 123.94-7.11L123.94-7.11L124.62-7.11Q124.62-4.42 124.65-2.77Q124.68-1.13 124.74 0L124.74 0L124.06 0Q123.94-1.27 123.66-1.60Q123.37-1.93 122.72-1.51L122.72-1.51Q121.63-0.74 120.40-0.16Q119.16 0.42 117.24 0.42L117.24 0.42Q114.42 0.42 112.30-0.86Q110.18-2.13 109.01-4.54Q107.84-6.94 107.84-10.32L107.84-10.32Q107.84-13.64 109.06-16.13Q110.27-18.62 112.39-20.01Q114.51-21.40 117.27-21.40ZM134.25-21.31L134.25-21.31Q135.74-21.31 136.51-20.97Q137.28-20.63 137.87-20.22L137.87-20.22Q138.23-20.01 138.45-19.91Q138.67-19.80 138.88-19.80L138.88-19.80Q139.35-19.80 139.53-21.11L139.53-21.11L140.21-21.11Q140.18-20.60 140.14-19.91Q140.09-19.21 140.08-18.07Q140.06-16.93 140.06-15.06L140.06-15.06L139.38-15.06Q139.29-16.48 138.76-17.79Q138.23-19.09 137.20-19.92Q136.18-20.75 134.52-20.75L134.52-20.75Q132.95-20.75 131.93-19.80Q130.90-18.85 130.90-17.31L130.90-17.31Q130.90-15.98 131.59-15.07Q132.27-14.17 133.41-13.44Q134.55-12.72 135.88-11.89L135.88-11.89Q137.42-10.94 138.63-10.00Q139.83-9.07 140.52-7.94Q141.22-6.82 141.22-5.22L141.22-5.22Q141.22-3.32 140.36-2.08Q139.50-0.83 138.08-0.21Q136.65 0.42 134.93 0.42L134.93 0.42Q133.36 0.42 132.44 0.06Q131.53-0.30 130.87-0.68L130.87-0.68Q130.22-1.10 129.87-1.10L129.87-1.10Q129.39-1.10 129.21 0.21L129.21 0.21L128.53 0.21Q128.59-0.42 128.61-1.26Q128.62-2.10 128.64-3.47Q128.65-4.83 128.65-6.91L128.65-6.91L129.33-6.91Q129.45-5.13 130.00-3.59Q130.55-2.05 131.69-1.11Q132.83-0.18 134.73-0.18L134.73-0.18Q136.18-0.18 137.38-1.11Q138.58-2.05 138.58-4.12L138.58-4.12Q138.58-5.93 137.31-7.11Q136.03-8.30 133.96-9.55L133.96-9.55Q132.56-10.40 131.35-11.29Q130.13-12.18 129.41-13.35Q128.68-14.53 128.68-16.19L128.68-16.19Q128.68-17.93 129.47-19.08Q130.25-20.22 131.53-20.76Q132.80-21.31 134.25-21.31ZM151.77-20.81L151.77-20.81Q152.90-20.81 153.64-20.56Q154.38-20.31 154.86-19.92L154.86-19.92Q155.45-19.45 155.70-18.90Q155.95-18.35 155.95-17.87L155.95-17.87Q155.95-17.13 155.43-16.72Q154.91-16.30 154.29-16.30L154.29-16.30Q153.70-16.30 153.22-16.69Q152.75-17.07 152.75-17.79L152.75-17.79Q152.75-18.44 153.19-18.90Q153.64-19.36 154.32-19.42L154.32-19.42Q154.20-19.80 153.60-20.08Q152.99-20.36 152.07-20.36L152.07-20.36Q150.56-20.36 149.59-19.46Q148.63-18.56 148.63-16.84L148.63-16.84Q148.63-16.01 148.94-15.15Q149.25-14.29 150.14-13.46L150.14-13.46Q150.65-13.55 151.18-13.59Q151.71-13.64 151.98-13.64L151.98-13.64Q153.17-13.64 153.17-12.95L153.17-12.95Q153.17-12.69 152.94-12.54Q152.72-12.39 152.34-12.39L152.34-12.39Q151.77-12.39 151.15-12.64Q150.53-12.89 150.17-13.04L150.17-13.04Q148.45-12.54 147.38-11.40Q146.32-10.26 146.32-8.18L146.32-8.18Q146.32-6.14 147.38-4.71Q148.45-3.29 150.25-2.53Q152.04-1.78 154.26-1.78L154.26-1.78Q155.83-1.78 157.24-2.15Q158.65-2.52 159.73-3.23Q160.81-3.94 161.44-4.94Q162.06-5.93 162.06-7.20L162.06-7.20Q162.06-7.77 161.82-8.64Q161.58-9.52 160.84-10.36Q160.10-11.21 158.56-11.68L158.56-11.68L158.92-11.98Q161.08-11.32 162.00-9.89Q162.92-8.45 162.92-6.67L162.92-6.67Q162.92-4.89 161.85-3.26Q160.78-1.63 158.77-0.61Q156.75 0.42 153.88 0.42L153.88 0.42Q151.33 0.42 149.13-0.47Q146.94-1.36 145.61-3.02Q144.27-4.68 144.27-6.97L144.27-6.97Q144.27-8.57 144.89-9.71Q145.52-10.85 146.44-11.59Q147.36-12.33 148.27-12.73Q149.19-13.13 149.76-13.28L149.76-13.28Q148.27-13.93 147.52-14.97Q146.76-16.01 146.76-17.10L146.76-17.10Q146.76-17.82 147.09-18.48Q147.41-19.15 148.04-19.68Q148.66-20.22 149.59-20.51Q150.53-20.81 151.77-20.81ZM162.56-21.40L162.56-21.40Q164.40-21.40 165.65-20.35Q166.89-19.30 166.89-17.40L166.89-17.40Q166.89-15.89 166.07-14.87Q165.26-13.84 164.07-13.25L164.07-13.25Q163.39-12.92 162.28-12.54Q161.17-12.15 159.91-11.77Q158.65-11.38 157.51-11.01Q156.37-10.64 155.66-10.38L155.66-10.38Q154.56-9.96 153.80-9.35Q153.05-8.74 153.05-7.80L153.05-7.80Q153.05-7.03 153.49-6.49Q153.94-5.96 154.57-5.69Q155.21-5.42 155.77-5.42L155.77-5.42Q156.19-5.42 156.83-5.59Q157.46-5.75 157.55-6.08L157.55-6.08Q157.08-6.17 156.62-6.51Q156.16-6.85 156.16-7.59L156.16-7.59Q156.16-8.30 156.63-8.72Q157.11-9.13 157.79-9.13L157.79-9.13Q158.50-9.13 158.93-8.69Q159.36-8.24 159.36-7.53L159.36-7.53Q159.36-6.70 158.81-6.12Q158.26-5.54 157.45-5.26Q156.63-4.98 155.83-4.98L155.83-4.98Q155.00-4.98 154.14-5.34Q153.28-5.69 152.72-6.45Q152.16-7.20 152.16-8.45L152.16-8.45Q152.16-9.99 153.19-11.04Q154.23-12.09 156.25-12.78L156.25-12.78Q157.14-13.07 158.41-13.43Q159.69-13.78 161.04-14.20Q162.38-14.61 163.48-15.12L163.48-15.12Q164.96-15.80 165.50-16.51Q166.03-17.22 166.03-17.96L166.03-17.96Q166.03-19.24 165.01-20.10Q163.99-20.96 162.59-20.96L162.59-20.96Q162.24-20.96 162.00-20.90Q161.76-20.84 161.70-20.69L161.70-20.69Q162.12-20.48 162.33-20.10Q162.53-19.71 162.53-19.33L162.53-19.33Q162.53-18.70 162.04-18.29Q161.55-17.87 160.87-17.87L160.87-17.87Q160.31-17.87 159.81-18.25Q159.30-18.62 159.30-19.36L159.30-19.36Q159.30-20.13 159.82-20.57Q160.34-21.02 161.09-21.21Q161.85-21.40 162.56-21.40Z" transform="translate(-1.2450057997164585, 21.40224255703055)"></path></g></g></g></g> <g transform="translate(175.63999938964844,0)" mask="url(#e9882899-01eb-45fe-85c8-8422260be295)"><g><rect stroke-width="2" class="i-icon-bg" x="0" y="0" width="72.43000030517578" height="35.81999969482422" fill="#94b17b"></rect> </g> <g transform="translate(5,7)"><g fill="#94b17b"><g transform="scale(1)"><path d="M16.57-20.93Q17.96-20.93 18.85-21.02L18.85-21.02L18.85-20.42Q17.34-19.68 15.71-16.48L15.71-16.48L12.95-11.03L12.95-3.14Q12.95-2.02 13.12-1.51Q13.28-1.01 13.70-0.83Q14.11-0.65 15.06-0.59L15.06-0.59L15.06 0Q13.34-0.09 9.96-0.09L9.96-0.09Q6.43-0.09 4.83 0L4.83 0L4.83-0.59Q5.78-0.65 6.21-0.83Q6.64-1.01 6.79-1.51Q6.94-2.02 6.94-3.14L6.94-3.14L6.94-8.60L1.45-18.73Q0.98-19.59 0.53-19.99Q0.09-20.39-0.27-20.39L-0.27-20.39L-0.27-21.02Q1.57-20.84 3.82-20.84L3.82-20.84Q6.37-20.84 10.35-21.02L10.35-21.02L10.35-20.39Q9.16-20.39 8.57-20.28Q7.97-20.16 7.97-19.71L7.97-19.71Q7.97-19.51 8.09-19.27L8.09-19.27L12.33-11.15L13.67-13.81Q15.06-16.60 15.06-18.23L15.06-18.23Q15.06-20.34 12.69-20.42L12.69-20.42L12.69-21.02Q14.91-20.93 16.57-20.93L16.57-20.93ZM29.88-21.40Q33.23-21.40 35.75-20.13Q38.27-18.85 39.66-16.44Q41.06-14.02 41.06-10.67L41.06-10.67Q41.06-7.41 39.63-4.89Q38.21-2.37 35.66-0.98Q33.11 0.42 29.85 0.42L29.85 0.42Q26.50 0.42 23.98-0.86Q21.46-2.13 20.07-4.55Q18.68-6.97 18.68-10.32L18.68-10.32Q18.68-13.58 20.10-16.10Q21.52-18.62 24.07-20.01Q26.62-21.40 29.88-21.40L29.88-21.40ZM29.76-20.87Q28.31-20.87 27.20-19.55Q26.09-18.23 25.49-15.86Q24.90-13.49 24.90-10.43L24.90-10.43Q24.90-7.35 25.58-5.01Q26.26-2.67 27.42-1.39Q28.58-0.12 29.97-0.12L29.97-0.12Q31.42-0.12 32.53-1.44Q33.64-2.76 34.24-5.13Q34.83-7.50 34.83-10.55L34.83-10.55Q34.83-13.64 34.15-15.98Q33.47-18.32 32.31-19.59Q31.15-20.87 29.76-20.87L29.76-20.87ZM62.16-20.99L62.16-20.39Q61.24-20.19 60.80-19.76Q60.35-19.33 60.20-18.44Q60.06-17.55 60.06-15.77L60.06-15.77L60.06-8.63Q60.06-4.36 58.84-2.34L58.84-2.34Q58.04-1.01 56.48-0.30Q54.93 0.42 52.47 0.42L52.47 0.42Q48.88 0.42 46.90-1.01L46.90-1.01Q45.44-2.05 44.95-3.79Q44.46-5.54 44.46-8.54L44.46-8.54L44.46-17.85Q44.46-18.97 44.32-19.48Q44.17-19.98 43.74-20.16Q43.31-20.34 42.36-20.39L42.36-20.39L42.36-20.99Q44.05-20.90 47.58-20.90L47.58-20.90Q51.07-20.90 52.88-20.99L52.88-20.99L52.88-20.39Q51.82-20.34 51.33-20.16Q50.84-19.98 50.66-19.48Q50.48-18.97 50.48-17.85L50.48-17.85L50.48-5.75Q50.48-2.91 51.37-1.76Q52.26-0.62 54.19-0.62L54.19-0.62Q57.00-0.62 58.19-2.62Q59.37-4.62 59.37-8.30L59.37-8.30L59.37-15.18Q59.37-17.37 59.20-18.33Q59.02-19.30 58.41-19.74Q57.80-20.19 56.38-20.39L56.38-20.39L56.38-20.99Q57.60-20.90 59.70-20.90L59.70-20.90Q61.27-20.90 62.16-20.99L62.16-20.99Z" transform="translate(0.2667869570820982, 21.40224255703055)"></path></g></g></g></g></g></g> <g fill-rule="" class="tp-slogan" fill="#94b17b" transform="translate(77.52500534057617,41.81999969482422)"> <g transform="scale(1, 1)"><g transform="scale(1)"><path d="M1.08-7.87L1.08 0L2.08 0L2.08-3.71L5.74-3.71L5.74 0L6.74 0L6.74-7.87L5.74-7.87L5.74-4.57L2.08-4.57L2.08-7.87ZM8.90-7.87L8.90 0L13.56 0L13.56-0.85L9.90-0.85L9.90-3.71L12.89-3.71L12.89-4.56L9.90-4.56L9.90-7.03L13.44-7.03L13.44-7.87ZM16.22-4.14L16.22-7.07L17.54-7.07C18.16-7.07 18.63-6.96 18.96-6.76C19.29-6.55 19.45-6.18 19.45-5.66C19.45-5.15 19.29-4.77 18.96-4.52C18.63-4.27 18.16-4.14 17.54-4.14ZM19.55 0L20.68 0L18.68-3.43C19.22-3.57 19.65-3.82 19.97-4.19C20.29-4.56 20.45-5.05 20.45-5.66C20.45-6.07 20.38-6.42 20.24-6.70C20.11-6.98 19.92-7.20 19.67-7.38C19.43-7.56 19.14-7.68 18.80-7.76C18.46-7.83 18.09-7.87 17.69-7.87L15.23-7.87L15.23 0L16.22 0L16.22-3.32L17.65-3.32ZM22.20-7.87L22.20 0L24.71 0C25.15 0 25.55-0.05 25.92-0.14C26.29-0.24 26.60-0.38 26.87-0.58C27.13-0.77 27.34-1.01 27.48-1.30C27.62-1.58 27.70-1.92 27.70-2.30C27.70-2.85 27.54-3.28 27.22-3.59C26.90-3.90 26.45-4.10 25.87-4.19L25.87-4.24C26.34-4.36 26.68-4.57 26.90-4.89C27.13-5.21 27.24-5.56 27.24-5.95C27.24-6.30 27.17-6.59 27.04-6.83C26.91-7.08 26.73-7.28 26.49-7.43C26.25-7.58 25.97-7.69 25.64-7.76C25.31-7.84 24.94-7.87 24.54-7.87ZM24.36-4.51L23.20-4.51L23.20-7.08L24.41-7.08C25.02-7.08 25.49-6.99 25.79-6.80C26.10-6.61 26.26-6.30 26.26-5.87C26.26-5.43 26.11-5.09 25.82-4.86C25.53-4.63 25.04-4.51 24.36-4.51ZM24.56-0.79L23.20-0.79L23.20-3.77L24.56-3.77C25.26-3.77 25.79-3.65 26.16-3.43C26.53-3.20 26.71-2.84 26.71-2.35C26.71-1.82 26.52-1.42 26.15-1.17C25.77-0.92 25.24-0.79 24.56-0.79ZM32.60-3.20L30.24-3.20L30.61-4.40C30.76-4.84 30.89-5.28 31.02-5.72C31.15-6.15 31.27-6.60 31.39-7.06L31.44-7.06C31.57-6.60 31.70-6.15 31.82-5.72C31.95-5.28 32.09-4.84 32.23-4.40ZM32.86-2.40L33.60 0L34.67 0L32.00-7.87L30.88-7.87L28.21 0L29.23 0L29.99-2.40ZM35.78-7.87L35.78 0L40.22 0L40.22-0.85L36.78-0.85L36.78-7.87ZM45.04-4.14L45.04-7.07L46.36-7.07C46.97-7.07 47.44-6.96 47.77-6.76C48.10-6.55 48.26-6.18 48.26-5.66C48.26-5.15 48.10-4.77 47.77-4.52C47.44-4.27 46.97-4.14 46.36-4.14ZM48.36 0L49.49 0L47.50-3.43C48.03-3.57 48.46-3.82 48.78-4.19C49.10-4.56 49.26-5.05 49.26-5.66C49.26-6.07 49.19-6.42 49.06-6.70C48.92-6.98 48.73-7.20 48.49-7.38C48.24-7.56 47.95-7.68 47.61-7.76C47.27-7.83 46.90-7.87 46.50-7.87L44.04-7.87L44.04 0L45.04 0L45.04-3.32L46.46-3.32ZM51.01-7.87L51.01 0L55.67 0L55.67-0.85L52.01-0.85L52.01-3.71L55.00-3.71L55.00-4.56L52.01-4.56L52.01-7.03L55.55-7.03L55.55-7.87ZM57.34-7.87L57.34 0L58.26 0L58.26-4.33C58.26-4.68 58.24-5.07 58.21-5.50C58.18-5.92 58.15-6.31 58.13-6.66L58.18-6.66L58.80-4.91L60.32-0.79L60.89-0.79L62.40-4.91L63.04-6.66L63.08-6.66C63.05-6.31 63.02-5.92 62.99-5.50C62.97-5.07 62.95-4.68 62.95-4.33L62.95 0L63.90 0L63.90-7.87L62.72-7.87L61.21-3.65L60.66-2.04L60.61-2.04L60.04-3.65L58.51-7.87ZM66.06-7.87L66.06 0L70.72 0L70.72-0.85L67.06-0.85L67.06-3.71L70.04-3.71L70.04-4.56L67.06-4.56L67.06-7.03L70.60-7.03L70.60-7.87ZM72.38-7.87L72.38 0L74.40 0C74.99 0 75.52-0.09 75.97-0.27C76.43-0.45 76.81-0.71 77.12-1.05C77.44-1.39 77.67-1.81 77.83-2.30C77.99-2.79 78.07-3.35 78.07-3.97C78.07-5.23 77.76-6.19 77.12-6.86C76.49-7.54 75.57-7.87 74.35-7.87ZM74.28-0.82L73.38-0.82L73.38-7.06L74.28-7.06C75.20-7.06 75.89-6.79 76.35-6.26C76.81-5.74 77.04-4.97 77.04-3.97C77.04-2.97 76.81-2.20 76.35-1.64C75.89-1.09 75.20-0.82 74.28-0.82ZM79.76-7.87L79.76 0L80.76 0L80.76-7.87ZM82.92-7.87L82.92 0L87.58 0L87.58-0.85L83.92-0.85L83.92-3.71L86.90-3.71L86.90-4.56L83.92-4.56L83.92-7.03L87.46-7.03L87.46-7.87ZM89.27-1.72L88.67-1.02C89.01-0.66 89.42-0.38 89.89-0.17C90.36 0.04 90.88 0.14 91.43 0.14C91.84 0.14 92.22 0.09 92.54-0.03C92.87-0.15 93.15-0.31 93.38-0.51C93.62-0.71 93.79-0.95 93.92-1.22C94.04-1.50 94.10-1.79 94.10-2.10C94.10-2.39 94.06-2.64 93.98-2.86C93.89-3.08 93.78-3.27 93.64-3.44C93.49-3.60 93.32-3.75 93.12-3.87C92.92-3.99 92.71-4.10 92.48-4.20L91.37-4.68C91.21-4.74 91.05-4.81 90.90-4.89C90.75-4.97 90.61-5.05 90.48-5.15C90.35-5.25 90.25-5.37 90.17-5.50C90.10-5.63 90.06-5.80 90.06-5.99C90.06-6.35 90.19-6.63 90.46-6.83C90.73-7.04 91.08-7.14 91.52-7.14C91.89-7.14 92.22-7.07 92.51-6.94C92.81-6.81 93.07-6.63 93.31-6.40L93.85-7.04C93.57-7.33 93.23-7.57 92.83-7.75C92.43-7.93 92.00-8.02 91.52-8.02C91.16-8.02 90.83-7.96 90.53-7.86C90.23-7.76 89.97-7.61 89.75-7.42C89.53-7.23 89.36-7.01 89.24-6.76C89.11-6.50 89.05-6.22 89.05-5.93C89.05-5.64 89.10-5.39 89.20-5.17C89.29-4.95 89.42-4.76 89.57-4.60C89.72-4.44 89.89-4.30 90.08-4.19C90.28-4.08 90.46-3.98 90.65-3.90L91.78-3.41C91.96-3.32 92.13-3.24 92.29-3.16C92.45-3.08 92.59-2.99 92.71-2.89C92.82-2.79 92.91-2.67 92.98-2.53C93.05-2.39 93.08-2.22 93.08-2.02C93.08-1.63 92.94-1.32 92.65-1.09C92.36-0.85 91.96-0.73 91.44-0.73C91.03-0.73 90.64-0.82 90.26-1.00C89.88-1.18 89.55-1.42 89.27-1.72Z" transform="translate(-1.08, 8.016)"></path></g></g></g></g><mask id="e9882899-01eb-45fe-85c8-8422260be295"><g fill="white"><rect stroke-width="2" class="i-icon-bg" x="0" y="0" width="72.43000030517578" height="35.81999969482422"></rect> </g> <g transform="translate(5,7)" fill="black"><g><g transform="scale(1)"><path d="M16.57-20.93Q17.96-20.93 18.85-21.02L18.85-21.02L18.85-20.42Q17.34-19.68 15.71-16.48L15.71-16.48L12.95-11.03L12.95-3.14Q12.95-2.02 13.12-1.51Q13.28-1.01 13.70-0.83Q14.11-0.65 15.06-0.59L15.06-0.59L15.06 0Q13.34-0.09 9.96-0.09L9.96-0.09Q6.43-0.09 4.83 0L4.83 0L4.83-0.59Q5.78-0.65 6.21-0.83Q6.64-1.01 6.79-1.51Q6.94-2.02 6.94-3.14L6.94-3.14L6.94-8.60L1.45-18.73Q0.98-19.59 0.53-19.99Q0.09-20.39-0.27-20.39L-0.27-20.39L-0.27-21.02Q1.57-20.84 3.82-20.84L3.82-20.84Q6.37-20.84 10.35-21.02L10.35-21.02L10.35-20.39Q9.16-20.39 8.57-20.28Q7.97-20.16 7.97-19.71L7.97-19.71Q7.97-19.51 8.09-19.27L8.09-19.27L12.33-11.15L13.67-13.81Q15.06-16.60 15.06-18.23L15.06-18.23Q15.06-20.34 12.69-20.42L12.69-20.42L12.69-21.02Q14.91-20.93 16.57-20.93L16.57-20.93ZM29.88-21.40Q33.23-21.40 35.75-20.13Q38.27-18.85 39.66-16.44Q41.06-14.02 41.06-10.67L41.06-10.67Q41.06-7.41 39.63-4.89Q38.21-2.37 35.66-0.98Q33.11 0.42 29.85 0.42L29.85 0.42Q26.50 0.42 23.98-0.86Q21.46-2.13 20.07-4.55Q18.68-6.97 18.68-10.32L18.68-10.32Q18.68-13.58 20.10-16.10Q21.52-18.62 24.07-20.01Q26.62-21.40 29.88-21.40L29.88-21.40ZM29.76-20.87Q28.31-20.87 27.20-19.55Q26.09-18.23 25.49-15.86Q24.90-13.49 24.90-10.43L24.90-10.43Q24.90-7.35 25.58-5.01Q26.26-2.67 27.42-1.39Q28.58-0.12 29.97-0.12L29.97-0.12Q31.42-0.12 32.53-1.44Q33.64-2.76 34.24-5.13Q34.83-7.50 34.83-10.55L34.83-10.55Q34.83-13.64 34.15-15.98Q33.47-18.32 32.31-19.59Q31.15-20.87 29.76-20.87L29.76-20.87ZM62.16-20.99L62.16-20.39Q61.24-20.19 60.80-19.76Q60.35-19.33 60.20-18.44Q60.06-17.55 60.06-15.77L60.06-15.77L60.06-8.63Q60.06-4.36 58.84-2.34L58.84-2.34Q58.04-1.01 56.48-0.30Q54.93 0.42 52.47 0.42L52.47 0.42Q48.88 0.42 46.90-1.01L46.90-1.01Q45.44-2.05 44.95-3.79Q44.46-5.54 44.46-8.54L44.46-8.54L44.46-17.85Q44.46-18.97 44.32-19.48Q44.17-19.98 43.74-20.16Q43.31-20.34 42.36-20.39L42.36-20.39L42.36-20.99Q44.05-20.90 47.58-20.90L47.58-20.90Q51.07-20.90 52.88-20.99L52.88-20.99L52.88-20.39Q51.82-20.34 51.33-20.16Q50.84-19.98 50.66-19.48Q50.48-18.97 50.48-17.85L50.48-17.85L50.48-5.75Q50.48-2.91 51.37-1.76Q52.26-0.62 54.19-0.62L54.19-0.62Q57.00-0.62 58.19-2.62Q59.37-4.62 59.37-8.30L59.37-8.30L59.37-15.18Q59.37-17.37 59.20-18.33Q59.02-19.30 58.41-19.74Q57.80-20.19 56.38-20.39L56.38-20.39L56.38-20.99Q57.60-20.90 59.70-20.90L59.70-20.90Q61.27-20.90 62.16-20.99L62.16-20.99Z" transform="translate(0.2667869570820982, 21.40224255703055)"></path></g></g></g></mask><defs v-gra="od"></defs></g></svg>
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* BotanicsAndYou Client Configuration for JHITS
|
|
3
|
+
*
|
|
4
|
+
* This package contains all client-specific plugin configurations.
|
|
5
|
+
*
|
|
6
|
+
* Usage:
|
|
7
|
+
* import { blogPluginConfig, botanyBlocks } from '@jhits/BotanicsAndYou/plugin-blog';
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
export * from './plugin-blog';
|