tedo-publisher 1.3.256 β†’ 1.3.257

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,309 @@
1
+ export declare const dataStructure: {
2
+ nutrition: {
3
+ title: string;
4
+ description: string;
5
+ slug: string;
6
+ children: {
7
+ healthyEating: {
8
+ title: string;
9
+ description: string;
10
+ slug: string;
11
+ children: null;
12
+ };
13
+ mealPrep: {
14
+ title: string;
15
+ description: string;
16
+ slug: string;
17
+ children: null;
18
+ };
19
+ superfoods: {
20
+ title: string;
21
+ description: string;
22
+ slug: string;
23
+ children: null;
24
+ };
25
+ recipes: {
26
+ title: string;
27
+ description: string;
28
+ slug: string;
29
+ children: null;
30
+ };
31
+ nutritionalSupplements: {
32
+ title: string;
33
+ description: string;
34
+ slug: string;
35
+ children: null;
36
+ };
37
+ other: {
38
+ title: string;
39
+ description: string;
40
+ slug: string;
41
+ children: null;
42
+ };
43
+ };
44
+ };
45
+ fitness: {
46
+ title: string;
47
+ description: string;
48
+ slug: string;
49
+ children: {
50
+ workoutRoutines: {
51
+ title: string;
52
+ description: string;
53
+ slug: string;
54
+ children: null;
55
+ };
56
+ strengthTraining: {
57
+ title: string;
58
+ description: string;
59
+ slug: string;
60
+ children: null;
61
+ };
62
+ cardioExercises: {
63
+ title: string;
64
+ description: string;
65
+ slug: string;
66
+ children: null;
67
+ };
68
+ flexibilityAndMobility: {
69
+ title: string;
70
+ description: string;
71
+ slug: string;
72
+ children: null;
73
+ };
74
+ fitnessChallenges: {
75
+ title: string;
76
+ description: string;
77
+ slug: string;
78
+ children: null;
79
+ };
80
+ other: {
81
+ title: string;
82
+ description: string;
83
+ slug: string;
84
+ children: null;
85
+ };
86
+ };
87
+ };
88
+ mentalHealth: {
89
+ title: string;
90
+ description: string;
91
+ slug: string;
92
+ children: {
93
+ mindfulnessAndMeditation: {
94
+ title: string;
95
+ description: string;
96
+ slug: string;
97
+ children: null;
98
+ };
99
+ stressManagement: {
100
+ title: string;
101
+ description: string;
102
+ slug: string;
103
+ children: null;
104
+ };
105
+ sleepHygiene: {
106
+ title: string;
107
+ description: string;
108
+ slug: string;
109
+ children: null;
110
+ };
111
+ selfCareTips: {
112
+ title: string;
113
+ description: string;
114
+ slug: string;
115
+ children: null;
116
+ };
117
+ motivationalStories: {
118
+ title: string;
119
+ description: string;
120
+ slug: string;
121
+ children: null;
122
+ };
123
+ other: {
124
+ title: string;
125
+ description: string;
126
+ slug: string;
127
+ children: null;
128
+ };
129
+ };
130
+ };
131
+ holisticWellness: {
132
+ title: string;
133
+ description: string;
134
+ slug: string;
135
+ children: {
136
+ alternativeTherapies: {
137
+ title: string;
138
+ description: string;
139
+ slug: string;
140
+ children: null;
141
+ };
142
+ wellnessPractices: {
143
+ title: string;
144
+ description: string;
145
+ slug: string;
146
+ children: null;
147
+ };
148
+ naturalRemedies: {
149
+ title: string;
150
+ description: string;
151
+ slug: string;
152
+ children: null;
153
+ };
154
+ spiritualHealth: {
155
+ title: string;
156
+ description: string;
157
+ slug: string;
158
+ children: null;
159
+ };
160
+ communitySupport: {
161
+ title: string;
162
+ description: string;
163
+ slug: string;
164
+ children: null;
165
+ };
166
+ other: {
167
+ title: string;
168
+ description: string;
169
+ slug: string;
170
+ children: null;
171
+ };
172
+ };
173
+ };
174
+ weightLoss: {
175
+ title: string;
176
+ description: string;
177
+ slug: string;
178
+ children: {
179
+ fatLossStrategies: {
180
+ title: string;
181
+ description: string;
182
+ slug: string;
183
+ children: null;
184
+ };
185
+ calorieTracking: {
186
+ title: string;
187
+ description: string;
188
+ slug: string;
189
+ children: null;
190
+ };
191
+ mealPlans: {
192
+ title: string;
193
+ description: string;
194
+ slug: string;
195
+ children: null;
196
+ };
197
+ weightLossSuccessStories: {
198
+ title: string;
199
+ description: string;
200
+ slug: string;
201
+ children: null;
202
+ };
203
+ motivationAndSupport: {
204
+ title: string;
205
+ description: string;
206
+ slug: string;
207
+ children: null;
208
+ };
209
+ other: {
210
+ title: string;
211
+ description: string;
212
+ slug: string;
213
+ children: null;
214
+ };
215
+ };
216
+ };
217
+ healthyLifestyle: {
218
+ title: string;
219
+ description: string;
220
+ slug: string;
221
+ children: {
222
+ workLifeBalance: {
223
+ title: string;
224
+ description: string;
225
+ slug: string;
226
+ children: null;
227
+ };
228
+ familyHealth: {
229
+ title: string;
230
+ description: string;
231
+ slug: string;
232
+ children: null;
233
+ };
234
+ fitnessForBusyPeople: {
235
+ title: string;
236
+ description: string;
237
+ slug: string;
238
+ children: null;
239
+ };
240
+ healthyHabits: {
241
+ title: string;
242
+ description: string;
243
+ slug: string;
244
+ children: null;
245
+ };
246
+ goalSetting: {
247
+ title: string;
248
+ description: string;
249
+ slug: string;
250
+ children: null;
251
+ };
252
+ other: {
253
+ title: string;
254
+ description: string;
255
+ slug: string;
256
+ children: null;
257
+ };
258
+ };
259
+ };
260
+ trendingTopics: {
261
+ title: string;
262
+ description: string;
263
+ slug: string;
264
+ children: {
265
+ latestHealthTrends: {
266
+ title: string;
267
+ description: string;
268
+ slug: string;
269
+ children: null;
270
+ };
271
+ scientificResearch: {
272
+ title: string;
273
+ description: string;
274
+ slug: string;
275
+ children: null;
276
+ };
277
+ newFitnessGadgets: {
278
+ title: string;
279
+ description: string;
280
+ slug: string;
281
+ children: null;
282
+ };
283
+ popularDiets: {
284
+ title: string;
285
+ description: string;
286
+ slug: string;
287
+ children: null;
288
+ };
289
+ other: {
290
+ title: string;
291
+ description: string;
292
+ slug: string;
293
+ children: null;
294
+ };
295
+ };
296
+ };
297
+ };
298
+ export declare const authors: Record<string, string>;
299
+ export declare const authorsNames: string[];
300
+ export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83D\uDCAA\uD83E\uDDD8\u200D\u2640\uFE0F\uD83E\uDD57\uD83C\uDFC3\u200D\u2642\uFE0F";
301
+ export declare const categories: ("fitness" | "mentalHealth" | "trendingTopics" | "nutrition" | "holisticWellness" | "weightLoss" | "healthyLifestyle")[];
302
+ export declare const subcategories: string[];
303
+ export declare const subsubcategories: string[];
304
+ export type Category = keyof typeof dataStructure;
305
+ export type CategoryNode = (typeof dataStructure)[Category];
306
+ export type SubcategoryKeyByCategory<T extends Category> = (typeof dataStructure)[T]['children'];
307
+ export declare const startDate = "2024-09-12T00:00:00Z";
308
+ export declare const devBucketName = "idn-zealshift-dev";
309
+ export declare const prodBucketName = "idn-zealshift";
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./seo.js");const t={nutrition:{title:"Explore Nutritional Insights for a Healthier Life 🌱",description:"Dive into our nutrition section for tips, recipes, and insights that support your healthy lifestyle. Discover nutritious eating habits today! πŸ₯—",slug:"nutrition",children:{healthyEating:{title:"Healthy Eating Tips for a Vibrant Lifestyle πŸ₯¦",description:"Discover essential tips for healthy eating and meal choices that enhance your vitality. Embrace a balanced diet for a better you! 🍏",slug:"healthy-eating",children:null},mealPrep:{title:"Master the Art of Meal Prep for Optimal Health 🍱",description:"Learn effective meal prep strategies to save time and eat healthier. Transform your meals into nutritious delights with our expert tips! 🍳",slug:"meal-prep",children:null},superfoods:{title:"Unlock the Power of Superfoods for Your Health 🌟",description:"Explore the benefits of superfoods and how they can boost your wellness. Discover delicious recipes and tips for incorporating them into your diet! πŸ₯₯",slug:"superfoods",children:null},recipes:{title:"Delicious and Healthy Recipes for Every Occasion 🍽️",description:"Find a collection of healthy recipes to inspire your cooking. From breakfast to dinner, enjoy nutritious dishes that delight your palate! πŸ₯˜",slug:"recipes",children:null},nutritionalSupplements:{title:"Nutritional Supplements: What You Need to Know πŸ’Š",description:"Navigate the world of nutritional supplements with confidence! Learn about their benefits and how to choose the right ones for your health goals. 🌿",slug:"nutritional-supplements",children:null},other:{title:"Discover More Nutrition Insights and Tips πŸ€”",description:"Explore various nutrition topics beyond the basics. Unlock knowledge on dietary trends and alternative nutrition solutions for a healthier you! πŸ₯•",slug:"other-nutrition",children:null}}},fitness:{title:"Empower Your Journey with Fitness Tips & Tricks πŸ’ͺ",description:"Explore insightful articles that guide you through your health and fitness journey. Discover tips, routines, and inspiring success stories! 🌟",slug:"fitness-tips-and-tricks",children:{workoutRoutines:{title:"Discover Engaging Workout Routines for All Levels πŸ‹οΈβ€β™‚οΈ",description:"Browse a variety of effective workout routines to build strength, increase endurance, and maintain fitness, tailored for all levels! πŸ†",slug:"workout-routines",children:null},strengthTraining:{title:"Strength Training Techniques: Build Your Power πŸ’₯",description:"Uncover the secrets of strength training to build muscle effectively. Learn techniques, tips, and routines to get stronger! πŸ’ͺ",slug:"strength-training",children:null},cardioExercises:{title:"Cardio Exercises You Need for Heart Health ❀️",description:"Explore a range of cardio exercises to enhance your heart health and stamina. Best practices and tips included to keep you motivated! πŸƒβ€β™€οΈ",slug:"cardio-exercises",children:null},flexibilityAndMobility:{title:"Boost Flexibility and Mobility for Better Performance πŸ€Έβ€β™‚οΈ",description:"Learn stretches and mobility exercises to enhance flexibility for improved athletic performance and injury prevention. Start now! 🌈",slug:"flexibility-and-mobility",children:null},fitnessChallenges:{title:"Join Fitness Challenges to Stay Motivated πŸš€",description:"Participate in exciting fitness challenges designed to boost your motivation and commitment. Push your limits and achieve greatness! 🎯",slug:"fitness-challenges",children:null},other:{title:"Explore Other Fitness Topics: Tips and Tricks 🌟",description:"Dive into various other fitness topics, tips, and unique insights that can help you in your health and wellness journey! πŸ§˜β€β™€οΈ",slug:"other-fitness-topics",children:null}}},mentalHealth:{title:"Mental Health: Strategies for Wellness and Balance ✨",description:"Explore our mental health section for tips on mindfulness, stress management, and more! Elevate your mental well-being daily. πŸ§ πŸ’–",slug:"mental-health-strategies-wellness-balance",children:{mindfulnessAndMeditation:{title:"Mindfulness and Meditation: Finding Your Inner Peace πŸ§˜β€β™‚οΈ",description:"Unlock the transformative power of mindfulness and meditation. Discover techniques to enhance your focus and peace of mind. πŸŒŸπŸ•ŠοΈ",slug:"mindfulness-and-meditation-inner-peace",children:null},stressManagement:{title:"Stress Management: Techniques to Cope and Thrive πŸ’ͺ",description:"Learn effective stress management strategies that empower you to deal with life’s challenges and boost your overall well-being. 😌🌈",slug:"stress-management-techniques cope-thrive",children:null},sleepHygiene:{title:"Sleep Hygiene: Your Guide to Restful Nights πŸ’€",description:"Enhance your sleep hygiene for better rest and recovery. Discover tips and tricks that lead to rejuvenating nights and energized days. πŸŒ™πŸŒž",slug:"sleep-hygiene-guide-restful-nights",children:null},selfCareTips:{title:"Self-Care Tips: Prioritize Your Mental Well-Being πŸ’–",description:"Explore essential self-care tips that nurture your mind and spirit. Make self-care a daily ritual for a happier, healthier you. πŸŒ»πŸ›",slug:"self-care-tips-prioritize-well-being",children:null},motivationalStories:{title:"Motivational Stories: Inspiration for Personal Growth πŸš€",description:"Delve into motivational stories that inspire and uplift! Learn from others who transformed their mental health journeys. πŸ“–βœ¨",slug:"motivational-stories-personal-growth",children:null},other:{title:"Other Mental Health Insights: Broadening Perspectives 🌍",description:"Discover a wide range of articles on mental health topics not covered elsewhere. Expand your knowledge and support your journey. πŸ“šπŸ’‘",slug:"other-mental-health-insights",children:null}}},holisticWellness:{title:"Explore Holistic Wellness for Your Health Journey 🌿",description:"Dive into holistic wellness at ZealShift, offering alternative therapies, practices, and community support. Enhance your well-being journey! 🌟",slug:"holistic-wellness",children:{alternativeTherapies:{title:"Alternative Therapies to Enhance Your Well-Being 🌈",description:"Discover various alternative therapies that promote healing and wellness. Explore options like acupuncture, aromatherapy, and more! 🌸",slug:"alternative-therapies",children:null},wellnessPractices:{title:"Wellness Practices for a Balanced Life ✨",description:"Learn about effective wellness practices, including meditation, yoga, and mindfulness. Foster a balanced lifestyle with these tips! πŸ§˜β€β™€οΈ",slug:"wellness-practices",children:null},naturalRemedies:{title:"Natural Remedies for Everyday Health Issues 🌼",description:"Explore natural remedies that provide holistic solutions to common health problems. Find ways to treat ailments naturally! 🌱",slug:"natural-remedies",children:null},spiritualHealth:{title:"Spiritual Health: Nurture Your Inner Self 🌌",description:"Understand the importance of spiritual health in overall wellness. Embrace practices that connect you to your inner self! πŸ•ŠοΈ",slug:"spiritual-health",children:null},communitySupport:{title:"Community Support for Holistic Growth 🀝",description:"Join our community support initiatives designed for those on a holistic wellness journey. Share experiences and grow together! 🌍",slug:"community-support",children:null},other:{title:"Other Aspects of Holistic Wellness 🌏",description:"Discover unique and lesser-known aspects of holistic wellness. Expand your knowledge for a well-rounded health journey! πŸ”",slug:"other-aspects",children:null}}},weightLoss:{title:"Transform Your Body: Effective Weight Loss Strategies",description:"Explore insightful weight loss strategies to help you achieve your fitness goals! Discover tips, motivation, and success stories to inspire your journey. 🌟",slug:"weight-loss-strategies",children:{fatLossStrategies:{title:"Fat Loss Strategies: Proven Methods for Effective Weight Loss",description:"Uncover successful fat loss strategies that empower your weight loss journey. Learn what really works to shed those extra pounds effectively! πŸ”₯",slug:"fat-loss-strategies",children:null},calorieTracking:{title:"Calorie Tracking: Master Your Nutrition for Weight Loss",description:"Master the art of calorie tracking to optimize your nutrition and weight loss results. Learn practical tips on maintaining a balanced diet! πŸ“Š",slug:"calorie-tracking",children:null},mealPlans:{title:"Meal Plans for Weight Loss: Simple & Tasty Recipes",description:"Discover meal plans designed for effective weight loss with delicious recipes. Make healthy eating easy and enjoyable for yourself! 🍽️",slug:"meal-plans-weight-loss",children:null},weightLossSuccessStories:{title:"Inspirational Weight Loss Success Stories to Motivate You",description:"Get inspired by transformational weight loss success stories. Learn how others have overcome challenges to achieve their health goals! πŸŽ‰",slug:"weight-loss-success-stories",children:null},motivationAndSupport:{title:"Motivation and Support: Staying Driven in Your Weight Loss Journey",description:"Find the motivation and support you need to stay committed to your weight loss goals. Discover tips and community that uplifts you! πŸ’ͺ",slug:"motivation-and-support",children:null},other:{title:"Other Weight Loss Topics: Explore Unique Insights",description:"Dive into other unique weight loss topics that can help shape your journey. Expand your knowledge with diverse insights and advice! πŸ”",slug:"other-weight-loss-topics",children:null}}},healthyLifestyle:{title:"Healthy Lifestyle Tips & Strategies for Your Wellness Journey 🌱",description:"Discover essential strategies and tips for cultivating a healthy lifestyle. Explore health, fitness, and wellness topics that inspire change. πŸ’ͺ",slug:"healthy-lifestyle-tips",children:{workLifeBalance:{title:"Achieving Work-Life Balance for a Healthier You βš–οΈ",description:"Learn practical tips to maintain a work-life balance that promotes well-being and reduces stress. Find strategies to nourish both career and health! 🧘",slug:"work-life-balance",children:null},familyHealth:{title:"Family Health: Nurturing Wellness for Everyone πŸ‘¨β€πŸ‘©β€πŸ‘§β€πŸ‘¦",description:"Explore ways to enhance your family's health with engaging activities, nutrition tips, and wellness strategies everyone can enjoy! πŸ₯—",slug:"family-health",children:null},fitnessForBusyPeople:{title:"Fitness Tips for Busy People: Stay Fit on the Go πŸƒβ€β™‚οΈ",description:"Discover efficient workout routines and fitness strategies designed for busy individuals. Make health a priority, no matter your schedule! ⏰",slug:"fitness-for-busy-people",children:null},healthyHabits:{title:"Cultivating Healthy Habits for Lasting Wellness 🌟",description:"Get insights into forming healthy habits that support your wellness journey. Learn simple yet effective ways to make positive lifestyle changes! 🍏",slug:"healthy-habits",children:null},goalSetting:{title:"Effective Goal Setting for Your Health Journey 🎯",description:"Master the art of goal setting to stay focused and motivated on your health journey. Achieve your wellness dreams step by step! πŸ“",slug:"goal-setting",children:null},other:{title:"Additional Health & Fitness Insights for Balanced Living 🌈",description:"Explore a variety of health and fitness topics that don't fit elsewhere. Uncover unique insights to enrich your wellness lifestyle! πŸ”",slug:"health-fitness-insights",children:null}}},trendingTopics:{title:"Explore the Latest in Health and Fitness 🌟",description:"Stay ahead of the curve with trending health and fitness topics. From the newest gadgets to expert advice, we cover it all to support your wellness journey!",slug:"trending-health-fitness",children:{latestHealthTrends:{title:"Discover the Latest Health Trends of 2023 πŸ”",description:"Uncover the top health trends for 2023 that everyone is talking about! From new diets to wellness practices, ignite your enthusiasm for healthy living.",slug:"latest-health-trends",children:null},scientificResearch:{title:"Insights from Recent Scientific Research πŸ“Š",description:"Dive deep into the latest scientific research on health and fitness. Understand the facts behind trends to make informed wellness choices for better living!",slug:"scientific-research",children:null},newFitnessGadgets:{title:"Innovative Fitness Gadgets You Need to Try πŸ› οΈ",description:"Explore cutting-edge fitness gadgets designed to elevate your workout game. Stay motivated and track your progress with the latest technology at your fingertips!",slug:"new-fitness-gadgets",children:null},popularDiets:{title:"Explore the Most Popular Diets Today πŸ₯—",description:"Learn about the most popular diets that are transforming lives. From keto to plant-based, discover which dietary approach fits your health goals!",slug:"popular-diets",children:null},other:{title:"Other Trending Topics in Health and Fitness 🌐",description:"Explore an array of other trending health and fitness topics. Stay informed, inspired, and engaged with different aspects of wellness and lifestyle!",slug:"other-trending-topics",children:null}}}},i=e.AUTHORS_INFO.reduce(((e,t)=>Object.assign(Object.assign({},e),{[t.name]:[t.description]})),{}),s=e.AUTHORS_INFO.map((e=>e.name)),n="πŸ’ͺπŸ§˜β€β™€οΈπŸ₯—πŸƒβ€β™‚οΈ",o=Object.keys(t),r=[],l=[];for(const e of o){const i=t[e];if(null==i?void 0:i.children){r.push(...Object.keys(i.children));for(const e of r){const t=i.children[e];(null==t?void 0:t.children)&&l.push(...Object.keys(t.children))}}}const a="2024-09-12T00:00:00Z",h="zealshift",c=`idn-${h}-dev`,u=`idn-${h}`;exports.DEFAULT_DESCRIPTION_EMOJIS=n,exports.authors=i,exports.authorsNames=s,exports.categories=o,exports.dataStructure=t,exports.devBucketName=c,exports.prodBucketName=u,exports.startDate=a,exports.subcategories=r,exports.subsubcategories=l;
@@ -0,0 +1,28 @@
1
+ export declare enum FiltersNames {
2
+ WellnessFocus = "Wellness Focus",
3
+ FitnessLevel = "Fitness Level",
4
+ ContentType = "Content Type",
5
+ LifestyleIntegration = "Lifestyle Integration",
6
+ HealthGoals = "Health Goals"
7
+ }
8
+ type WellnessFocusValues = 'Nutrition Tips' | 'Workout Routines' | 'Mental Health' | 'Holistic Wellness';
9
+ type FitnessLevelValues = 'Beginner Friendly' | 'Intermediate Challenges' | 'Advanced Techniques';
10
+ type ContentTypeValues = 'Inspirational Stories' | 'How-To Guides' | 'Research Articles';
11
+ type LifestyleIntegrationValues = 'Quick Workouts for Busy Schedules' | 'Healthy Meal Prep Ideas' | 'Stress Management Techniques' | 'Family Wellness Activities';
12
+ type HealthGoalsValues = 'Weight Loss' | 'Muscle Building' | 'Enhanced Endurance' | 'Improved Flexibility';
13
+ export type ArticleFilters = {
14
+ [FiltersNames.WellnessFocus]: WellnessFocusValues[];
15
+ [FiltersNames.FitnessLevel]: FitnessLevelValues[];
16
+ [FiltersNames.ContentType]: ContentTypeValues[];
17
+ [FiltersNames.LifestyleIntegration]: LifestyleIntegrationValues[];
18
+ [FiltersNames.HealthGoals]: HealthGoalsValues[];
19
+ };
20
+ export declare const wellnessFocusValues: WellnessFocusValues[];
21
+ export declare const fitnessLevelValues: FitnessLevelValues[];
22
+ export declare const contentTypeValues: ContentTypeValues[];
23
+ export declare const lifestyleIntegrationValues: LifestyleIntegrationValues[];
24
+ export declare const healthGoalsValues: HealthGoalsValues[];
25
+ export declare const initialFilters: ArticleFilters;
26
+ export declare const fullFilters: ArticleFilters;
27
+ export declare const getFiltersTypesJSON: () => string;
28
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e;exports.FiltersNames=void 0,(e=exports.FiltersNames||(exports.FiltersNames={})).WellnessFocus="Wellness Focus",e.FitnessLevel="Fitness Level",e.ContentType="Content Type",e.LifestyleIntegration="Lifestyle Integration",e.HealthGoals="Health Goals";const s=["Nutrition Tips","Workout Routines","Mental Health","Holistic Wellness"],t=["Beginner Friendly","Intermediate Challenges","Advanced Techniques"],l=["Inspirational Stories","How-To Guides","Research Articles"],i=["Quick Workouts for Busy Schedules","Healthy Meal Prep Ideas","Stress Management Techniques","Family Wellness Activities"],r=["Weight Loss","Muscle Building","Enhanced Endurance","Improved Flexibility"],o={[exports.FiltersNames.WellnessFocus]:[],[exports.FiltersNames.FitnessLevel]:[],[exports.FiltersNames.ContentType]:[],[exports.FiltersNames.LifestyleIntegration]:[],[exports.FiltersNames.HealthGoals]:[]},n={[exports.FiltersNames.WellnessFocus]:s,[exports.FiltersNames.FitnessLevel]:t,[exports.FiltersNames.ContentType]:l,[exports.FiltersNames.LifestyleIntegration]:i,[exports.FiltersNames.HealthGoals]:r},a=()=>JSON.stringify(n,null,2);exports.contentTypeValues=l,exports.fitnessLevelValues=t,exports.fullFilters=n,exports.getFiltersTypesJSON=a,exports.healthGoalsValues=r,exports.initialFilters=o,exports.lifestyleIntegrationValues=i,exports.wellnessFocusValues=s;
@@ -0,0 +1,3 @@
1
+ import { GetDefaultImagesFrontmatter } from 'src/common/types';
2
+ export declare const getDefaultImagesFrontmatter: GetDefaultImagesFrontmatter;
3
+ export declare const prohibitedWordsInAltTitle: RegExp;
@@ -0,0 +1 @@
1
+ "use strict";const e=(e,n)=>{const t=n(e),i=undefined,a=undefined,l=undefined,o=undefined;return[{alt:`${e} Introduction`,filename:`${t}-introduction.png`,title:`${e} Introduction`},{alt:`Magnificent ${e}`,filename:`Magnificent-${t}.png`,title:`Magnificent ${e}`},{alt:`Notable ${e}`,filename:`${t}-notable.png`,title:`Notable ${e}`},{alt:`${e} Summary`,filename:`${t}-summary.png`,title:`${e} Summary`}]},n=/\b(?:hands|men|women|human|people|chief|family|mixing|serving|tasting|rolling)\b/i;exports.getDefaultImagesFrontmatter=e,exports.prohibitedWordsInAltTitle=n;
@@ -0,0 +1,15 @@
1
+ export * from './data';
2
+ export * from './filters';
3
+ export * from './helpers';
4
+ export * from './prompts/images';
5
+ export * from './seo';
6
+ import './styles/colors.css';
7
+ import './styles/fonts.css';
8
+ import './styles/global.css';
9
+ import './styles/sizing.css';
10
+ import './styles/vars.css';
11
+ import './styles/theme.css';
12
+ import * as gpt35Articles from './prompts/gpt35turbo/articles';
13
+ import * as gpt4oMiniArticles from './prompts/gpt4oMini/articles';
14
+ export { gpt35Articles, gpt4oMiniArticles };
15
+ export * from './prompts/data';
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./data.js"),t=require("./filters.js"),s=require("./helpers.js"),r=require("./prompts/images.js"),o=require("./seo.js"),a=require("./prompts/gpt35turbo/articles.js"),p=require("./prompts/gpt4oMini/articles.js"),i=require("./prompts/data.js");exports.DEFAULT_DESCRIPTION_EMOJIS=e.DEFAULT_DESCRIPTION_EMOJIS,exports.authors=e.authors,exports.authorsNames=e.authorsNames,exports.categories=e.categories,exports.dataStructure=e.dataStructure,exports.devBucketName=e.devBucketName,exports.prodBucketName=e.prodBucketName,exports.startDate=e.startDate,exports.subcategories=e.subcategories,exports.subsubcategories=e.subsubcategories,Object.defineProperty(exports,"FiltersNames",{enumerable:!0,get:function(){return t.FiltersNames}}),exports.contentTypeValues=t.contentTypeValues,exports.fitnessLevelValues=t.fitnessLevelValues,exports.fullFilters=t.fullFilters,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.healthGoalsValues=t.healthGoalsValues,exports.initialFilters=t.initialFilters,exports.lifestyleIntegrationValues=t.lifestyleIntegrationValues,exports.wellnessFocusValues=t.wellnessFocusValues,exports.getDefaultImagesFrontmatter=s.getDefaultImagesFrontmatter,exports.prohibitedWordsInAltTitle=s.prohibitedWordsInAltTitle,exports.getOpenAiBasedImagePrompt=r.getOpenAiBasedImagePrompt,exports.getOpenAiBasedImagePromptDalle2=r.getOpenAiBasedImagePromptDalle2,exports.getStableDiffusionImagePrompt=r.getStableDiffusionImagePrompt,exports.AUTHORS_INFO=o.AUTHORS_INFO,exports.AUTHORS_META=o.AUTHORS_META,exports.PAGES_SEO=o.PAGES_SEO,Object.defineProperty(exports,"PageNames",{enumerable:!0,get:function(){return o.PageNames}}),exports.gpt35Articles=a,exports.gpt4oMiniArticles=p,exports.END_STEP=i.END_STEP,exports.FILTERS_INFO=i.FILTERS_INFO,exports.IMAGES_PROHIBITED_WORDS=i.IMAGES_PROHIBITED_WORDS,exports.START_STEP=i.START_STEP,exports.TARGET_AUDIENCE=i.TARGET_AUDIENCE,exports.ZERO_SECTION=i.ZERO_SECTION,exports.portalInfo=i.portalInfo;
@@ -0,0 +1,7 @@
1
+ export declare const portalInfo = "The article is written for the web portal.I will give you important information regarding the web portal:\n - Brief description: ZealShift is an innovative infotainment portal focusing on health and fitness. It provides engaging and informative articles that cater to the wellness journey of individuals seeking advice, tips, and inspirational stories.\n - Detailed description: ZealShift serves as a comprehensive platform that combines entertainment and information, dedicated to health and fitness enthusiasts. The portal features a wide array of articles covering various topics, including nutrition, workout routines, mental health, and holistic wellness. Each piece of content is meticulously researched and crafted to offer both practical tips and inspiring success stories, promoting a balanced and vibrant lifestyle. With an easy-to-navigate interface, ZealShift aims to educate and motivate readers, facilitating a supportive community where individuals can share their health journeys and challenges. The portal leverages the latest health trends and scientific insights, making it an essential resource for anyone looking to improve their well-being. \n - Target audience: The target audience for ZealShift primarily includes health-conscious individuals aged 18 to 45 who are seeking to enhance their lifestyle through fitness and nutrition. This audience may include fitness enthusiasts, beginners looking for guidance, individuals seeking weight loss solutions, and those interested in holistic health approaches. Additionally, the portal appeals to busy professionals and parents who wish to incorporate healthier habits into their hectic schedules. Overall, ZealShift targets individuals who are motivated to prioritize their health and fitness and are looking for reliable, engaging, and informative content.\n\n";
2
+ export declare const ZERO_SECTION = "This is important to include the following headers to the section, ONLY if they are applicable to the title, abstract and description of the article:\n## Health Benefits\n - Physical Health Benefits\n - Mental Health Benefits\n\n## Practical Tips\n - Healthy Eating Guidelines\n - Effective Workout Routines\n\nYou can change the headers and topics to make a them more coherent with the description of the article.\nStart text with first Heading H2 - Health Benefits, IF it's applicable to the theme of the article.\n";
3
+ export declare const START_STEP = "highlighting the key points that will be discussed and the relevance of the topic";
4
+ export declare const END_STEP = "synthesizing the information presented throughout";
5
+ export declare const TARGET_AUDIENCE = "health professionals, wellness coaches, nutritionists, fitness trainers, and mindfulness instructors";
6
+ export declare const IMAGES_PROHIBITED_WORDS = "any numbers, image, slug, step, seo, hand / hands, men, women, human, people, chief, preparing, process, cooking, mixing, serving, tasting, rolling";
7
+ export declare const FILTERS_INFO: string;
@@ -0,0 +1 @@
1
+ "use strict";var e;const t="The article is written for the web portal.I will give you important information regarding the web portal:\n - Brief description: ZealShift is an innovative infotainment portal focusing on health and fitness. It provides engaging and informative articles that cater to the wellness journey of individuals seeking advice, tips, and inspirational stories.\n - Detailed description: ZealShift serves as a comprehensive platform that combines entertainment and information, dedicated to health and fitness enthusiasts. The portal features a wide array of articles covering various topics, including nutrition, workout routines, mental health, and holistic wellness. Each piece of content is meticulously researched and crafted to offer both practical tips and inspiring success stories, promoting a balanced and vibrant lifestyle. With an easy-to-navigate interface, ZealShift aims to educate and motivate readers, facilitating a supportive community where individuals can share their health journeys and challenges. The portal leverages the latest health trends and scientific insights, making it an essential resource for anyone looking to improve their well-being. \n - Target audience: The target audience for ZealShift primarily includes health-conscious individuals aged 18 to 45 who are seeking to enhance their lifestyle through fitness and nutrition. This audience may include fitness enthusiasts, beginners looking for guidance, individuals seeking weight loss solutions, and those interested in holistic health approaches. Additionally, the portal appeals to busy professionals and parents who wish to incorporate healthier habits into their hectic schedules. Overall, ZealShift targets individuals who are motivated to prioritize their health and fitness and are looking for reliable, engaging, and informative content.\n\n",i="This is important to include the following headers to the section, ONLY if they are applicable to the title, abstract and description of the article:\n## Health Benefits\n - Physical Health Benefits\n - Mental Health Benefits\n\n## Practical Tips\n - Healthy Eating Guidelines\n - Effective Workout Routines\n\nYou can change the headers and topics to make a them more coherent with the description of the article.\nStart text with first Heading H2 - Health Benefits, IF it's applicable to the theme of the article.\n",n="highlighting the key points that will be discussed and the relevance of the topic",a="synthesizing the information presented throughout",s="health professionals, wellness coaches, nutritionists, fitness trainers, and mindfulness instructors",o="any numbers, image, slug, step, seo, hand / hands, men, women, human, people, chief, preparing, process, cooking, mixing, serving, tasting, rolling",r=`That is TREMENDOUS important - if category doesn't match - return empty array for that category - []. For example if you don't find any match for $FILTERNAME, return for that category\n$FILTERNAME: []\nResponse in valid json, adhering strictly to json interface below, include every field present in it, but include values in array only suitable for article, all array values are optional!\n${require("../filters.js").getFiltersTypesJSON()}`;exports.END_STEP=a,exports.FILTERS_INFO=r,exports.IMAGES_PROHIBITED_WORDS=o,exports.START_STEP=n,exports.TARGET_AUDIENCE=s,exports.ZERO_SECTION=i,exports.portalInfo=t;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt35turbo/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),p=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),i=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=i,exports.getFiltersPrompt=p,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt4oMini/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),i=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),p=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=p,exports.getFiltersPrompt=i,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,4 @@
1
+ import { GetOpenAiBasedImagePrompt, GetStableDiffusionImagePrompt } from 'src/common/types';
2
+ export declare const getStableDiffusionImagePrompt: GetStableDiffusionImagePrompt;
3
+ export declare const getOpenAiBasedImagePrompt: GetOpenAiBasedImagePrompt;
4
+ export declare const getOpenAiBasedImagePromptDalle2: GetOpenAiBasedImagePrompt;
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../common/prompts/images.js");const a=({title:a,alt:o,articleTitle:r})=>({prompt:`Award-winning hyper-realistic cinematic photography ${a}, ${o}, for article ${r} from professional sports photography for glossy health magazine, health photography, glossy health magazine, photorealistic, ultra-realistic, maximum detail, highly detailed, commercial photography, foreground focus, epicurious, instagram, 4K, 8K, volumetric light, cinematic, octane render, uplight, blur-free, depth of field, dof, film, bokeh, foreground focus, 35mm photography`,negativePrompt:e.SD_NEGATIVE_PROMPT}),o=({title:e,alt:a,articleTitle:o})=>`I NEED a hyper-real illustration of a ${e} at food style photography, ${a}, for an article ${o} for a glossy recipe magazine, photorealistic, ultra realistic, maximum detail, highly detailed, food style, food style photography, professional food photography, commercial photography, foreground focus, recipes.com, delish.com, epicurious, instagram, 4K, 8K, volumetric light, octane render, uplight, no blur, depth of field, dof, bokeh, foreground focus. Please exclude any: Photocamera, videocamera, Spotlight, soffit, ramp, scanners, strobe, soffit truss, film props, radio, cooking timer, watches, clocks, men, woman, people, hand, nands, leg, legs, font, username, error, words, letters, digits, autograph, trademark, name, easy-negative, cartoon, worst quality, low quality, blind, bad eyes, ugly eyes, dead eyes, greyscale, monochrome, vignette, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, censored, rabs, muscular, rib, blurry, blur, grainy, teeth, low resolution, lowres, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bw, bad photo, bad photography, bad art, morbid, ugly, asymmetrical, mutated malformed, mutilated, poorly lit, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, duplicate, airbrushed,, anime, semi-realistic, cgi, render, 3D, blender, digital art, manga, amateur, 3D, 3D Game, 3D Game Scene, 3D Character, bad hands, , bad body, bad face, bad teeth, bad arms, bad legs, deformities, drawing, deformed iris, deformed pupils, deformed, painting, crayon, sketch, graphite, impressionist, noisy, poorly drawn hands, poorly drawn face, poorly drawn eyes, mutation, bad proportions, cloned face, disfigured, gross proportions, malformed limbs, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck, incoherent from this hyper-real illustration of a ${e}`,r=({title:e})=>`\n\tPhotorealistic highly detailed image of ingredients for ${e}, arranged professionally as if for a food photography shoot. image should showcase maximum detail realism, with a focus on foreground, emulating the style of a high-definition, 8k resolution professional food photograph. lighting should be volumetric and uplit, with a depth of field and bokeh effect, avoiding any blur for clarity. overall aesthetic should be reminiscent of the Kodak Portrait 800 style.\n\tNegative Prompt:\n\teasy-negative, cartoon, worst quality, low quality, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, blurry, blur, grainy, teeth, low resolution, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, airbrushed, anime, semi-realistic, cgi, render, 3D, blender, manga, amateur, 3D, 3D Game, drawing, sketch\n`;exports.getOpenAiBasedImagePrompt=o,exports.getOpenAiBasedImagePromptDalle2=r,exports.getStableDiffusionImagePrompt=a;
@@ -0,0 +1,23 @@
1
+ export interface PageSeoData {
2
+ title: string;
3
+ description: string;
4
+ }
5
+ export declare enum PageNames {
6
+ Authors = "authors",
7
+ Home = "home",
8
+ NotFound = "not-found",
9
+ AboutUs = "about-us",
10
+ PrivacyPolicy = "privacy-policy",
11
+ Terms = "terms",
12
+ Sitemap = "sitemap"
13
+ }
14
+ export type PagesSeo = Record<PageNames, PageSeoData>;
15
+ export interface AuthorInfo {
16
+ name: string;
17
+ description: string;
18
+ meta_title: string;
19
+ meta_description: string;
20
+ }
21
+ export declare const PAGES_SEO: PagesSeo;
22
+ export declare const AUTHORS_INFO: AuthorInfo[];
23
+ export declare const AUTHORS_META: Record<string, PageSeoData>;
@@ -0,0 +1 @@
1
+ "use strict";var e;exports.PageNames=void 0,(e=exports.PageNames||(exports.PageNames={})).Authors="authors",e.Home="home",e.NotFound="not-found",e.AboutUs="about-us",e.PrivacyPolicy="privacy-policy",e.Terms="terms",e.Sitemap="sitemap";const i={[exports.PageNames.Authors]:{title:"Meet Our Health & Fitness Experts | ZealShift",description:"Discover our dedicated team of health and fitness professionals at ZealShift. 🌟 Explore their profiles and insights to inspire your wellness journey! πŸ’ͺ"},[exports.PageNames.Home]:{title:"Welcome to ZealShift | Your Health and Fitness Portal",description:"Join us at ZealShift for the latest tips, guides, and insights on health and fitness! 🌈 Transform your life with our expert advice and practical resources. πŸ‹οΈβ€β™‚οΈ"},[exports.PageNames.NotFound]:{title:"Page Not Found | ZealShift",description:"Oops! 🚫 We couldn't find the page you're looking for. Check our home page for the latest health and fitness content! πŸ“–"},[exports.PageNames.AboutUs]:{title:"About ZealShift | Your Partner in Health & Fitness",description:"Learn more about ZealShift, a hub for health enthusiasts. 🫢 Our mission is to empower you with knowledge and resources for a healthier life! 🌱"},[exports.PageNames.PrivacyPolicy]:{title:"Privacy Policy | ZealShift",description:"Your privacy matters to us! πŸ”’ Review our Privacy Policy to understand how ZealShift safeguards your information while you explore health and fitness. πŸ›‘οΈ"},[exports.PageNames.Terms]:{title:"Terms and Conditions | ZealShift",description:"Stay informed! πŸ“‘ Read our Terms and Conditions to ensure a safe and enjoyable experience at ZealShift as you navigate through health and fitness insights. βš–οΈ"},[exports.PageNames.Sitemap]:{title:"Sitemap | ZealShift Health & Fitness Portal",description:"Navigate easily! πŸ—ΊοΈ Check out our Sitemap to find all the content on ZealShift and take your health journey to the next level! πŸš€"}},a=[{name:"Divya Sharma",description:"Divya Sharma is a certified nutritionist and wellness coach with over 10 years of experience in the health and fitness industry. She specializes in holistic nutrition and has worked with numerous clients to help them achieve their fitness goals through balanced diets and lifestyle changes.",meta_title:"Divya Sharma - Nutritionist & Wellness Coach at ZealShift",meta_description:"Discover tips and advice from Divya Sharma, a certified nutritionist and wellness coach at ZealShift, focusing on holistic nutrition and sustainable lifestyle enhancements."},{name:"Ravi Menon",description:"Ravi Menon is a personal trainer and fitness expert with a passion for strength training and functional fitness. With a decade of experience in coaching individuals of all fitness levels, he shares effective workout strategies and motivational insights on ZealShift.",meta_title:"Ravi Menon - Fitness Expert & Personal Trainer at ZealShift",meta_description:"Join Ravi Menon, our fitness expert and personal trainer at ZealShift, for effective workouts and motivation to achieve your health and fitness goals."},{name:"Anjali Desai",description:"Anjali Desai is a yoga instructor and wellness advocate with over 8 years of experience. Her articles focus on the mental and physical benefits of yoga, mindfulness, and meditation, aimed at helping readers achieve a balanced life.",meta_title:"Anjali Desai - Yoga Instructor & Wellness Advocate at ZealShift",meta_description:"Learn about yoga, mindfulness, and holistic health from Anjali Desai, our esteemed yoga instructor and wellness advocate at ZealShift."},{name:"Rajesh Kumar",description:"Rajesh Kumar is a wellness journalist and fitness enthusiast who has covered wellness trends and fitness innovations for over 12 years. He integrates the latest research with practical advice to empower readers on their health journeys.",meta_title:"Rajesh Kumar - Wellness Journalist at ZealShift",meta_description:"Stay informed with Rajesh Kumar, our wellness journalist at ZealShift, as he brings you the latest trends, tips, and research in health and fitness."},{name:"Shruti Iyer",description:"Shruti Iyer is a health coach and lifestyle blogger specializing in fitness for busy professionals. With a focus on time-efficient workouts and nutrition, she provides practical strategies to incorporate health into everyday life.",meta_title:"Shruti Iyer - Health Coach & Lifestyle Blogger at ZealShift",meta_description:"Explore health and fitness strategies for busy lives from Shruti Iyer, a dedicated health coach and lifestyle blogger at ZealShift."},{name:"Vikram Sethi",description:"Vikram Sethi is a leading sports nutritionist and strength coach in India, known for his evidence-based approach to diet and exercise. With years of experience in optimizing athletic performance, he is passionate about educating others on healthy practices.",meta_title:"Vikram Sethi - Sports Nutritionist & Strength Coach at ZealShift",meta_description:"Enhance your athletic performance with expert advice from Vikram Sethi, our sports nutritionist and strength coach at ZealShift."},{name:"Nisha Verma",description:"Nisha Verma is a fitness writer and health journalist with expertise in women’s health and fitness. She focuses on empowering women through informative articles about nutrition, workouts, and mental well-being.",meta_title:"Nisha Verma - Fitness Writer & Health Journalist at ZealShift",meta_description:"Empower your fitness journey with insights from Nisha Verma, our fitness writer and health journalist at ZealShift, specializing in women’s health."},{name:"Puneet Malhotra",description:"Puneet Malhotra is a physical therapist and rehabilitation specialist with a rich background in injury recovery and prevention. His articles offer readers expert advice on maintaining physical health and preventing injuries during workouts.",meta_title:"Puneet Malhotra - Physical Therapist & Rehabilitation Specialist at ZealShift",meta_description:"Learn about injury prevention and recovery with Puneet Malhotra, our physical therapist and rehabilitation specialist at ZealShift."},{name:"Simran Kaur",description:"Simran Kaur is a Pilates instructor and wellness educator with a focus on mindful movement. In her articles, she discusses the integration of Pilates into daily fitness routines for better posture, flexibility, and overall well-being.",meta_title:"Simran Kaur - Pilates Instructor & Wellness Educator at ZealShift",meta_description:"Improve your fitness and wellness with insights from Simran Kaur, our Pilates instructor and wellness educator at ZealShift."},{name:"Aneesh Bhatia",description:"Aneesh Bhatia is a health and fitness blogger, specializing in functional training and healthy recipes. With a commitment to making health accessible and enjoyable, he provides readers with easy-to-follow fitness plans and nutritious meal ideas.",meta_title:"Aneesh Bhatia - Health & Fitness Blogger at ZealShift",meta_description:"Discover functional training and healthy recipes with Aneesh Bhatia, our dedicated health and fitness blogger at ZealShift."},{name:"Dr. Riya Sharma",description:"Dr. Riya Sharma is a certified nutritionist and wellness expert with over 10 years of experience in helping individuals achieve their health goals. She specializes in holistic health, emphasizing the importance of mental well-being alongside physical fitness.",meta_title:"Dr. Riya Sharma - Nutritionist and Wellness Expert | ZealShift",meta_description:"Explore insights from Dr. Riya Sharma, a seasoned nutritionist with a decade of experience in holistic health and wellness. Discover tips on nutrition and mental well-being on ZealShift."},{name:"Arjun Malhotra",description:"Arjun Malhotra is a fitness trainer and motivational speaker with a passion for promoting active lifestyles. With over 8 years in personal training, he has transformed the lives of countless individuals through customized fitness programs.",meta_title:"Arjun Malhotra - Fitness Trainer & Motivational Speaker | ZealShift",meta_description:"Join Arjun Malhotra, fitness trainer, and motivational speaker, as he provides expert advice on physical fitness and personal growth on ZealShift."},{name:"Neeta Kaur",description:"With a background in preventive medicine, Neeta Kaur is a health writer and advocate for healthy living. She has published numerous articles on lifestyle diseases and their prevention through diet and exercise.",meta_title:"Neeta Kaur - Health Writer & Preventive Medicine Advocate | ZealShift",meta_description:"Learn from Neeta Kaur, a dedicated health writer and preventive medicine advocate, sharing crucial insights on lifestyle improvements on ZealShift."},{name:"Rahul Gupta",description:"Rahul Gupta is a yoga instructor and mindfulness coach with over 12 years of experience. He teaches the integration of yoga into a fitness regimen, focusing on mental clarity, flexibility, and overall health.",meta_title:"Rahul Gupta - Yoga Instructor & Mindfulness Coach | ZealShift",meta_description:"Explore the wisdom of Rahul Gupta, a yoga instructor with 12 years of experience in promoting physical and mental well-being through yoga on ZealShift."},{name:"Priya Dhawan",description:"Priya Dhawan is an Ayurvedic practitioner and holistic health consultant, guiding clients towards balanced living through traditional Indian medicine principles. She has over 6 years of experience in the wellness industry.",meta_title:"Priya Dhawan - Ayurvedic Practitioner & Holistic Health Consultant | ZealShift",meta_description:"Discover the expertise of Priya Dhawan, an Ayurvedic practitioner dedicated to enhancing health through natural remedies and lifestyle adjustments on ZealShift."},{name:"Sagar Mehta",description:"Sagar Mehta is a personal trainer and fitness enthusiast with a specialization in strength training. His unique approach combines conventional and innovative techniques, making fitness fun and accessible.",meta_title:"Sagar Mehta - Personal Trainer & Strength Training Specialist | ZealShift",meta_description:"Meet Sagar Mehta, a personal trainer focused on innovative strength training methods aimed at achieving fitness goals effectively on ZealShift."},{name:"Anjali Verma",description:"Anjali Verma is a wellness blogger and health coach known for her engaging articles on mental wellness and nutrition. She aims to empower readers to take charge of their health with practical advice.",meta_title:"Anjali Verma - Wellness Blogger & Health Coach | ZealShift",meta_description:"Follow Anjali Verma, a wellness blogger and health coach, for inspiring articles on mental well-being and practical nutrition tips on ZealShift."},{name:"Karan Singh",description:"Karan Singh is a dietitian and fitness expert who has worked with professional athletes and lifestyle clients. He focuses on personalized nutrition plans to enhance performance and overall health.",meta_title:"Karan Singh - Dietitian & Fitness Expert | ZealShift",meta_description:"Discover personalized nutrition strategies with Karan Singh, a dietitian and fitness expert dedicated to optimizing health and performance on ZealShift."},{name:"Simran Nair",description:"Simran Nair is a certified Pilates instructor and wellness advocate. She uses her platform to promote body positivity and the benefits of maintaining an active lifestyle for health.",meta_title:"Simran Nair - Certified Pilates Instructor & Wellness Advocate | ZealShift",meta_description:"Join Simran Nair, a certified Pilates instructor, as she shares insights on body positivity and the joys of an active lifestyle on ZealShift."},{name:"Amit Desai",description:"Amit Desai is an exercise physiologist with over 15 years of experience in working with diverse populations to improve their physical health through evidence-based practices.",meta_title:"Amit Desai - Exercise Physiologist & Health Advocate | ZealShift",meta_description:"Learn from Amit Desai, an exercise physiologist with 15 years of experience in enhancing health through tailored exercise programs on ZealShift."},{name:"Dr. Shikha Sharma",description:"Dr. Shikha Sharma is a renowned nutritionist and wellness expert with over 15 years of experience in the field of health and fitness. She has authored several books on healthy eating and wellness, and is a regular contributor to various health magazines. Her holistic approach to nutrition focuses on empowering individuals to lead healthier lives through informed dietary choices.",meta_title:"Dr. Shikha Sharma - Expert Nutritionist at ZealShift",meta_description:"Discover health insights and nutrition tips from Dr. Shikha Sharma, a leading nutritionist. Learn how to achieve your wellness goals with personalized advice and effective strategies."},{name:"Rajiv Mehta",description:"Rajiv Mehta is a certified fitness trainer and health coach with a passion for inspiring others to embrace an active lifestyle. With a background in sports science and over a decade of experience in personal training, he specializes in tailored workout plans and performance nutrition.",meta_title:"Rajiv Mehta - Fitness Trainer at ZealShift",meta_description:"Get motivated to achieve your fitness goals with Rajiv Mehta. Discover personalized workout regimes and expert advice on fitness and nutrition to transform your lifestyle."},{name:"Anjali Rao",description:"Anjali Rao is a yoga instructor and wellness writer with a deep understanding of holistic health practices. With over 8 years of experience in teaching yoga and mindfulness, she focuses on the mental and physical benefits of yoga, helping her readers cultivate balance and well-being in their lives.",meta_title:"Anjali Rao - Yoga and Wellness Expert at ZealShift",meta_description:"Join Anjali Rao on a journey of mindfulness and wellness through yoga. Explore the transformative power of yoga and its profound impacts on health and fitness."},{name:"Vikram Singh",description:"Vikram Singh is a health and fitness journalist with more than 10 years of experience in writing about wellness trends and lifestyle improvements. His expertise lies in evidence-based fitness practices and he is committed to educating readers about sustainable health habits.",meta_title:"Vikram Singh - Health Journalist at ZealShift",meta_description:"Stay informed with Vikram Singh's insights into health and fitness trends. Read expert articles designed to enhance your knowledge and help you navigate your wellness journey."},{name:"Nisha Patel",description:"Nisha Patel is a holistic health coach and author dedicated to transforming lives through natural approaches to wellness. With a focus on plant-based nutrition and stress management, she offers practical advice to promote a healthy lifestyle.",meta_title:"Nisha Patel - Holistic Health Coach at ZealShift",meta_description:"Embrace a healthier you with guidance from Nisha Patel. Explore plant-based nutrition and stress relief techniques that empower you to achieve optimal wellness."},{name:"Dr. Ramesh Choudhary",description:"Dr. Ramesh Choudhary is a physician and fitness enthusiast with years of experience in preventive health care. Specializing in chronic disease management, he writes about the intersection of traditional medicine and modern fitness strategies to enhance well-being.",meta_title:"Dr. Ramesh Choudhary - Physician and Fitness Advocate at ZealShift",meta_description:"Learn about health management and wellness from Dr. Ramesh Choudhary. Discover effective strategies for preventing chronic diseases through fitness and proactive care."},{name:"Meera Desai",description:"Meera Desai is a certified personal trainer and wellness blogger focusing on women’s health and fitness. With a background in kinesiology, she empowers women to achieve their fitness goals with confidence and informed choices.",meta_title:"Meera Desai - Women's Fitness Expert at ZealShift",meta_description:"Unlock your fitness potential with Meera Desai. Explore expert advice and workout plans tailored for women's health and wellness at ZealShift."},{name:"Aniket Joshi",description:"Aniket Joshi is a seasoned sports therapist and fitness writer dedicated to injury prevention and rehabilitation. With years of experience, he advocates for safe exercise practices and writes about the importance of recovery in any fitness journey.",meta_title:"Aniket Joshi - Sports Therapist at ZealShift",meta_description:"Stay active and injury-free with tips from Aniket Joshi. Discover how to incorporate safe practices into your fitness regimen for long-lasting health benefits."},{name:"Pooja Verma",description:"Pooja Verma is a wellness coach and nutrition blogger passionate about promoting mental health alongside physical fitness. With a psychology background, she emphasizes the importance of a healthy mindset for achieving overall wellness.",meta_title:"Pooja Verma - Wellness Coach at ZealShift",meta_description:"Transform your life with Pooja Verma's holistic approach to wellness. Learn how to balance mental health and fitness for a happier, healthier you."},{name:"Arvind Rao",description:"Arvind Rao is an innovative fitness influencer and content creator known for his engaging approach to fitness challenges and health tips. With a strong online presence, he motivates thousands to join the fitness revolution.",meta_title:"Arvind Rao - Fitness Influencer at ZealShift",meta_description:"Get inspired by Arvind Rao's dynamic fitness content. Join the community for tips, challenges, and resources to elevate your health and fitness journey."},{name:"Dr. Richa Sharma",description:"Dr. Richa Sharma is a renowned nutritionist and wellness coach with over 15 years of experience in guiding individuals towards healthier lifestyles. She holds a PhD in Nutritional Science and has worked with various fitness centers and health clinics across India. Her articles focus on nutrition tips, dietary plans, and holistic wellness.",meta_title:"Dr. Richa Sharma - Nutritionist and Wellness Coach at ZealShift",meta_description:"Explore expert nutrition advice and wellness insights from Dr. Richa Sharma, a leading nutritionist with over 15 years of experience. Join her on ZealShift for your health journey."},{name:"Neha Joshi",description:"Neha Joshi is a wellness blogger and yoga instructor with a deep commitment to mental and physical health. With her knowledge of Ayurvedic practices and modern fitness techniques, she has been helping individuals achieve balance in their lives for over 8 years. Her writings provide valuable insights into yoga, mindfulness, and stress management.",meta_title:"Neha Joshi - Wellness Blogger and Yoga Instructor at ZealShift",meta_description:"Discover yoga techniques and holistic wellness practices with Neha Joshi, a dedicated wellness blogger at ZealShift, aiming to inspire mental and physical harmony."},{name:"Amit Kapoor",description:"Amit Kapoor is a fitness entrepreneur and dietary expert with over 12 years in the health and fitness industry. He holds multiple certifications in sports nutrition and personal training. Amit focuses on educating readers about healthy eating habits and sustainable fitness routines through engaging articles.",meta_title:"Amit Kapoor - Dietary Expert and Fitness Entrepreneur at ZealShift",meta_description:"Learn about healthy eating and sustainable fitness practices with Amit Kapoor, a dietary expert and fitness entrepreneur sharing insights on ZealShift."},{name:"Pooja Nair",description:"Pooja Nair is a certified health coach and fitness writer dedicated to helping others achieve their fitness goals. With a background in sports science and over 5 years of coaching experience, she emphasizes the importance of mental resilience alongside physical training. Her articles cover various fitness modalities and mental wellness strategies.",meta_title:"Pooja Nair - Health Coach and Fitness Writer at ZealShift",meta_description:"Enhance your fitness journey with Pooja Nair, a certified health coach and fitness writer providing insights on mental resilience and physical training at ZealShift."},{name:"Tanvi Desai",description:"Tanvi Desai is a wellness advocate and fitness enthusiast, specializing in group fitness and healthy lifestyle education. With several fitness certifications and a decade of teaching experience, she inspires readers through her motivational articles on group dynamics and community fitness.",meta_title:"Tanvi Desai - Wellness Advocate and Group Fitness Instructor at ZealShift",meta_description:"Join Tanvi Desai on ZealShift for engaging articles on group fitness and healthy living, empowering you to embrace a healthier lifestyle together."},{name:"Karan Mehra",description:"Karan Mehra is a fitness blogger and outdoor adventure enthusiast with a strong focus on functional fitness training. Over the past 7 years, Karan has shared his journey of exploring the great outdoors while maintaining fitness, inspiring readers to incorporate nature into their routines.",meta_title:"Karan Mehra - Fitness Blogger and Outdoor Enthusiast at ZealShift",meta_description:"Discover the fusion of fitness and outdoor adventures with Karan Mehra, a passionate fitness blogger at ZealShift, inspiring a healthier lifestyle in nature."},{name:"Sonal Jain",description:"Sonal Jain is a holistic health practitioner with expertise in mindfulness and stress management. Through her work as a wellness speaker and writer, she aims to teach individuals how to balance busy lifestyles with self-care practices, sharing effective strategies through her articles.",meta_title:"Sonal Jain - Holistic Health Practitioner at ZealShift",meta_description:"Explore mindfulness and stress management tips with Sonal Jain, a holistic health practitioner dedicated to teaching self-care practices on ZealShift."},{name:"Dr. Sarah Thompson",description:"Dr. Sarah Thompson is a renowned nutritionist and wellness coach with over 15 years of experience in helping individuals achieve their health goals. She holds a PhD in Nutritional Science and is passionate about educating others on the importance of balanced diets and sustainable lifestyle changes.",meta_title:"Dr. Sarah Thompson - Expert Nutritionist and Wellness Coach",meta_description:"Explore the insights of Dr. Sarah Thompson, a leading nutritionist with over 15 years of experience in health and wellness. Discover tips and articles to enhance your health journey."},{name:"John Matthews",description:"John Matthews is a certified personal trainer and fitness enthusiast who has dedicated his career to empowering others through fitness. With a decade of experience in various fitness methodologies, he specializes in personalized workout regimens and motivational coaching.",meta_title:"John Matthews - Certified Personal Trainer and Fitness Expert",meta_description:"Join John Matthews, a certified personal trainer with 10 years of experience, as he shares fitness tips and workout regimens to help you stay fit and motivated."},{name:"Emily Carter",description:"Emily Carter is a wellness blogger and yoga instructor who combines her passion for mindfulness and fitness to promote holistic health. With an extensive background in mental health awareness, she focuses on the importance of mental well-being in achieving overall health.",meta_title:"Emily Carter - Wellness Blogger and Yoga Instructor",meta_description:"Discover holistic health insights from Emily Carter, a wellness blogger and yoga instructor emphasizing the link between mental wellness and physical health."},{name:"Dr. David Ng",description:"Dr. David Ng is a sports medicine physician with over 20 years of experience in treating sports-related injuries. He is dedicated to promoting safe exercise practices and rehabilitation techniques to enhance athletic performance.",meta_title:"Dr. David Ng - Sports Medicine Physician and Injury Specialist",meta_description:"Learn from Dr. David Ng, a sports medicine expert with 20 years of experience in treating sports injuries and enhancing athletic performance through safe practices."},{name:"Laura Jenkins",description:"Laura Jenkins is a lifestyle coach and author specializing in weight loss and healthy living. Her approachable style and practical advice have helped thousands of clients make lasting lifestyle changes.",meta_title:"Laura Jenkins - Lifestyle Coach and Weight Loss Specialist",meta_description:"Transform your life with insights from Laura Jenkins, a lifestyle coach dedicated to helping others achieve weight loss and healthy living with practical advice."},{name:"Michael Rivera",description:"Michael Rivera is a fitness writer and outdoor adventure specialist. He focuses on combining fitness with outdoor activities, encouraging readers to embrace nature in their health and wellness journey.",meta_title:"Michael Rivera - Fitness Writer and Outdoor Enthusiast",meta_description:"Join Michael Rivera, a fitness writer, as he combines health tips with outdoor adventure, helping you discover the joys of fitness in nature."},{name:"Anita Singh",description:"Anita Singh is a holistic health practitioner, specializing in herbal medicine and nutritional therapy. Her expertise lies in natural remedies and educating others on how to enhance their health without reliance on pharmaceuticals.",meta_title:"Anita Singh - Holistic Health Practitioner and Herbalist",meta_description:"Explore natural health solutions with Anita Singh, a holistic health practitioner specializing in herbal medicine and nutritional therapy for optimal wellness."},{name:"Tom Baker",description:"Tom Baker is a fitness coach and motivational speaker with a knack for inspiring others to break through their limitations. He emphasizes mental strength along with physical fitness essentials, guiding readers through their fitness journeys.",meta_title:"Tom Baker - Fitness Coach and Motivational Speaker",meta_description:"Get inspired by Tom Baker, a fitness coach who motivates others to break limits and embrace fitness with mental strength and resilience."},{name:"Rachel Miller",description:"Rachel Miller is a certified health coach specializing in plant-based diets and healthy recipes. With a passion for cooking and wellness, she shares nutritious meal ideas that are easy to prepare and delicious.",meta_title:"Rachel Miller - Health Coach and Plant-Based Recipe Expert",meta_description:"Dive into healthy living with Rachel Miller, a certified health coach sharing delicious plant-based recipes and tips for nutritious meal planning."},{name:"Andrew Lee",description:"Andrew Lee is a fitness and wellness influencer who shares practical fitness tips and health advice through his blog and social media platforms. He is known for his engaging content that simplifies complex health concepts for his audience.",meta_title:"Andrew Lee - Fitness Influencer and Wellness Advocate",meta_description:"Follow Andrew Lee, a fitness influencer dedicated to simplifying health and wellness concepts, offering practical tips and engaging content for a healthier lifestyle."},{name:"Dr. Emily Carter",description:"Dr. Emily Carter is a leading health and wellness expert with over a decade of experience in nutrition and exercise science. She holds a PhD in Public Health and has contributed to numerous health publications. Passionate about holistic health, Dr. Carter emphasizes the importance of balance and mental well-being alongside physical fitness.",meta_title:"Dr. Emily Carter - Expert in Health and Wellness | ZealShift",meta_description:"Discover insights from Dr. Emily Carter, a holistic health expert with a PhD in Public Health. Learn about nutrition, fitness, and mental wellness on ZealShift."},{name:"Mark Thompson",description:"Mark Thompson is a certified personal trainer and nutrition coach with over 8 years of experience in the fitness industry. He has worked with clients from various backgrounds and focuses on personalized fitness plans and healthy eating habits to help individuals achieve their body goals sustainably.",meta_title:"Mark Thompson - Fitness Trainer and Nutrition Coach | ZealShift",meta_description:"Get fitness tips and nutrition advice from Mark Thompson, a certified personal trainer with 8+ years of experience. Start achieving your health goals with ZealShift."},{name:"Sandra Lee",description:"Sandra Lee is a renowned fitness influencer and author specializing in yoga and mindfulness techniques. With a unique approach that combines physical fitness with mental clarity, she inspires her readers to live a balanced life through various wellness techniques and fitness routines.",meta_title:"Sandra Lee - Yoga Expert and Wellness Influencer | ZealShift",meta_description:"Explore yoga and mindfulness insights with Sandra Lee, a wellness influencer dedicated to promoting balanced living through fitness. Join her journey at ZealShift."},{name:"Dr. David Patel",description:"Dr. David Patel is a sports medicine physician with over 15 years of experience treating athletes. His passion for improving performance through injury prevention and rehabilitation has made him a sought-after expert in the health and fitness community.",meta_title:"Dr. David Patel - Sports Medicine Expert | ZealShift",meta_description:"Learn from Dr. David Patel, a sports medicine specialist with extensive experience in athlete care and performance. Get expert advice on ZealShift."},{name:"Jessica Nguyen",description:"Jessica Nguyen is a holistic health coach and fitness blogger who emphasizes the importance of emotional and physical health. With certifications in integrative health and fitness coaching, she helps clients navigate their journeys towards wellness with compassion and knowledge.",meta_title:"Jessica Nguyen - Holistic Health Coach | ZealShift",meta_description:"Join Jessica Nguyen on a journey to holistic wellness. Discover health coaching tips and fitness advice to enhance your life at ZealShift."},{name:"Tom Reynolds",description:"Tom Reynolds is a fitness entrepreneur and author known for his engaging and motivating writing style. He has released several best-selling fitness books and educates readers on body transformation and lifestyle changes using practical and evidence-based methods.",meta_title:"Tom Reynolds - Fitness Author and Entrepreneur | ZealShift",meta_description:"Dive into fitness transformation with insights from Tom Reynolds, a best-selling author and entrepreneur. Achieve your goals with practical tips on ZealShift."},{name:"Helen Smith",description:"Helen Smith is a clinical nutritionist and fitness advocate dedicated to promoting healthy eating habits. With over 12 years of experience, she provides evidence-based nutritional advice and easy-to-follow meal plans that empower individuals to incorporate nutritious foods into their everyday lives.",meta_title:"Helen Smith - Clinical Nutritionist and Fitness Advocate | ZealShift",meta_description:"Find nutritional guidance and healthy recipes from Helen Smith, a clinical nutritionist with 12+ years of experience, on ZealShift."},{name:"Ryan Baker",description:"Ryan Baker is a functional fitness trainer and wellness writer, known for his innovative training techniques. With a strong background in biomechanics and sports science, Ryan designs workouts that promote functional strength and injury prevention while educating readers on the science behind fitness.",meta_title:"Ryan Baker - Functional Fitness Trainer | ZealShift",meta_description:"Experience innovative training techniques from Ryan Baker, a functional fitness expert. Enhance your workouts and learn the science of fitness on ZealShift."},{name:"Laura Martinez",description:"Laura Martinez is a mental health advocate and fitness coach who integrates mental health practices into physical training. With a background in psychology and counseling, she emphasizes the importance of mental resilience in achieving fitness goals.",meta_title:"Laura Martinez - Mental Health Advocate and Fitness Coach | ZealShift",meta_description:"Explore the connection between mental health and fitness with Laura Martinez, a coach dedicated to promoting resilience in your wellness journey at ZealShift."},{name:"Chris Zhou",description:"Chris Zhou is a renowned expert in functional nutrition and advanced personal training. With certifications in sports nutrition and corrective exercise, Chris focuses on helping clients achieve their goals through tailored fitness plans and nutritional guidance.",meta_title:"Chris Zhou - Functional Nutrition Expert | ZealShift",meta_description:"Unlock your fitness potential with Chris Zhou, a functional nutrition expert and personal trainer. Discover personalized health strategies at ZealShift."}],t=a.reduce(((e,i)=>Object.assign(Object.assign({},e),{[i.name]:{title:i.meta_title,description:i.meta_description}})),{});exports.AUTHORS_INFO=a,exports.AUTHORS_META=t,exports.PAGES_SEO=i;
@@ -0,0 +1 @@
1
+ :root{--gray-4-a:rgba(0,0,0,0.45);--text-secondary:rgba(0,0,0,0.65);--text-primary:rgba(0,0,0,0.88);--border-color-border-secondary:#F0F0F0;--background-color-bg-base:#FFF;}
@@ -0,0 +1 @@
1
+ :root{--font-size-xx-small:0.625rem;--font-size-x-small:0.75rem;--font-size-small:0.875rem;--font-size-medium:1rem;--font-size-large:1.25rem;--font-size-x-large:1.5rem;--font-size-xx-large:2rem;--h1-font-size:38px;--h1-line-height:46px;--h2-font-size:30px;--h2-line-height:38px;--h3-font-size:24px;--h3-line-height:32px;--h4-font-size:20px;--h4-line-height:28px;--h5-font-size:16px;--h5-line-height:24px;}
@@ -0,0 +1 @@
1
+ html,body,#root {height:100%;width:100%;}body {display:flex;flex-direction:column;align-items:center;margin:0;padding:0;background-color:var(--background-color-bg-base);}#___gatsby {width:100%;}.ant-app {height:100%;}.ant-dropdown-menu,.ant-select-dropdown,.ant-select-selector,.ant-popover-inner {border-radius:8px!important;}
@@ -0,0 +1 @@
1
+ :root{--gap-lg:24px;--gap-md:16px;--gap-sm:12px;--gap-xs:8px;--gap-xss:4px;--padding-lg:24px;--padding-md:16px;--padding-sm:12px;--padding-xs:8px;--padding-xss:4px;--margin-hg:36px;--margin-lg:24px;--margin-md:16px;--margin-sm:12px;--margin-xs:8px;--margin-xss:4px;}
@@ -0,0 +1 @@
1
+ :root {--theme-color-9:#0b3d29;--theme-color-8:#0d602e;--theme-color-7:#0f7a34;--theme-color-6:#15a82d;--theme-color-5:#35c740;--theme-color-3:#a8e0a8;--theme-color-2:#d1ecd1;--color-bg-layout:#ffffff;--color-bg-hover:#eaeae8;--article-border-radius:20px;--btn-border-radius:8px;--category-border-radius:25px;}
@@ -0,0 +1 @@
1
+ @import "sizing.css";@import "colors.css";@import "fonts.css";@import "theme.css";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tedo-publisher",
3
- "version": "1.3.256",
3
+ "version": "1.3.257",
4
4
  "description": "Package for config files and reusable code/components between projects",
5
5
  "main": "dist/index.js",
6
6
  "files": [