@avocadostudio-ai/shared 0.1.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/LICENSE +201 -0
- package/README.md +80 -0
- package/contract/operation.schema.json +752 -0
- package/dist/api-responses.d.ts +62 -0
- package/dist/api-responses.js +68 -0
- package/dist/block-manifest.d.ts +28 -0
- package/dist/block-manifest.js +247 -0
- package/dist/block-names.d.ts +19 -0
- package/dist/block-names.js +52 -0
- package/dist/blocks/_helpers.d.ts +14 -0
- package/dist/blocks/_helpers.js +26 -0
- package/dist/blocks/_registry.d.ts +116 -0
- package/dist/blocks/_registry.js +271 -0
- package/dist/blocks/banner.d.ts +1 -0
- package/dist/blocks/banner.js +34 -0
- package/dist/blocks/card-grid.d.ts +1 -0
- package/dist/blocks/card-grid.js +73 -0
- package/dist/blocks/card.d.ts +1 -0
- package/dist/blocks/card.js +37 -0
- package/dist/blocks/carousel.d.ts +1 -0
- package/dist/blocks/carousel.js +51 -0
- package/dist/blocks/cta.d.ts +1 -0
- package/dist/blocks/cta.js +35 -0
- package/dist/blocks/embed.d.ts +1 -0
- package/dist/blocks/embed.js +30 -0
- package/dist/blocks/faq-accordion.d.ts +1 -0
- package/dist/blocks/faq-accordion.js +30 -0
- package/dist/blocks/feature-grid.d.ts +1 -0
- package/dist/blocks/feature-grid.js +46 -0
- package/dist/blocks/footer.d.ts +1 -0
- package/dist/blocks/footer.js +31 -0
- package/dist/blocks/gallery.d.ts +1 -0
- package/dist/blocks/gallery.js +47 -0
- package/dist/blocks/hero.d.ts +1 -0
- package/dist/blocks/hero.js +48 -0
- package/dist/blocks/index.d.ts +3 -0
- package/dist/blocks/index.js +53 -0
- package/dist/blocks/quote.d.ts +1 -0
- package/dist/blocks/quote.js +32 -0
- package/dist/blocks/rich-text.d.ts +1 -0
- package/dist/blocks/rich-text.js +41 -0
- package/dist/blocks/site-header.d.ts +1 -0
- package/dist/blocks/site-header.js +48 -0
- package/dist/blocks/stats.d.ts +1 -0
- package/dist/blocks/stats.js +42 -0
- package/dist/blocks/table.d.ts +1 -0
- package/dist/blocks/table.js +37 -0
- package/dist/blocks/tabs.d.ts +1 -0
- package/dist/blocks/tabs.js +39 -0
- package/dist/blocks/testimonials.d.ts +1 -0
- package/dist/blocks/testimonials.js +45 -0
- package/dist/blocks/two-column.d.ts +1 -0
- package/dist/blocks/two-column.js +61 -0
- package/dist/blocks/video.d.ts +1 -0
- package/dist/blocks/video.js +33 -0
- package/dist/chat-events.d.ts +475 -0
- package/dist/chat-events.js +137 -0
- package/dist/demo-seed-content.d.ts +3 -0
- package/dist/demo-seed-content.js +1128 -0
- package/dist/draft-mode.d.ts +10 -0
- package/dist/draft-mode.js +29 -0
- package/dist/editable-path.d.ts +20 -0
- package/dist/editable-path.js +101 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +26 -0
- package/dist/ops/builders.d.ts +62 -0
- package/dist/ops/builders.js +111 -0
- package/dist/ops/theme-tokens.d.ts +50 -0
- package/dist/ops/theme-tokens.js +73 -0
- package/dist/protocol.d.ts +7 -0
- package/dist/protocol.js +7 -0
- package/dist/publish-diff.d.ts +67 -0
- package/dist/publish-diff.js +9 -0
- package/dist/schemas.d.ts +321 -0
- package/dist/schemas.js +238 -0
- package/package.json +48 -0
|
@@ -0,0 +1,1128 @@
|
|
|
1
|
+
export const DEMO_SEED_PAGES = [
|
|
2
|
+
{
|
|
3
|
+
"id": "p_home",
|
|
4
|
+
"slug": "/",
|
|
5
|
+
"title": "Home",
|
|
6
|
+
"meta": {
|
|
7
|
+
"title": "Avocado Recipes, Wellness & Sustainability | Avocado Stories",
|
|
8
|
+
"description": "Discover avocado recipes, wellness tips, and sustainable farming practices. Learn how avocados can enrich your everyday meals and lifestyle."
|
|
9
|
+
},
|
|
10
|
+
"blocks": [
|
|
11
|
+
{
|
|
12
|
+
"id": "b_hero_1772138902220_copy",
|
|
13
|
+
"type": "Hero",
|
|
14
|
+
"props": {
|
|
15
|
+
"heading": "One Fruit. Endless Health.",
|
|
16
|
+
"subheading": "100+ recipes, 50+ wellness tips — free, no card needed.",
|
|
17
|
+
"ctaText": "Explore Recipes",
|
|
18
|
+
"ctaHref": "/recipes",
|
|
19
|
+
"imageUrl": "https://images.unsplash.com/photo-1523049673857-eb18f1d7b578?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4ODM0NjV8MHwxfHNlYXJjaHwyfHxhdm9jYWRvfGVufDF8MHx8fDE3Nzg3NDQ2Mzh8MA&ixlib=rb-4.1.0&q=80&w=1080",
|
|
20
|
+
"imageAlt": "sliced green avocado fruit",
|
|
21
|
+
"imagePosition": "right",
|
|
22
|
+
"textAlign": "left",
|
|
23
|
+
"secondaryCtaText": "Read Research Studies"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"id": "b_cardgrid_1774520663617_434",
|
|
28
|
+
"type": "CardGrid",
|
|
29
|
+
"props": {
|
|
30
|
+
"title": "Featured Recipes",
|
|
31
|
+
"subtitle": "",
|
|
32
|
+
"columns": "3",
|
|
33
|
+
"cardVariant": "default",
|
|
34
|
+
"cards": [
|
|
35
|
+
{
|
|
36
|
+
"title": "Creamy Avocado Toast",
|
|
37
|
+
"description": "A quick, nutrient-packed breakfast with smashed avocado, lemon zest, and chili flakes on sourdough.",
|
|
38
|
+
"ctaText": "View Recipe",
|
|
39
|
+
"ctaHref": "/recipes",
|
|
40
|
+
"imageUrl": "https://images.unsplash.com/photo-1616902666559-af398792d890?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4ODM0NjV8MHwxfHNlYXJjaHwxfHxhdm9jYWRvJTIwdG9hc3QlMjBicmVha2Zhc3R8ZW58MXwwfHx8MTc3NDUyMDY0OXww&ixlib=rb-4.1.0&q=80&w=1080"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"title": "Avocado & Mango Salsa",
|
|
44
|
+
"description": "A vibrant, tropical salsa bursting with fresh mango, cilantro, and creamy avocado — perfect for tacos or chips.",
|
|
45
|
+
"ctaText": "View Recipe",
|
|
46
|
+
"ctaHref": "/recipes",
|
|
47
|
+
"imageUrl": "https://images.unsplash.com/photo-1579639482794-abf71bcd3960?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4ODM0NjV8MHwxfHNlYXJjaHwxfHxtYW5nbyUyMGF2b2NhZG8lMjBzYWxzYXxlbnwxfDB8fHwxNzc0NTIwNjUwfDA&ixlib=rb-4.1.0&q=80&w=1080"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"title": "Green Goddess Smoothie",
|
|
51
|
+
"description": "Blend avocado, spinach, banana, and almond milk for a silky, energizing smoothie that keeps you full for hours.",
|
|
52
|
+
"ctaText": "View Recipe",
|
|
53
|
+
"ctaHref": "/recipes",
|
|
54
|
+
"imageUrl": "https://images.unsplash.com/photo-1623002071634-54590669fe3d?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4ODM0NjV8MHwxfHNlYXJjaHwxfHxncmVlbiUyMHNtb290aGllJTIwaGVhbHRoeXxlbnwxfDB8fHwxNzc0NTIwNjUwfDA&ixlib=rb-4.1.0&q=80&w=1080"
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"id": "b_cardgrid_1771979444550",
|
|
61
|
+
"type": "CardGrid",
|
|
62
|
+
"props": {
|
|
63
|
+
"title": "Discover Your Avocado Path",
|
|
64
|
+
"subtitle": "Three paths to avocado mastery—cook like a pro, nourish your body, or champion sustainability. Find your passion.",
|
|
65
|
+
"cards": [
|
|
66
|
+
{
|
|
67
|
+
"title": "🥑 Avocado Culinary Delights",
|
|
68
|
+
"description": "Unlock restaurant-quality meals in minutes. 50+ proven recipes to impress everyone at your table.",
|
|
69
|
+
"ctaText": "Try Now",
|
|
70
|
+
"ctaHref": "/avocado-culinary",
|
|
71
|
+
"imageUrl": "/generated-images/gdrive_1ql_bdk2KM_27u01rkMd8KoiCRJ_R7UOy.webp",
|
|
72
|
+
"imageAlt": "avocado3"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"title": "🥑 Avocado Wellness",
|
|
76
|
+
"description": "Transform your energy & heart health today. Trusted by 100K+ nutrition-conscious individuals worldwide.",
|
|
77
|
+
"ctaText": "Explore",
|
|
78
|
+
"ctaHref": "/avocado-wellness",
|
|
79
|
+
"imageUrl": "https://images.unsplash.com/photo-1596755389378-c31d21fd1273?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4ODM0NjV8MHwxfHNlYXJjaHwyfHxhdm9jYWRvJTIwc2tpbnxlbnwxfDB8fHwxNzczNTgyMzYzfDA&ixlib=rb-4.1.0&q=80&w=1080",
|
|
80
|
+
"imageAlt": "woman with white face mask holding green fruit"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"title": "🥑 Avocado Sustainability",
|
|
84
|
+
"description": "Join the movement for ethical farming. Your choices directly support communities & planet.",
|
|
85
|
+
"ctaText": "Learn More",
|
|
86
|
+
"ctaHref": "/avocado-sustainability",
|
|
87
|
+
"imageUrl": "/generated-images/var_1773872370443_poycxy.png",
|
|
88
|
+
"imageAlt": "AI-generated CardGrid image featuring natural eco-friendly scene showing"
|
|
89
|
+
}
|
|
90
|
+
]
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"id": "b_richtext_1771982675835",
|
|
95
|
+
"type": "RichText",
|
|
96
|
+
"props": {
|
|
97
|
+
"title": "Why Eat Avocados",
|
|
98
|
+
"body": "## Daily Avocado Benefits\n\nEat half to one avocado daily for better heart health, steady energy, and lasting fullness.\n\n## Find Your Avocado Path\n\n- **Home Cooks**: Try new recipes and learn flavor combinations that work with avocado.\n- **Wellness Enthusiasts**: Get healthy fats, potassium, and antioxidants for heart and brain health.\n- **Growers & Farmers**: Use sustainable farming methods that improve soil, save water, and help ecosystems.\n- **Sustainability Advocates**: Support fair trade and ethical sourcing practices."
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": "b_stats_1773439854509",
|
|
103
|
+
"type": "Stats",
|
|
104
|
+
"props": {
|
|
105
|
+
"title": "Avocado Impact",
|
|
106
|
+
"stats": [
|
|
107
|
+
{
|
|
108
|
+
"value": "12B+",
|
|
109
|
+
"label": "avocados in tested recipes you can master today"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"value": "95M",
|
|
113
|
+
"label": "servings for sustained energy & heart health"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"value": "3M+",
|
|
117
|
+
"label": "wellness enthusiasts exploring nutrition science"
|
|
118
|
+
}
|
|
119
|
+
]
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"id": "b_tabs_1773679560096_781",
|
|
124
|
+
"type": "Tabs",
|
|
125
|
+
"props": {
|
|
126
|
+
"tabs": [
|
|
127
|
+
{
|
|
128
|
+
"label": "Overview",
|
|
129
|
+
"content": "From the creamy Hass to the buttery Fuerte, each avocado variety offers unique flavors and textures.\n\n• **Hass Avocados** – The most popular variety worldwide; creamy texture and rich flavor\n• **Fuerte Avocados** – Pear-shaped with smooth, mild taste\n• **Bacon Avocados** – Thinner skin and milder flavor\n• **Reed Avocados** – Large, round, and creamy\n\nAvailable year-round."
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"label": "Recipes & Ideas",
|
|
133
|
+
"content": "• **Breakfast** – Toast, smoothie bowls, eggs, omelets\n• **Lunch & Salads** – Grain bowls, salads, seafood\n• **Dinner** – Tacos, pasta, stuffed vegetables\n• **Snacks & Desserts** – Guacamole, chocolate mousse, vegan ice cream, parfaits"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"label": "Sustainability",
|
|
137
|
+
"content": "Progressive growers protect water, soil, and communities through regenerative farming.\n\n• **Water Conservation** – Modern irrigation reduces water use by up to 50%\n• **Soil Health** – Regenerative practices build organic matter and support wildlife\n• **Reduced Pesticides** – Integrated pest management protects ecosystems and farmworkers\n• **Community Impact** – Fair-trade certification ensures fair wages and local investment\n\nChoosing sustainably sourced avocados directly supports farmers and future generations."
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"label": "Fun Facts",
|
|
141
|
+
"content": "• **Fruit, Not Vegetable** – Botanically classified as berries with a single large seed\n• **Unique Fat Profile** – The only fruit with significant monounsaturated fat\n• **Longevity** – Trees live over 100 years and continue producing throughout\n• **Slow Growth** – Takes 3–4 years for the first fruit; then decades of abundance\n• **Ancient Origins** – Cultivated for 5,000+ years, originating in south-central Mexico\n\nAvocados are nature's golden treasure."
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"label": "Selection & Storage Tips",
|
|
145
|
+
"content": "• **Selection** – Gently squeeze for firmness; choose avocados that yield slightly to palm pressure\n• **Ripeness** – Use a paper bag with an apple to speed ripening; test with a small knife near the pit\n• **Storage** – Keep unripe at room temperature; refrigerate when ripe (lasts 3–5 days)\n• **Cut Avocados** – Preserve with lemon juice and plastic wrap; use within 1–2 days\n\nMaster these techniques for perfect avocados whenever you need them."
|
|
146
|
+
}
|
|
147
|
+
]
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"id": "b_video_1773685338972_965",
|
|
152
|
+
"type": "Video",
|
|
153
|
+
"props": {
|
|
154
|
+
"src": "https://www.youtube.com/watch?xv=cYPKqRIFVdU",
|
|
155
|
+
"title": "",
|
|
156
|
+
"posterUrl": "",
|
|
157
|
+
"autoplay": "false",
|
|
158
|
+
"loop": "false"
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"id": "b_faqaccordion_1773150551758",
|
|
163
|
+
"type": "FAQAccordion",
|
|
164
|
+
"props": {
|
|
165
|
+
"title": "Frequently Asked Questions",
|
|
166
|
+
"items": [
|
|
167
|
+
{
|
|
168
|
+
"q": "Are avocados really that healthy?",
|
|
169
|
+
"a": "Absolutely! Avocados are packed with heart-healthy monounsaturated fats, potassium, vitamins C, E, and K, plus fiber. They're a nutrient-dense food that supports heart health and keeps you feeling full. Like any food, balance is key—a quarter to half an avocado per serving is a great way to enjoy the benefits."
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"q": "How do I choose a ripe avocado?",
|
|
173
|
+
"a": "Gently press the avocado in your palm. A ripe avocado should yield slightly to pressure without feeling mushy. If it feels firm, let it sit on your kitchen counter for one to two days to ripen naturally."
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"q": "Are avocados sustainable?",
|
|
177
|
+
"a": "Sustainable avocado farming is possible and important. Look for growers who prioritize water conservation and ethical practices. By choosing responsibly grown avocados, you support both your health and the planet."
|
|
178
|
+
}
|
|
179
|
+
]
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"id": "b_richtext_1773782083093_683",
|
|
184
|
+
"type": "RichText",
|
|
185
|
+
"props": {
|
|
186
|
+
"title": "Four Audiences, One Avocado Passion",
|
|
187
|
+
"body": "Whether you're a home cook perfecting guacamole, a wellness enthusiast exploring nutrition, a farmer building regenerative practices, or an advocate for sustainable food systems—avocados unite us.\n\n**Home Cooks & Culinary Explorers** discover recipes, techniques, and unexpected flavor pairings that turn avocados into everyday magic. From toast to salads to creative fusion, learn how to make avocados shine on every plate.\n\n**Wellness Seekers** explore how avocado nutrition supports heart health, sustained energy, and whole-body vitality. Rich in healthy fats, antioxidants, and essential minerals, avocados are a true superfood for those who care about their health.\n\n**Farmers & Growers** dive into regenerative agriculture, soil health, and sustainable farming methods that produce better avocados while healing the land. Share innovations and celebrate the craft of growing exceptional fruit.\n\n**Sustainability Advocates** trace the story behind every avocado—fair trade practices, water stewardship, and environmental impact. Learn how conscious choices drive positive change in global agriculture.\n\nYour avocado journey starts here. Explore the segments below to find your community and passion."
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"id": "b_cta_1771983958937",
|
|
192
|
+
"type": "CTA",
|
|
193
|
+
"props": {
|
|
194
|
+
"title": "Start Your Avocado Journey Today",
|
|
195
|
+
"description": "Join 50K+ food lovers exploring recipes, wellness, and sustainable farming.",
|
|
196
|
+
"ctaText": "Join Free",
|
|
197
|
+
"ctaHref": "/community"
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"id": "b_cardgrid_1776458794640",
|
|
202
|
+
"type": "CardGrid",
|
|
203
|
+
"props": {
|
|
204
|
+
"title": "Continue Exploring",
|
|
205
|
+
"columns": "3",
|
|
206
|
+
"cardVariant": "default",
|
|
207
|
+
"cards": [
|
|
208
|
+
{
|
|
209
|
+
"title": "Sustainability Practices",
|
|
210
|
+
"description": "Learn how avocado farming supports regenerative agriculture.",
|
|
211
|
+
"ctaText": "Read More",
|
|
212
|
+
"ctaHref": "/blueberries",
|
|
213
|
+
"imageUrl": "/generated-images/gen_1776458907692_zlrbkg.jpg",
|
|
214
|
+
"imageAlt": "Sustainable farming landscape with green crops"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"title": "Quick Avocado Recipes",
|
|
218
|
+
"description": "Master simple, nutritious avocado dishes for everyday meals.",
|
|
219
|
+
"ctaText": "View Recipes",
|
|
220
|
+
"ctaHref": "/recipes",
|
|
221
|
+
"imageUrl": "https://images.unsplash.com/photo-1541519227354-08fa5d50c44d?w=768&h=512&fit=crop",
|
|
222
|
+
"imageAlt": "Freshly made avocado toast with toppings"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"title": "Wellness & Nutrition Tips",
|
|
226
|
+
"description": "Science-backed insights on heart health and sustained energy.",
|
|
227
|
+
"ctaText": "Explore Tips",
|
|
228
|
+
"ctaHref": "/community",
|
|
229
|
+
"imageUrl": "https://images.unsplash.com/photo-1512621776951-a57141f2eefd?w=768&h=512&fit=crop",
|
|
230
|
+
"imageAlt": "Healthy meal with fresh vegetables and nutrients"
|
|
231
|
+
}
|
|
232
|
+
]
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"id": "b_card_1778781425447",
|
|
237
|
+
"type": "Card",
|
|
238
|
+
"props": {
|
|
239
|
+
"title": "Launch faster",
|
|
240
|
+
"description": "Go from idea to published changes in minutes.",
|
|
241
|
+
"ctaText": "Learn more",
|
|
242
|
+
"ctaHref": "/pricing",
|
|
243
|
+
"variant": "default"
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
]
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"id": "p_blueberries",
|
|
250
|
+
"slug": "/blueberries",
|
|
251
|
+
"title": "Blueberries",
|
|
252
|
+
"meta": {
|
|
253
|
+
"title": "Blueberry Varieties, Growing Tips & Community Guide",
|
|
254
|
+
"description": "Learn about blueberry varieties, growing guides, and health benefits. Join our community of growers and enthusiasts. Discover highbush, lowbush, and rabbiteye blueberries."
|
|
255
|
+
},
|
|
256
|
+
"blocks": [
|
|
257
|
+
{
|
|
258
|
+
"id": "b_hero_blueberriy-lovers",
|
|
259
|
+
"type": "Hero",
|
|
260
|
+
"props": {
|
|
261
|
+
"heading": "Blueberry Lovers Unite",
|
|
262
|
+
"subheading": "Discover the world's finest blueberries—packed with antioxidants, bursting with flavor. Join our community of passionate blueberry enthusiasts.",
|
|
263
|
+
"ctaText": "Explore Our Collection",
|
|
264
|
+
"ctaHref": "/community",
|
|
265
|
+
"imageUrl": "https://images.unsplash.com/photo-1628104017776-50e38eb63041?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4ODM0NjV8MHwxfHNlYXJjaHwxfHxibHVlYmVycmllcyUyMGZyZXNoJTIwaGFydmVzdHxlbnwxfDB8fHwxNzczNzgzNDg5fDA&ixlib=rb-4.1.0&q=80&w=1080&auto=format&fit=crop&w=1600&q=80",
|
|
266
|
+
"imageAlt": "Fresh ripe blueberries on the vine",
|
|
267
|
+
"imagePosition": "right",
|
|
268
|
+
"secondaryCtaText": "Learn More",
|
|
269
|
+
"secondaryCtaHref": "/"
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"id": "b_featuregrid_1773783519651",
|
|
274
|
+
"type": "FeatureGrid",
|
|
275
|
+
"props": {
|
|
276
|
+
"title": "Why Blueberries?",
|
|
277
|
+
"features": [
|
|
278
|
+
{
|
|
279
|
+
"title": "Antioxidant Powerhouse",
|
|
280
|
+
"description": "Loaded with anthocyanins and other powerful antioxidants that support overall wellness and vitality."
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"title": "Natural Energy Boost",
|
|
284
|
+
"description": "Rich in vitamins and natural sugars, perfect for sustained energy throughout your day."
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"title": "Versatile & Delicious",
|
|
288
|
+
"description": "Perfect fresh, frozen, baked, or blended—endless culinary possibilities await."
|
|
289
|
+
}
|
|
290
|
+
]
|
|
291
|
+
}
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"id": "b_richtext_1773784054786",
|
|
295
|
+
"type": "RichText",
|
|
296
|
+
"props": {
|
|
297
|
+
"title": "Blueberry Varieties",
|
|
298
|
+
"body": "# Highbush Blueberries\n\nThe most common variety grown commercially, highbush blueberries thrive in cooler climates. They produce large, firm berries with a balanced sweet-tart flavor, making them perfect for fresh eating, baking, and preserving.\n\n# Lowbush Blueberries\n\nNative to North America, lowbush varieties are smaller and intensely flavored with deep blue color. Often called 'wild blueberries,' they pack the highest antioxidant content and are favored by health enthusiasts and gourmet chefs alike.\n\n# Rabbiteye Blueberries\n\nOriginally from the southeastern United States, rabbiteye varieties are heat-tolerant and drought-resistant. Their medium-sized berries offer a unique tart finish and excellent shelf life, ideal for warm-climate growers.\n\n# Southern Highbush Blueberries\n\nBred for warm climates, southern highbush varieties combine the best traits of their parents: large berries, sweet flavor, and heat tolerance. They're revolutionizing blueberry cultivation in previously unsuitable regions."
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"id": "b_video_1773784186502",
|
|
303
|
+
"type": "Video",
|
|
304
|
+
"props": {
|
|
305
|
+
"src": "https://www.youtube.com/watch?v=z1sy6wO00MU",
|
|
306
|
+
"title": "Blueberry Harvest & Growing Tips",
|
|
307
|
+
"posterUrl": "https://images.unsplash.com/photo-1628104017776-50e38eb63041?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4ODM0NjV8MHwxfHNlYXJjaHwxfHxibHVlYmVycmllcyUyMGZyZXNoJTIwaGFydmVzdHxlbnwxfDB8fHwxNzczNzgzNDg5fDA&ixlib=rb-4.1.0&q=80&w=1080&auto=format&fit=crop&w=1600&q=80",
|
|
308
|
+
"autoplay": "false",
|
|
309
|
+
"loop": "false"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"id": "b_faqaccordion_1773784186501",
|
|
314
|
+
"type": "FAQAccordion",
|
|
315
|
+
"props": {
|
|
316
|
+
"title": "Blueberry FAQs",
|
|
317
|
+
"items": [
|
|
318
|
+
{
|
|
319
|
+
"q": "What are the health benefits of blueberries?",
|
|
320
|
+
"a": "Blueberries are rich in antioxidants, vitamin C, and fiber. They support heart health, improve brain function, and help regulate blood sugar. Regular consumption may reduce inflammation and support healthy aging."
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"q": "How do I grow blueberries at home?",
|
|
324
|
+
"a": "Blueberries prefer acidic soil (pH 4.5–5.5) and full sun (6+ hours daily). Plant in well-draining soil, water regularly, and prune annually for best yields. Most varieties produce fruit in 2–3 years."
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"q": "How should I store fresh blueberries?",
|
|
328
|
+
"a": "Store unwashed blueberries in a sealed container in the refrigerator for up to two weeks, or freeze them on a baking sheet before transferring to freezer bags for up to 10 months."
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"q": "Which blueberry variety is best for my climate?",
|
|
332
|
+
"a": "Highbush varieties thrive in cooler climates; southern highbush in warm regions; rabbiteye in hot, dry areas; and lowbush (wild) in northern zones. Choose based on your USDA hardiness zone and available sunlight."
|
|
333
|
+
}
|
|
334
|
+
]
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"id": "b_cta_1773784068524",
|
|
339
|
+
"type": "CTA",
|
|
340
|
+
"props": {
|
|
341
|
+
"title": "Join Our Blueberry Community",
|
|
342
|
+
"description": "Attend exclusive blueberry events, gain early access to premium varieties, and network with passionate growers and collectors worldwide.",
|
|
343
|
+
"ctaText": "Join Now",
|
|
344
|
+
"ctaHref": "/community"
|
|
345
|
+
}
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"id": "b_cardgrid_1774521117453_330",
|
|
349
|
+
"type": "CardGrid",
|
|
350
|
+
"props": {
|
|
351
|
+
"title": "Featured Recipes",
|
|
352
|
+
"subtitle": "From smoothie bowls to cheesecakes, explore delicious ways to enjoy blueberries in every meal.",
|
|
353
|
+
"cards": [
|
|
354
|
+
{
|
|
355
|
+
"title": "Blueberry Smoothie Bowl",
|
|
356
|
+
"description": "A vibrant, nutrient-packed smoothie bowl topped with fresh blueberries, granola, and honey. The perfect energizing start to your morning.",
|
|
357
|
+
"ctaText": "View Recipe",
|
|
358
|
+
"ctaHref": "/recipes",
|
|
359
|
+
"imageUrl": "https://images.unsplash.com/photo-1554495644-8ce87fe3e713?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4ODM0NjV8MHwxfHNlYXJjaHwxfHxibHVlYmVycnklMjBzbW9vdGhpZSUyMGJvd2wlMjBicmVha2Zhc3R8ZW58MXwwfHx8MTc3NDUyMTIwOXww&ixlib=rb-4.1.0&q=80&w=1080&auto=format&fit=crop&w=1600&q=80"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"title": "Classic Blueberry Muffins",
|
|
363
|
+
"description": "Fluffy, golden muffins bursting with juicy blueberries. A timeless bake that's perfect for breakfast, brunch, or an afternoon treat.",
|
|
364
|
+
"ctaText": "View Recipe",
|
|
365
|
+
"ctaHref": "/recipes",
|
|
366
|
+
"imageUrl": "https://images.unsplash.com/photo-1762417420596-b90e84efcfad?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4ODM0NjV8MHwxfHNlYXJjaHw3fHxibHVlYmVycnklMjBtdWZmaW5zJTIwYmFrZWQlMjBnb2xkZW58ZW58MXwwfHx8MTc3NDUyMTIxMHww&ixlib=rb-4.1.0&q=80&w=1080&auto=format&fit=crop&w=1600&q=80"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"title": "Blueberry Lemon Cheesecake",
|
|
370
|
+
"description": "A rich, creamy cheesecake with a bright lemon zest and a luscious blueberry compote topping. Elegant enough for any occasion.",
|
|
371
|
+
"ctaText": "View Recipe",
|
|
372
|
+
"ctaHref": "/recipes",
|
|
373
|
+
"imageUrl": "https://images.unsplash.com/photo-1768260730506-72cca589bb91?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4ODM0NjV8MHwxfHNlYXJjaHwxfHxibHVlYmVycnklMjBsZW1vbiUyMGNoZWVzZWNha2UlMjBkZXNzZXJ0fGVufDF8MHx8fDE3NzQ1MjEyMTF8MA&ixlib=rb-4.1.0&q=80&w=1080&auto=format&fit=crop&w=1600&q=80"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"title": "Blueberry Chia Jam",
|
|
377
|
+
"description": "A wholesome, no-cook jam packed with fresh blueberries and chia seeds. Ready in minutes and perfect on toast, yogurt, or oatmeal.",
|
|
378
|
+
"ctaText": "View Recipe",
|
|
379
|
+
"ctaHref": "/recipes",
|
|
380
|
+
"imageUrl": "https://images.unsplash.com/photo-1750469501607-3bbbcb7112a9?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4ODM0NjV8MHwxfHNlYXJjaHwxfHxibHVlYmVycnklMjBjaGlhJTIwamFtJTIwdG9hc3R8ZW58MXwwfHx8MTc3NDUyMTIxMnww&ixlib=rb-4.1.0&q=80&w=1080&auto=format&fit=crop&w=1600&q=80"
|
|
381
|
+
}
|
|
382
|
+
]
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
]
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"id": "p_community",
|
|
389
|
+
"slug": "/community",
|
|
390
|
+
"title": "Community",
|
|
391
|
+
"blocks": [
|
|
392
|
+
{
|
|
393
|
+
"id": "b_hero_new-page",
|
|
394
|
+
"type": "Hero",
|
|
395
|
+
"props": {
|
|
396
|
+
"heading": "Welcome to the Avocado Lovers Community",
|
|
397
|
+
"subheading": "Connect with passionate avocado enthusiasts, share recipes, learn sustainability tips, and celebrate our favorite green fruit together.",
|
|
398
|
+
"ctaText": "Join Our Community",
|
|
399
|
+
"ctaHref": "#join",
|
|
400
|
+
"imageUrl": "/generated-images/var_1776858715876_iuu72w.jpg",
|
|
401
|
+
"imageAlt": "Cartoon illustration of a diverse community of avocado lovers gathering together outdoors. Show people of different ages and backgrounds smiling and socializing, surrounded by fresh avocados, colorful healthy foods like fruits and vegetables, natural green landscapes with trees, and vibrant gardens. Everyone is happy and celebrating their shared love of avocados. Warm, welcoming, and inclusive atmosphere. Cartoon art style with bright, cheerful colors.",
|
|
402
|
+
"imagePosition": "right",
|
|
403
|
+
"textAlign": "left"
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"id": "b_featuregrid_1773767196470",
|
|
408
|
+
"type": "FeatureGrid",
|
|
409
|
+
"props": {
|
|
410
|
+
"title": "Why Join Our Avocado Community",
|
|
411
|
+
"columns": "3",
|
|
412
|
+
"features": [
|
|
413
|
+
{
|
|
414
|
+
"icon": "🥑",
|
|
415
|
+
"title": "Recipe & Tip Sharing",
|
|
416
|
+
"description": "Access thousands of avocado recipes, preparation techniques, and wellness tips from members worldwide."
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"icon": "🌱",
|
|
420
|
+
"title": "Sustainability First",
|
|
421
|
+
"description": "Learn about ethical sourcing, composting, and growing your own avocados with expert guidance."
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"icon": "🎉",
|
|
425
|
+
"title": "Exclusive Events",
|
|
426
|
+
"description": "Join virtual tastings, cooking workshops, and seasonal celebrations exclusive to our community."
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"icon": "👥",
|
|
430
|
+
"title": "Member Network",
|
|
431
|
+
"description": "Connect with fellow avocado lovers, find local growers, and build lasting friendships around shared passion."
|
|
432
|
+
}
|
|
433
|
+
]
|
|
434
|
+
}
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"id": "b_stats_1773767196470",
|
|
438
|
+
"type": "Stats",
|
|
439
|
+
"props": {
|
|
440
|
+
"title": "Our Growing Avocado Community",
|
|
441
|
+
"stats": [
|
|
442
|
+
{
|
|
443
|
+
"icon": "👥",
|
|
444
|
+
"value": "50K+",
|
|
445
|
+
"label": "Active Members",
|
|
446
|
+
"description": "Avocado enthusiasts from 120+ countries"
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"icon": "⭐",
|
|
450
|
+
"value": "98%",
|
|
451
|
+
"label": "Member Satisfaction",
|
|
452
|
+
"description": "Love our community and resources"
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
"icon": "🌍",
|
|
456
|
+
"value": "120+",
|
|
457
|
+
"label": "Countries",
|
|
458
|
+
"description": "A truly global avocado family"
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"icon": "❤️",
|
|
462
|
+
"value": "4.9/5",
|
|
463
|
+
"label": "Community Rating",
|
|
464
|
+
"description": "Based on member reviews"
|
|
465
|
+
}
|
|
466
|
+
]
|
|
467
|
+
}
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"id": "b_testimonials_1773767196470",
|
|
471
|
+
"type": "Testimonials",
|
|
472
|
+
"props": {
|
|
473
|
+
"title": "What Our Community Members Say",
|
|
474
|
+
"items": [
|
|
475
|
+
{
|
|
476
|
+
"quote": "This community completely changed how I experience avocados. The recipe ideas are endless, and I've made lifelong friends who share my passion for sustainable living.",
|
|
477
|
+
"author": "Sarah M.",
|
|
478
|
+
"role": "Home Cook, California"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"quote": "As a small avocado farmer, connecting with this community has been invaluable. The sustainability tips and market insights have transformed my business.",
|
|
482
|
+
"author": "Diego R.",
|
|
483
|
+
"role": "Organic Farmer, Mexico"
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"quote": "The events and webinars are fantastic. I never knew there was so much to learn about something I thought I already understood. Highly recommend!",
|
|
487
|
+
"author": "Emma T.",
|
|
488
|
+
"role": "Wellness Coach, UK"
|
|
489
|
+
}
|
|
490
|
+
]
|
|
491
|
+
}
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"id": "b_faqaccordion_1773767196470",
|
|
495
|
+
"type": "FAQAccordion",
|
|
496
|
+
"props": {
|
|
497
|
+
"title": "Community Questions Answered",
|
|
498
|
+
"items": [
|
|
499
|
+
{
|
|
500
|
+
"q": "How do I join the avocado community?",
|
|
501
|
+
"a": "Signing up is free and takes less than 2 minutes! Just click the join button, create your profile, and start connecting. No credit card required — ever."
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"q": "What benefits do members get?",
|
|
505
|
+
"a": "Members enjoy access to exclusive recipes, sustainability guides, monthly events, member forums, expert Q&As, and a vibrant global network of avocado lovers."
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"q": "Are there in-person events or just online?",
|
|
509
|
+
"a": "We host both virtual and regional in-person events. Virtual events include recipe challenges, sustainability webinars, and guest chef talks. Regional meetups happen throughout the year in major cities."
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"q": "Can I share my own recipes and tips?",
|
|
513
|
+
"a": "Absolutely! Sharing is the heart of our community. Post your recipes, growing tips, sustainability ideas, and photos. Our community loves to feature member creations on our social channels."
|
|
514
|
+
}
|
|
515
|
+
]
|
|
516
|
+
}
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"id": "b_cta_1773767196470",
|
|
520
|
+
"type": "CTA",
|
|
521
|
+
"props": {
|
|
522
|
+
"title": "Ready to Join the Avocado Lovers Community?",
|
|
523
|
+
"description": "Connect with passionate members, discover new recipes, and be part of a global movement toward sustainable, delicious living.",
|
|
524
|
+
"ctaText": "Join Free Today",
|
|
525
|
+
"ctaHref": "#join"
|
|
526
|
+
}
|
|
527
|
+
}
|
|
528
|
+
]
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"id": "p_grapefruits",
|
|
532
|
+
"slug": "/grapefruits",
|
|
533
|
+
"title": "Grapefruits",
|
|
534
|
+
"meta": {
|
|
535
|
+
"title": "Grapefruit Varieties, Health & Benefits | Avocado Stories",
|
|
536
|
+
"description": "Discover grapefruit varieties, nutrition facts, and wellness benefits. Learn how to select, store, and enjoy this vibrant citrus fruit daily.",
|
|
537
|
+
"ogImage": "https://images.unsplash.com/photo-1718627741306-bb717005339b?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4ODM0NjV8MHwxfHNlYXJjaHwxfHxncmFwZWZydWl0JTIwZnJlc2glMjBjaXRydXMlMjBmcnVpdHxlbnwxfDB8fHwxNzczNTU3MDI3fDA&ixlib=rb-4.1.0&q=80&w=1080&auto=format&fit=crop&w=1600&q=80"
|
|
538
|
+
},
|
|
539
|
+
"blocks": [
|
|
540
|
+
{
|
|
541
|
+
"id": "b_hero_about",
|
|
542
|
+
"type": "Hero",
|
|
543
|
+
"props": {
|
|
544
|
+
"heading": "Grapefruits",
|
|
545
|
+
"subheading": "Discover the vibrant, refreshing world of grapefruits — a citrus fruit full of wellness benefits, zesty flavor, and endless culinary possibilities.",
|
|
546
|
+
"ctaText": "Explore Grapefruits",
|
|
547
|
+
"ctaHref": "/grapefruits",
|
|
548
|
+
"imageUrl": "https://images.unsplash.com/photo-1528826194825-a71b700fe80b?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4ODM0NjV8MHwxfHNlYXJjaHwyfHxncmFwZWZydWl0fGVufDF8MHx8fDE3NzM2ODUxMzl8MA&ixlib=rb-4.1.0&q=80&w=1080",
|
|
549
|
+
"imageAlt": "slice grapefruit",
|
|
550
|
+
"imagePosition": "right"
|
|
551
|
+
}
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"id": "b_table_1773681049002_351",
|
|
555
|
+
"type": "Table",
|
|
556
|
+
"props": {
|
|
557
|
+
"title": "Grapefruit Varieties & Nutrition Guide",
|
|
558
|
+
"headers": [
|
|
559
|
+
"Variety",
|
|
560
|
+
"Flavor Profile",
|
|
561
|
+
"Vitamin C",
|
|
562
|
+
"Best Season"
|
|
563
|
+
],
|
|
564
|
+
"rows": [
|
|
565
|
+
[
|
|
566
|
+
"Pink/Red",
|
|
567
|
+
"Sweet and tart",
|
|
568
|
+
"High",
|
|
569
|
+
"Winter–Spring"
|
|
570
|
+
],
|
|
571
|
+
[
|
|
572
|
+
"White",
|
|
573
|
+
"Tart and bitter",
|
|
574
|
+
"High",
|
|
575
|
+
"Year-round"
|
|
576
|
+
],
|
|
577
|
+
[
|
|
578
|
+
"Star Ruby",
|
|
579
|
+
"Sweet and juicy",
|
|
580
|
+
"Very high",
|
|
581
|
+
"Winter–Spring"
|
|
582
|
+
],
|
|
583
|
+
[
|
|
584
|
+
"Pomelo",
|
|
585
|
+
"Mild and sweet",
|
|
586
|
+
"Moderate",
|
|
587
|
+
"Fall–Winter"
|
|
588
|
+
]
|
|
589
|
+
],
|
|
590
|
+
"striped": "true"
|
|
591
|
+
}
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
"id": "b_carousel_1773681087702_227",
|
|
595
|
+
"type": "Carousel",
|
|
596
|
+
"props": {
|
|
597
|
+
"items": [
|
|
598
|
+
{
|
|
599
|
+
"imageUrl": "https://images.unsplash.com/photo-1568651239222-7af48d48d3eb?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4ODM0NjV8MHwxfHNlYXJjaHwxNXx8cGluayUyMGdyYXBlZnJ1aXR8ZW58MXwwfHx8MTc3MzY4NTE1N3ww&ixlib=rb-4.1.0&q=80&w=1080",
|
|
600
|
+
"imageAlt": "shallow focus photo of sliced pink grapefruit",
|
|
601
|
+
"heading": "Pink Grapefruit",
|
|
602
|
+
"description": "Sweet and tart perfection in every bite",
|
|
603
|
+
"ctaText": "",
|
|
604
|
+
"ctaHref": ""
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"imageUrl": "https://images.unsplash.com/photo-1670259382864-c532bcf1fa5e?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4ODM0NjV8MHwxfHNlYXJjaHwxfHxjdXQlMjBncmFwZWZydWl0fGVufDF8MHx8fDE3NzM2ODUxOTl8MA&ixlib=rb-4.1.0&q=80&w=1080",
|
|
608
|
+
"imageAlt": "a grapefruit cut in half",
|
|
609
|
+
"heading": "Rich in Nutrients",
|
|
610
|
+
"description": "Rich in vitamin C, potassium, and antioxidants for daily wellness",
|
|
611
|
+
"ctaText": "",
|
|
612
|
+
"ctaHref": ""
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"imageUrl": "https://images.unsplash.com/photo-1718833051058-4caaf174ed27?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4ODM0NjV8MHwxfHNlYXJjaHwxNnx8bWFueSUyMGdyYXBlZnJ1aXRzfGVufDF8MHx8fDE3NzM2ODUyMTZ8MA&ixlib=rb-4.1.0&q=80&w=1080",
|
|
616
|
+
"imageAlt": "many grapefruits sitting next to each other",
|
|
617
|
+
"heading": "Endless Culinary Uses",
|
|
618
|
+
"description": "From breakfast juice to salads and desserts – versatile and delicious",
|
|
619
|
+
"ctaText": "",
|
|
620
|
+
"ctaHref": ""
|
|
621
|
+
}
|
|
622
|
+
],
|
|
623
|
+
"autoplay": "false",
|
|
624
|
+
"interval": 5000
|
|
625
|
+
}
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"id": "b_faqaccordion_1773558915222",
|
|
629
|
+
"type": "FAQAccordion",
|
|
630
|
+
"props": {
|
|
631
|
+
"title": "Frequently Asked Questions",
|
|
632
|
+
"items": [
|
|
633
|
+
{
|
|
634
|
+
"q": "How quickly can we publish?",
|
|
635
|
+
"a": "Most teams deploy updates within minutes."
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"q": "Can we revise later?",
|
|
639
|
+
"a": "Yes, every block can be updated at any time."
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"q": "How do I select a ripe grapefruit?",
|
|
643
|
+
"a": "Choose grapefruits that feel heavy for their size and have a smooth, unblemished skin. They should give slightly to gentle pressure, indicating they are juicy and ready to eat."
|
|
644
|
+
}
|
|
645
|
+
]
|
|
646
|
+
}
|
|
647
|
+
}
|
|
648
|
+
]
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"id": "p_olives",
|
|
652
|
+
"slug": "/olives",
|
|
653
|
+
"title": "Olives",
|
|
654
|
+
"blocks": [
|
|
655
|
+
{
|
|
656
|
+
"id": "b_hero_1772048325072",
|
|
657
|
+
"type": "Hero",
|
|
658
|
+
"props": {
|
|
659
|
+
"heading": "Finest Olive Oils 🫒",
|
|
660
|
+
"subheading": "From sun-soaked Mediterranean groves to small artisan producers, discover extra virgin olive oils crafted for depth, richness, and everyday elegance.",
|
|
661
|
+
"ctaText": "Shop the Collection",
|
|
662
|
+
"ctaHref": "/shop",
|
|
663
|
+
"imageUrl": "/generated-images/var_1773434968055_8g99nk.png",
|
|
664
|
+
"imageAlt": "Three fresh green olives on white marble surface with delicate drops of virgin olive oil, minimalist and elegant photography, soft natural lighting, clean and sophisticated composition",
|
|
665
|
+
"imagePosition": "right"
|
|
666
|
+
}
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"id": "b_cardgrid_1772048497347",
|
|
670
|
+
"type": "CardGrid",
|
|
671
|
+
"props": {
|
|
672
|
+
"title": "Key Health Benefits of Olive Oil",
|
|
673
|
+
"cards": [
|
|
674
|
+
{
|
|
675
|
+
"title": "Rich in Healthy Fats",
|
|
676
|
+
"description": "Olive oil is high in oleic acid, a monounsaturated fat that is believed to reduce inflammation.",
|
|
677
|
+
"ctaText": "Learn More",
|
|
678
|
+
"ctaHref": "/health-benefits#healthy-fats",
|
|
679
|
+
"imageUrl": "/generated-images/var_1773435042084_wvet78.png",
|
|
680
|
+
"imageAlt": "Fresh green olives on a neutral warm olive-toned background, minimalist product photography, soft natural lighting, clean composition"
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"title": "High in Antioxidants",
|
|
684
|
+
"description": "Contains large amounts of antioxidants that may help reduce the risk of chronic diseases.",
|
|
685
|
+
"ctaText": "Discover More",
|
|
686
|
+
"ctaHref": "/health-benefits#antioxidants",
|
|
687
|
+
"imageUrl": "/generated-images/var_1773435061562_6hf8s6.png",
|
|
688
|
+
"imageAlt": "Golden-green olives arranged on a neutral warm olive-toned background, professional product photography, soft diffused lighting, elegant and simple"
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
"title": "Anti-inflammatory Properties",
|
|
692
|
+
"description": "The antioxidants in olive oil can reduce inflammation, a leading driver of many diseases.",
|
|
693
|
+
"ctaText": "Read More",
|
|
694
|
+
"ctaHref": "/health-benefits#anti-inflammatory",
|
|
695
|
+
"imageUrl": "/generated-images/var_1773435080764_6ocahu.png",
|
|
696
|
+
"imageAlt": "Glossy olives with olive oil drops on neutral warm olive-toned background, luxury product photography, sophisticated lighting, minimal aesthetic"
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
"title": "Supports Heart Health",
|
|
700
|
+
"description": "Regular consumption of olive oil is linked to a reduced risk of heart disease.",
|
|
701
|
+
"ctaText": "Find Out More",
|
|
702
|
+
"ctaHref": "/health-benefits#heart-health",
|
|
703
|
+
"imageUrl": "/generated-images/var_1773435101045_1y544z.png",
|
|
704
|
+
"imageAlt": "Beautiful ripe olives on neutral warm olive-toned background, artisanal product photography, natural soft lighting, clean and inviting composition"
|
|
705
|
+
}
|
|
706
|
+
]
|
|
707
|
+
}
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"id": "b_richtext_1773778195147",
|
|
711
|
+
"type": "RichText",
|
|
712
|
+
"props": {
|
|
713
|
+
"title": "Olive Varieties & Origin Stories",
|
|
714
|
+
"body": "**Arbequina** — Hailing from Catalonia, these petite golden olives deliver a buttery, delicate flavor with hints of almond and green apple. Perfect for everyday cooking and dipping.\n\n**Koroneiki** — Greece's pride, these small dark olives produce oil with a peppery finish and herbaceous notes. A staple of the Mediterranean diet, ideal for finishing dishes and robust salads.\n\n**Frantoio** — Tuscany's heritage variety yields an intense, grassy oil bursting with complexity. Best used raw or drizzled over soups—its bold character shines brightest when uncooked."
|
|
715
|
+
}
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"id": "b_faqaccordion_1773778311735",
|
|
719
|
+
"type": "FAQAccordion",
|
|
720
|
+
"props": {
|
|
721
|
+
"title": "Storage & Cooking Tips",
|
|
722
|
+
"items": [
|
|
723
|
+
{
|
|
724
|
+
"q": "How should I store olive oil to keep it fresh?",
|
|
725
|
+
"a": "Store olive oil in a cool, dark place away from heat and direct sunlight. A pantry or cabinet is ideal. Keep the bottle tightly sealed to prevent oxidation. Extra virgin olive oil is best consumed within 18–24 months of harvest for optimal flavor."
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"q": "Which olive oils pair best with specific dishes?",
|
|
729
|
+
"a": "Buttery Arbequina pairs beautifully with mild cheeses and vegetables. Peppery Koroneiki complements hearty salads and grilled meats. Bold Frantoio shines over soups, pasta, and roasted root vegetables."
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"q": "Does olive oil go bad or expire?",
|
|
733
|
+
"a": "Olive oil doesn't truly \"expire,\" but it degrades over time. Look for rancid or musty aromas—a sign it's past its prime. When in doubt, replace oils older than 2 years."
|
|
734
|
+
}
|
|
735
|
+
]
|
|
736
|
+
}
|
|
737
|
+
}
|
|
738
|
+
]
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
"id": "p_oranges",
|
|
742
|
+
"slug": "/oranges",
|
|
743
|
+
"title": "Oranges",
|
|
744
|
+
"meta": {
|
|
745
|
+
"title": "Fresh Oranges: Health Benefits, Recipes & Wellness | Avocado Stories",
|
|
746
|
+
"description": "Explore the vibrant world of oranges. Discover recipes, nutrition insights, and wellness benefits of this citrus essential. Learn how oranges complement a healthy lifestyle."
|
|
747
|
+
},
|
|
748
|
+
"blocks": [
|
|
749
|
+
{
|
|
750
|
+
"id": "b_hero_1772135749521",
|
|
751
|
+
"type": "Hero",
|
|
752
|
+
"props": {
|
|
753
|
+
"heading": "Fresh & Vibrant Oranges",
|
|
754
|
+
"subheading": "Discover the vibrant world of citrus fruits.",
|
|
755
|
+
"ctaText": "Learn More",
|
|
756
|
+
"ctaHref": "/oranges",
|
|
757
|
+
"imageUrl": "https://images.unsplash.com/photo-1598048150218-53ab5609ef31?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4ODM0NjV8MHwxfHNlYXJjaHwxNXx8T3JhbmdlfGVufDF8MHx8fDE3NzM2MDEyODB8MA&ixlib=rb-4.1.0&q=80&w=1080",
|
|
758
|
+
"imageAlt": "sliced lemon on orange surface",
|
|
759
|
+
"imagePosition": "right"
|
|
760
|
+
}
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"id": "b_richtext_1772135749521",
|
|
764
|
+
"type": "RichText",
|
|
765
|
+
"props": {
|
|
766
|
+
"title": "The Wonders of Oranges",
|
|
767
|
+
"body": "**Oranges** are among the most beloved fruits globally, cherished not only for their **delicious taste** but also for their nutritional benefits. Here are some intriguing insights about oranges:\n\n- **Rich in Vitamin C**, oranges play a crucial role in boosting the immune system and maintaining skin health.\n- The orange tree, an evergreen species, can reach heights of up to 10 meters and blooms with fragrant flowers.\n- With over **600 varieties**, oranges offer a diverse range of flavors and uses.\n- Originating in Southeast Asia, oranges have a rich history of cultivation spanning thousands of years.\n- Beyond being consumed fresh, oranges are versatile ingredients in cooking, baking, and are essential in producing juices and marmalades.\n\nDiscover more about the diverse benefits and culinary uses of oranges on our page."
|
|
768
|
+
}
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
"id": "b_stats_1773435579852_761",
|
|
772
|
+
"type": "Stats",
|
|
773
|
+
"props": {
|
|
774
|
+
"title": "Orange Nutrition & Global Impact",
|
|
775
|
+
"stats": [
|
|
776
|
+
{
|
|
777
|
+
"value": "53mg",
|
|
778
|
+
"label": "Vitamin C per medium orange"
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
"value": "120M+",
|
|
782
|
+
"label": "Tons produced annually worldwide"
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"value": "600+",
|
|
786
|
+
"label": "Varieties grown globally"
|
|
787
|
+
}
|
|
788
|
+
]
|
|
789
|
+
}
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"id": "b_cardgrid_1773601007304_177",
|
|
793
|
+
"type": "CardGrid",
|
|
794
|
+
"props": {
|
|
795
|
+
"title": "Discover Oranges",
|
|
796
|
+
"cards": [
|
|
797
|
+
{
|
|
798
|
+
"title": "Orange Varieties",
|
|
799
|
+
"description": "From bright Valencia to zesty Blood oranges, explore the diverse world of orange cultivars. Each variety brings its own flavor profile and best uses, whether fresh, juiced, or cooked.",
|
|
800
|
+
"ctaText": "Learn varieties",
|
|
801
|
+
"ctaHref": "/oranges",
|
|
802
|
+
"imageUrl": "https://images.unsplash.com/photo-1764457004444-8639f0912b92?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4ODM0NjV8MHwxfHNlYXJjaHwxfHxvcmFuZ2UlMjBzbGljZXMlMjBudXRyaXRpb24lMjBoZWFsdGh5fGVufDF8MHx8fDE3NzM2MDEyMDB8MA&ixlib=rb-4.1.0&q=80&w=1080&auto=format&fit=crop&w=1600&q=80",
|
|
803
|
+
"imageAlt": "Several orange slices on a dark background"
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
"title": "Health & Wellness",
|
|
807
|
+
"description": "Discover how oranges support your wellbeing. Packed with vitamin C and fiber, they boost immunity, skin health, and digestion. A simple, delicious way to nourish your body.",
|
|
808
|
+
"ctaText": "Explore benefits",
|
|
809
|
+
"ctaHref": "/oranges",
|
|
810
|
+
"imageUrl": "https://images.unsplash.com/photo-1617218607489-4d28d612bd07?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4ODM0NjV8MHwxfHNlYXJjaHw0fHxvcmFuZ2VzJTIwYW5kJTIwaGVhbHRofGVufDF8MHx8fDE3NzM2MDIzMzV8MA&ixlib=rb-4.1.0&q=80&w=1080",
|
|
811
|
+
"imageAlt": "orange fruit on clear glass bowl"
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
"title": "Culinary Inspiration",
|
|
815
|
+
"description": "Transform your kitchen with orange-infused recipes. From fresh juices and zesty marmalades to savory dishes and baked goods, oranges bring brightness and depth to every meal.",
|
|
816
|
+
"ctaText": "Get recipes",
|
|
817
|
+
"ctaHref": "/oranges",
|
|
818
|
+
"imageUrl": "https://images.unsplash.com/photo-1763221126410-de574de88b16?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4ODM0NjV8MHwxfHNlYXJjaHwxN3x8ZnJlc2glMjBvcmFuZ2VzJTIwY2l0cnVzJTIwZnJ1aXR8ZW58MXwwfHx8MTc3MzYwMTE5OXww&ixlib=rb-4.1.0&q=80&w=1080&auto=format&fit=crop&w=1600&q=80",
|
|
819
|
+
"imageAlt": "A pile of fresh, ripe oranges"
|
|
820
|
+
}
|
|
821
|
+
]
|
|
822
|
+
}
|
|
823
|
+
}
|
|
824
|
+
]
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"id": "p_recipes",
|
|
828
|
+
"slug": "/recipes",
|
|
829
|
+
"title": "Recipes",
|
|
830
|
+
"blocks": [
|
|
831
|
+
{
|
|
832
|
+
"id": "b_hero_for-recipes",
|
|
833
|
+
"type": "Hero",
|
|
834
|
+
"props": {
|
|
835
|
+
"heading": "Recipes Made Simple",
|
|
836
|
+
"subheading": "Discover easy, delicious recipes for every kitchen skill level.",
|
|
837
|
+
"ctaText": "Browse Recipes",
|
|
838
|
+
"ctaHref": "/olives",
|
|
839
|
+
"imageUrl": "/generated-images/gen_1774991902955_0p1i2o.jpg",
|
|
840
|
+
"imageAlt": "I want the woman to look at me smiling, replace lemons by avocados. do not change anything else",
|
|
841
|
+
"imagePosition": "right"
|
|
842
|
+
}
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
"id": "b_stats_1773947687526",
|
|
846
|
+
"type": "Stats",
|
|
847
|
+
"props": {
|
|
848
|
+
"title": "Recipe Stats",
|
|
849
|
+
"stats": [
|
|
850
|
+
{
|
|
851
|
+
"value": "2,500+",
|
|
852
|
+
"label": "Recipes"
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
"value": "50k+",
|
|
856
|
+
"label": "Home Cooks"
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"value": "4.8★",
|
|
860
|
+
"label": "Average Rating"
|
|
861
|
+
}
|
|
862
|
+
]
|
|
863
|
+
}
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
"id": "b_featuregrid_1773947612365",
|
|
867
|
+
"type": "FeatureGrid",
|
|
868
|
+
"props": {
|
|
869
|
+
"title": "Cook Like a Pro",
|
|
870
|
+
"features": [
|
|
871
|
+
{
|
|
872
|
+
"title": "Quick & Delicious",
|
|
873
|
+
"description": "Transform everyday ingredients into restaurant-quality dishes in your own kitchen."
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
"title": "Flavor Combinations",
|
|
877
|
+
"description": "Master the art of pairing fruits and vegetables to elevate every meal."
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
"title": "Kitchen Confidence",
|
|
881
|
+
"description": "Follow step-by-step guides that make cooking accessible, no matter your skill level."
|
|
882
|
+
}
|
|
883
|
+
]
|
|
884
|
+
}
|
|
885
|
+
},
|
|
886
|
+
{
|
|
887
|
+
"id": "b_faqaccordion_1773947679848",
|
|
888
|
+
"type": "FAQAccordion",
|
|
889
|
+
"props": {
|
|
890
|
+
"title": "Cooking Help",
|
|
891
|
+
"items": [
|
|
892
|
+
{
|
|
893
|
+
"q": "How do I know how long prep will take?",
|
|
894
|
+
"a": "Most recipes include prep and cook time at the top. Start by reading through the entire recipe, then add 5–10 minutes for setup. As you practice, you'll work faster."
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
"q": "Can I substitute ingredients?",
|
|
898
|
+
"a": "Yes! Swap seasonal vegetables freely, use different oils, or swap dairy-free alternatives. Check if an ingredient affects texture or flavor—for example, butter and oil behave differently in baking."
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"q": "Which recipes are best for beginners?",
|
|
902
|
+
"a": "Look for recipes with 5–7 ingredients, simple techniques (no special tools), and 30 minutes or less cook time. Start there, then build skills with more complex recipes."
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
"q": "How should I store leftovers?",
|
|
906
|
+
"a": "Cool food to room temperature, then transfer to airtight containers. Most cooked dishes keep 3–4 days in the fridge. Label with the date to stay organized."
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
"q": "What's the best way to learn a new cooking technique?",
|
|
910
|
+
"a": "Watch a short video first, then follow a trusted recipe step-by-step. Practice the same technique 2–3 times before moving on. Don't skip mise en place—prep all ingredients before you start cooking."
|
|
911
|
+
}
|
|
912
|
+
]
|
|
913
|
+
}
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"id": "b_cta_1773947706826",
|
|
917
|
+
"type": "CTA",
|
|
918
|
+
"props": {
|
|
919
|
+
"title": "Ready to get started?",
|
|
920
|
+
"description": "Apply your next change in seconds.",
|
|
921
|
+
"ctaText": "Start now",
|
|
922
|
+
"ctaHref": "/"
|
|
923
|
+
}
|
|
924
|
+
}
|
|
925
|
+
]
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
"id": "p_farmers_and_growers",
|
|
929
|
+
"slug": "/farmers-and-growers",
|
|
930
|
+
"title": "Farmers & Growers",
|
|
931
|
+
"blocks": [
|
|
932
|
+
{
|
|
933
|
+
"id": "b_hero_1778781517747",
|
|
934
|
+
"type": "Hero",
|
|
935
|
+
"props": {
|
|
936
|
+
"heading": "Grow Better Avocados. Build a Lasting Farm.",
|
|
937
|
+
"subheading": "Practical guides on regenerative soil care, water stewardship, and sustainable harvest — built for avocado farmers at every scale.",
|
|
938
|
+
"ctaText": "Join the Growers' Community",
|
|
939
|
+
"ctaHref": "/community",
|
|
940
|
+
"imageUrl": "https://images.unsplash.com/photo-1500937386664-56d1dfef3854?w=1536&h=1024&fit=crop",
|
|
941
|
+
"imageAlt": "Farmer walking through lush green crop rows at golden hour",
|
|
942
|
+
"imagePosition": "right",
|
|
943
|
+
"eyebrow": "For Growers"
|
|
944
|
+
}
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
"id": "b_featuregrid_1778781517748",
|
|
948
|
+
"type": "FeatureGrid",
|
|
949
|
+
"props": {
|
|
950
|
+
"title": "The Grower's Toolkit",
|
|
951
|
+
"columns": "3",
|
|
952
|
+
"features": [
|
|
953
|
+
{
|
|
954
|
+
"icon": "🌱",
|
|
955
|
+
"title": "Soil Health & Composting",
|
|
956
|
+
"description": "Build living soil with compost, cover crops, and mycorrhizal networks that boost avocado root strength and long-term yield."
|
|
957
|
+
},
|
|
958
|
+
{
|
|
959
|
+
"icon": "💧",
|
|
960
|
+
"title": "Water-Smart Irrigation",
|
|
961
|
+
"description": "Cut water use by up to 40% with precision drip systems, soil moisture sensors, and mulching strategies tailored to avocado root zones."
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
"icon": "🐛",
|
|
965
|
+
"title": "Integrated Pest Management",
|
|
966
|
+
"description": "Protect your crop without harsh chemicals — use beneficial insects, companion planting, and early detection protocols."
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
"icon": "🥑",
|
|
970
|
+
"title": "Harvest Timing & Handling",
|
|
971
|
+
"description": "Pick at peak dry-matter content, reduce bruising in the field, and maintain cold chain integrity from tree to market."
|
|
972
|
+
},
|
|
973
|
+
{
|
|
974
|
+
"icon": "🏷️",
|
|
975
|
+
"title": "Fair-Trade & Organic Certification",
|
|
976
|
+
"description": "Step-by-step guidance on achieving Fairtrade, USDA Organic, or Rainforest Alliance certification to access premium markets."
|
|
977
|
+
},
|
|
978
|
+
{
|
|
979
|
+
"icon": "🌦️",
|
|
980
|
+
"title": "Climate Resilience Planning",
|
|
981
|
+
"description": "Prepare your farm for shifting rainfall patterns, heat stress, and frost events with adaptive planting and microclimate management."
|
|
982
|
+
}
|
|
983
|
+
]
|
|
984
|
+
}
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
"id": "b_stats_1778781517748",
|
|
988
|
+
"type": "Stats",
|
|
989
|
+
"props": {
|
|
990
|
+
"title": "Avocado Farming by the Numbers",
|
|
991
|
+
"stats": [
|
|
992
|
+
{
|
|
993
|
+
"value": "200+",
|
|
994
|
+
"icon": "🥑",
|
|
995
|
+
"label": "avocados per tree per year",
|
|
996
|
+
"description": "Average mature Hass yield under good agronomic management"
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
"value": "40%",
|
|
1000
|
+
"icon": "💧",
|
|
1001
|
+
"label": "less water with drip irrigation",
|
|
1002
|
+
"description": "Compared to overhead or flood irrigation methods"
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
"value": "3,000+",
|
|
1006
|
+
"icon": "🌍",
|
|
1007
|
+
"label": "farms adopting regenerative practices",
|
|
1008
|
+
"description": "Across Mexico, Kenya, Peru, and South Africa"
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
"value": "50 yrs",
|
|
1012
|
+
"icon": "🌳",
|
|
1013
|
+
"label": "productive lifespan of an avocado tree",
|
|
1014
|
+
"description": "With proper pruning, nutrition, and soil care"
|
|
1015
|
+
}
|
|
1016
|
+
]
|
|
1017
|
+
}
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
"id": "b_richtext_1778781517748",
|
|
1021
|
+
"type": "RichText",
|
|
1022
|
+
"props": {
|
|
1023
|
+
"title": "Why Regenerative Avocado Farming Matters",
|
|
1024
|
+
"body": "## More Than a Crop — A Living Ecosystem\n\nAvocado trees are long-term investments. A well-managed orchard can produce fruit for 50 years or more, but only if the soil beneath it stays alive. Regenerative practices — cover cropping, reduced tillage, compost application, and agroforestry integration — rebuild the organic matter and microbial life that conventional farming depletes.\n\n**Soil carbon sequestration** is one of the most powerful tools a grower has. Every 1% increase in soil organic matter helps soil hold an additional 20,000 gallons of water per acre — critical in the water-stressed regions where avocados thrive.\n\n**Biodiversity buffers risk.** Monoculture orchards are vulnerable to disease, pest outbreaks, and climate shocks. Integrating shade trees, native ground cover, and insect habitat corridors creates natural resilience — and often improves pollination rates by 15–30%.\n\nThe economics follow the ecology. Farms that invest in soil health report lower input costs within 3–5 years, stronger fruit quality scores, and easier access to premium and certified markets. Growing regeneratively is not just the right thing to do — it's increasingly the profitable thing to do."
|
|
1025
|
+
}
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
"id": "b_cardgrid_1778781517748",
|
|
1029
|
+
"type": "CardGrid",
|
|
1030
|
+
"props": {
|
|
1031
|
+
"title": "Essential Growing Guides",
|
|
1032
|
+
"columns": "3",
|
|
1033
|
+
"cards": [
|
|
1034
|
+
{
|
|
1035
|
+
"title": "Soil Health & Composting",
|
|
1036
|
+
"description": "Build thriving soil biology with on-farm composting, cover crops, and mycorrhizal inoculants.",
|
|
1037
|
+
"ctaText": "Read the Guide",
|
|
1038
|
+
"ctaHref": "/community",
|
|
1039
|
+
"imageUrl": "https://images.unsplash.com/photo-1464226184884-fa280b87c399?w=768&h=512&fit=crop",
|
|
1040
|
+
"imageAlt": "Hands scooping rich dark compost soil on a farm"
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"title": "Water-Smart Irrigation",
|
|
1044
|
+
"description": "Design drip systems, schedule irrigation around avocado phenology, and monitor soil moisture effectively.",
|
|
1045
|
+
"ctaText": "Read the Guide",
|
|
1046
|
+
"ctaHref": "/community",
|
|
1047
|
+
"imageUrl": "https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=768&h=512&fit=crop",
|
|
1048
|
+
"imageAlt": "Drip irrigation lines running along rows of green plants"
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
"title": "Harvest & Post-Harvest Care",
|
|
1052
|
+
"description": "Time your pick by dry-matter testing, handle fruit to minimise bruising, and maintain cold chain from orchard to buyer.",
|
|
1053
|
+
"ctaText": "Read the Guide",
|
|
1054
|
+
"ctaHref": "/community",
|
|
1055
|
+
"imageUrl": "https://images.unsplash.com/photo-1592663527359-cf6642f54cff?w=768&h=512&fit=crop",
|
|
1056
|
+
"imageAlt": "Worker carefully placing harvested avocados into a crate"
|
|
1057
|
+
}
|
|
1058
|
+
],
|
|
1059
|
+
"cardVariant": "full-bleed"
|
|
1060
|
+
}
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
"id": "b_faqaccordion_1778781517748",
|
|
1064
|
+
"type": "FAQAccordion",
|
|
1065
|
+
"props": {
|
|
1066
|
+
"title": "Growers' Most Asked Questions",
|
|
1067
|
+
"items": [
|
|
1068
|
+
{
|
|
1069
|
+
"q": "How far apart should I plant avocado trees?",
|
|
1070
|
+
"a": "Standard spacing is **5–8 metres** between trees depending on the rootstock and variety. High-density plantings (3–4 m) can increase early yields but require more aggressive pruning and irrigation management as the canopy closes."
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
"q": "When will my trees produce their first commercial harvest?",
|
|
1074
|
+
"a": "Grafted trees typically begin fruiting in **years 3–4**, with a commercially viable yield from year 5 onward. Seedling trees take 7–10 years. Soil preparation, irrigation, and rootstock selection are the biggest variables affecting time-to-harvest."
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
"q": "What's involved in achieving organic certification?",
|
|
1078
|
+
"a": "Most certifying bodies require a **3-year transition period** during which no prohibited substances are applied. You'll need to maintain detailed input and harvest records, undergo annual inspections, and meet specific soil and water management standards. Start by contacting a USDA-accredited certifier or your regional equivalent."
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
"q": "How much water do avocado trees need?",
|
|
1082
|
+
"a": "A mature avocado tree in a semi-arid climate typically needs **1,000–1,200 mm of water per year**. With mulching and drip irrigation, this can often be reduced by 30–40%. Overwatering is a leading cause of root rot — monitor soil moisture at 30 cm depth before irrigating."
|
|
1083
|
+
},
|
|
1084
|
+
{
|
|
1085
|
+
"q": "Which avocado variety is best for my region?",
|
|
1086
|
+
"a": "**Hass** dominates global markets for its shelf life and flavour, but it needs cool nights to set fruit well. In hotter, humid climates consider **Lula**, **Booth 7**, or **Tonnage**. In Mediterranean climates, **Fuerte** and **Bacon** offer good yields with less irrigation. Consult your local extension service for variety trials in your specific microclimate."
|
|
1087
|
+
}
|
|
1088
|
+
]
|
|
1089
|
+
}
|
|
1090
|
+
},
|
|
1091
|
+
{
|
|
1092
|
+
"id": "b_cta_1778781517748",
|
|
1093
|
+
"type": "CTA",
|
|
1094
|
+
"props": {
|
|
1095
|
+
"title": "Join the Growers' Community",
|
|
1096
|
+
"description": "Connect with fellow avocado farmers, share field notes, and access expert advice on regenerative growing — all in one place.",
|
|
1097
|
+
"ctaText": "Join Free",
|
|
1098
|
+
"ctaHref": "/community",
|
|
1099
|
+
"secondaryCtaText": "Browse Guides",
|
|
1100
|
+
"secondaryCtaHref": "/recipes"
|
|
1101
|
+
}
|
|
1102
|
+
}
|
|
1103
|
+
]
|
|
1104
|
+
}
|
|
1105
|
+
];
|
|
1106
|
+
export const DEMO_SEED_SITE_CONFIG = {
|
|
1107
|
+
"name": "The Avocado Hub",
|
|
1108
|
+
"logo": "/logos/avocado-hub.svg",
|
|
1109
|
+
"navGroups": {
|
|
1110
|
+
"Produce": [
|
|
1111
|
+
"/blueberries",
|
|
1112
|
+
"/grapefruits",
|
|
1113
|
+
"/olives",
|
|
1114
|
+
"/oranges"
|
|
1115
|
+
],
|
|
1116
|
+
"Explore": [
|
|
1117
|
+
"/recipes",
|
|
1118
|
+
"/community"
|
|
1119
|
+
],
|
|
1120
|
+
"Grow": [
|
|
1121
|
+
"/farmers-and-growers"
|
|
1122
|
+
]
|
|
1123
|
+
},
|
|
1124
|
+
"navLabels": {
|
|
1125
|
+
"/farmers-and-growers": "Farmers & Growers",
|
|
1126
|
+
"/be-shorter-unsplash": "Wellness"
|
|
1127
|
+
}
|
|
1128
|
+
};
|