@dloizides/marketing-astro-kit 1.3.1 → 1.4.0
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 +54 -53
- package/src/DemoFrame.astro +268 -264
- package/src/HeroBackdrop.astro +2 -2
- package/src/PricingComparison.astro +433 -428
- package/src/PrimaryCta.astro +146 -138
- package/src/TrustSection.astro +524 -516
- package/src/a11y.css +22 -0
- package/src/heroBackdrop/presets.ts +27 -18
package/package.json
CHANGED
|
@@ -1,53 +1,54 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@dloizides/marketing-astro-kit",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Reusable, themeable Astro marketing sections for product sites — a Free-vs-Pro pricing comparison table, a trust / credibility section (security cards, customer-logo + testimonial placeholders, discreet built-by), a client-side \"try it\" demo shell, and an SEO guides/content-hub card + frontmatter schema. Data-driven via a shared TypeScript schema; themed entirely through the host site's CSS custom properties.",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"astro",
|
|
7
|
-
"marketing",
|
|
8
|
-
"pricing",
|
|
9
|
-
"comparison-table",
|
|
10
|
-
"trust",
|
|
11
|
-
"demo",
|
|
12
|
-
"guides",
|
|
13
|
-
"content-hub",
|
|
14
|
-
"seo",
|
|
15
|
-
"landing-page",
|
|
16
|
-
"saas",
|
|
17
|
-
"hero",
|
|
18
|
-
"background",
|
|
19
|
-
"canvas",
|
|
20
|
-
"animation"
|
|
21
|
-
],
|
|
22
|
-
"author": "dloizides",
|
|
23
|
-
"license": "MIT",
|
|
24
|
-
"type": "module",
|
|
25
|
-
"repository": {
|
|
26
|
-
"type": "git",
|
|
27
|
-
"url": "https://github.com/openmindednewby/marketing-astro-kit.git"
|
|
28
|
-
},
|
|
29
|
-
"files": [
|
|
30
|
-
"src",
|
|
31
|
-
"README.md",
|
|
32
|
-
"CHANGELOG.md"
|
|
33
|
-
],
|
|
34
|
-
"exports": {
|
|
35
|
-
"./PricingComparison.astro": "./src/PricingComparison.astro",
|
|
36
|
-
"./TrustSection.astro": "./src/TrustSection.astro",
|
|
37
|
-
"./PrimaryCta.astro": "./src/PrimaryCta.astro",
|
|
38
|
-
"./DemoFrame.astro": "./src/DemoFrame.astro",
|
|
39
|
-
"./GuideCard.astro": "./src/GuideCard.astro",
|
|
40
|
-
"./schema": "./src/schema.ts",
|
|
41
|
-
"./
|
|
42
|
-
"./
|
|
43
|
-
"./
|
|
44
|
-
"./heroBackdrop
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
"
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@dloizides/marketing-astro-kit",
|
|
3
|
+
"version": "1.4.0",
|
|
4
|
+
"description": "Reusable, themeable Astro marketing sections for product sites — a Free-vs-Pro pricing comparison table, a trust / credibility section (security cards, customer-logo + testimonial placeholders, discreet built-by), a client-side \"try it\" demo shell, and an SEO guides/content-hub card + frontmatter schema. Data-driven via a shared TypeScript schema; themed entirely through the host site's CSS custom properties.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"astro",
|
|
7
|
+
"marketing",
|
|
8
|
+
"pricing",
|
|
9
|
+
"comparison-table",
|
|
10
|
+
"trust",
|
|
11
|
+
"demo",
|
|
12
|
+
"guides",
|
|
13
|
+
"content-hub",
|
|
14
|
+
"seo",
|
|
15
|
+
"landing-page",
|
|
16
|
+
"saas",
|
|
17
|
+
"hero",
|
|
18
|
+
"background",
|
|
19
|
+
"canvas",
|
|
20
|
+
"animation"
|
|
21
|
+
],
|
|
22
|
+
"author": "dloizides",
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"type": "module",
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "https://github.com/openmindednewby/marketing-astro-kit.git"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"src",
|
|
31
|
+
"README.md",
|
|
32
|
+
"CHANGELOG.md"
|
|
33
|
+
],
|
|
34
|
+
"exports": {
|
|
35
|
+
"./PricingComparison.astro": "./src/PricingComparison.astro",
|
|
36
|
+
"./TrustSection.astro": "./src/TrustSection.astro",
|
|
37
|
+
"./PrimaryCta.astro": "./src/PrimaryCta.astro",
|
|
38
|
+
"./DemoFrame.astro": "./src/DemoFrame.astro",
|
|
39
|
+
"./GuideCard.astro": "./src/GuideCard.astro",
|
|
40
|
+
"./schema": "./src/schema.ts",
|
|
41
|
+
"./a11y.css": "./src/a11y.css",
|
|
42
|
+
"./icons": "./src/icons.ts",
|
|
43
|
+
"./HeroBackdrop.astro": "./src/HeroBackdrop.astro",
|
|
44
|
+
"./heroBackdrop": "./src/heroBackdrop/presets.ts",
|
|
45
|
+
"./heroBackdrop/types": "./src/heroBackdrop/types.ts"
|
|
46
|
+
},
|
|
47
|
+
"peerDependencies": {
|
|
48
|
+
"astro": ">=4"
|
|
49
|
+
},
|
|
50
|
+
"sideEffects": false,
|
|
51
|
+
"engines": {
|
|
52
|
+
"node": ">=18.0.0"
|
|
53
|
+
}
|
|
54
|
+
}
|