tedo-publisher 1.3.256 → 1.3.258

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. package/dist/quantafitness/data.d.ts +138 -0
  2. package/dist/quantafitness/data.js +1 -0
  3. package/dist/quantafitness/filters.d.ts +28 -0
  4. package/dist/quantafitness/filters.js +1 -0
  5. package/dist/quantafitness/helpers.d.ts +3 -0
  6. package/dist/quantafitness/helpers.js +1 -0
  7. package/dist/quantafitness/index.d.ts +15 -0
  8. package/dist/quantafitness/index.js +1 -0
  9. package/dist/quantafitness/prompts/data.d.ts +7 -0
  10. package/dist/quantafitness/prompts/data.js +1 -0
  11. package/dist/quantafitness/prompts/gpt35turbo/articles.d.ts +6 -0
  12. package/dist/quantafitness/prompts/gpt35turbo/articles.js +1 -0
  13. package/dist/quantafitness/prompts/gpt4oMini/articles.d.ts +6 -0
  14. package/dist/quantafitness/prompts/gpt4oMini/articles.js +1 -0
  15. package/dist/quantafitness/prompts/images.d.ts +4 -0
  16. package/dist/quantafitness/prompts/images.js +1 -0
  17. package/dist/quantafitness/seo.d.ts +23 -0
  18. package/dist/quantafitness/seo.js +1 -0
  19. package/dist/quantafitness/styles/colors.css +1 -0
  20. package/dist/quantafitness/styles/fonts.css +1 -0
  21. package/dist/quantafitness/styles/global.css +1 -0
  22. package/dist/quantafitness/styles/sizing.css +1 -0
  23. package/dist/quantafitness/styles/theme.css +1 -0
  24. package/dist/quantafitness/styles/vars.css +1 -0
  25. package/dist/zealshift/data.d.ts +309 -0
  26. package/dist/zealshift/data.js +1 -0
  27. package/dist/zealshift/filters.d.ts +28 -0
  28. package/dist/zealshift/filters.js +1 -0
  29. package/dist/zealshift/helpers.d.ts +3 -0
  30. package/dist/zealshift/helpers.js +1 -0
  31. package/dist/zealshift/index.d.ts +15 -0
  32. package/dist/zealshift/index.js +1 -0
  33. package/dist/zealshift/prompts/data.d.ts +7 -0
  34. package/dist/zealshift/prompts/data.js +1 -0
  35. package/dist/zealshift/prompts/gpt35turbo/articles.d.ts +6 -0
  36. package/dist/zealshift/prompts/gpt35turbo/articles.js +1 -0
  37. package/dist/zealshift/prompts/gpt4oMini/articles.d.ts +6 -0
  38. package/dist/zealshift/prompts/gpt4oMini/articles.js +1 -0
  39. package/dist/zealshift/prompts/images.d.ts +4 -0
  40. package/dist/zealshift/prompts/images.js +1 -0
  41. package/dist/zealshift/seo.d.ts +23 -0
  42. package/dist/zealshift/seo.js +1 -0
  43. package/dist/zealshift/styles/colors.css +1 -0
  44. package/dist/zealshift/styles/fonts.css +1 -0
  45. package/dist/zealshift/styles/global.css +1 -0
  46. package/dist/zealshift/styles/sizing.css +1 -0
  47. package/dist/zealshift/styles/theme.css +1 -0
  48. package/dist/zealshift/styles/vars.css +1 -0
  49. package/package.json +1 -1
@@ -0,0 +1,138 @@
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
+ mealPlanning: {
14
+ title: string;
15
+ description: string;
16
+ slug: string;
17
+ children: null;
18
+ };
19
+ nutritionalSupplements: {
20
+ title: string;
21
+ description: string;
22
+ slug: string;
23
+ children: null;
24
+ };
25
+ other: {
26
+ title: string;
27
+ description: string;
28
+ slug: string;
29
+ children: null;
30
+ };
31
+ };
32
+ };
33
+ fitnessRoutines: {
34
+ title: string;
35
+ description: string;
36
+ slug: string;
37
+ children: {
38
+ strengthTraining: {
39
+ title: string;
40
+ description: string;
41
+ slug: string;
42
+ children: null;
43
+ };
44
+ cardioWorkouts: {
45
+ title: string;
46
+ description: string;
47
+ slug: string;
48
+ children: null;
49
+ };
50
+ flexibilityExercises: {
51
+ title: string;
52
+ description: string;
53
+ slug: string;
54
+ children: null;
55
+ };
56
+ other: {
57
+ title: string;
58
+ description: string;
59
+ slug: string;
60
+ children: null;
61
+ };
62
+ };
63
+ };
64
+ mentalWellness: {
65
+ title: string;
66
+ description: string;
67
+ slug: string;
68
+ children: {
69
+ stressManagement: {
70
+ title: string;
71
+ description: string;
72
+ slug: string;
73
+ children: null;
74
+ };
75
+ mindfulnessPractices: {
76
+ title: string;
77
+ description: string;
78
+ slug: string;
79
+ children: null;
80
+ };
81
+ sleepHygiene: {
82
+ title: string;
83
+ description: string;
84
+ slug: string;
85
+ children: null;
86
+ };
87
+ other: {
88
+ title: string;
89
+ description: string;
90
+ slug: string;
91
+ children: null;
92
+ };
93
+ };
94
+ };
95
+ lifestyleChanges: {
96
+ title: string;
97
+ description: string;
98
+ slug: string;
99
+ children: {
100
+ habitFormation: {
101
+ title: string;
102
+ description: string;
103
+ slug: string;
104
+ children: null;
105
+ };
106
+ goalSetting: {
107
+ title: string;
108
+ description: string;
109
+ slug: string;
110
+ children: null;
111
+ };
112
+ workLifeBalance: {
113
+ title: string;
114
+ description: string;
115
+ slug: string;
116
+ children: null;
117
+ };
118
+ other: {
119
+ title: string;
120
+ description: string;
121
+ slug: string;
122
+ children: null;
123
+ };
124
+ };
125
+ };
126
+ };
127
+ export declare const authors: Record<string, string>;
128
+ export declare const authorsNames: string[];
129
+ export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83D\uDCAA\uD83C\uDFC3\u200D\u2640\uFE0F\uD83C\uDF4F\uD83D\uDCDA";
130
+ export declare const categories: ("mentalWellness" | "nutrition" | "fitnessRoutines" | "lifestyleChanges")[];
131
+ export declare const subcategories: string[];
132
+ export declare const subsubcategories: string[];
133
+ export type Category = keyof typeof dataStructure;
134
+ export type CategoryNode = (typeof dataStructure)[Category];
135
+ export type SubcategoryKeyByCategory<T extends Category> = (typeof dataStructure)[T]['children'];
136
+ export declare const startDate = "2024-09-12T00:00:00Z";
137
+ export declare const devBucketName = "idn-quantafitness-dev";
138
+ export declare const prodBucketName = "idn-quantafitness";
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./seo.js");const t={nutrition:{title:"Nutrition: Fuel Your Body for Optimal Health 🌿",description:"Explore essential nutrition topics at QuantaFitness, from healthy eating to meal planning and supplements. Empower your health journey! 🍏",slug:"nutrition",children:{healthyEating:{title:"Healthy Eating: Nourish Your Body with Wholesome Foods 🥗",description:"Discover tips on healthy eating that will transform your diet. Learn about wholesome ingredients for better nutrition and a happier life! 🌟",slug:"healthy-eating",children:null},mealPlanning:{title:"Meal Planning: Organize Your Meals for Success 📅",description:"Master meal planning with our expert tips and strategies. Create nutritious weekly menus to simplify your cooking and enhance your health! 🍽️",slug:"meal-planning",children:null},nutritionalSupplements:{title:"Nutritional Supplements: Boost Your Health the Smart Way 💊",description:"Explore the world of nutritional supplements. Uncover their benefits, types, and how to choose the right ones for your health needs! 🔍",slug:"nutritional-supplements",children:null},other:{title:"Other Nutrition Topics: Expand Your Knowledge 📖",description:"Delve into a variety of other nutrition topics that support your health journey. Stay informed for a balanced diet and lifestyle choices! 🌈",slug:"other-nutrition-topics",children:null}}},fitnessRoutines:{title:"Explore Effective Fitness Routines for a Healthier You 🏋️‍♀️",description:"Discover a variety of fitness routines tailored to boost your health and fitness journey. From strength training to flexibility exercises, get inspired! 💪",slug:"fitness-routines",children:{strengthTraining:{title:"Strength Training: Build Muscle and Increase Strength 💪",description:"Unleash your potential with our strength training routines designed to enhance muscle growth and overall strength. Perfect for all fitness levels! 🏋️‍♂️",slug:"strength-training",children:null},cardioWorkouts:{title:"Cardio Workouts: Boost Heart Health and Endurance ❤️",description:"Elevate your heart health with effective cardio workouts! Find fun routines that will keep you active and energized for a healthier lifestyle. 🏃‍♀️",slug:"cardio-workouts",children:null},flexibilityExercises:{title:"Flexibility Exercises: Increase Mobility and Relaxation 🤸‍♂️",description:"Enhance your flexibility and promote relaxation with our carefully curated exercises. Discover routines that help you move freely and feel great! 🌟",slug:"flexibility-exercises",children:null},other:{title:"Other Fitness Routines: Explore Varied Workouts 🌈",description:"Dive into a collection of unique fitness routines beyond the norm. Discover exciting ways to stay fit and enjoy your workouts! 🚴‍♀️",slug:"other-fitness-routines",children:null}}},mentalWellness:{title:"Mental Wellness: Nurture Your Mind for a Healthier Life 🧠",description:"Discover practical strategies and insights on mental wellness to enhance your well-being and lead a healthier life. Explore tips on stress, mindfulness, and sleep! 🌟",slug:"mental-wellness",children:{stressManagement:{title:"Stress Management: Mastering Your Mind for Peace ☮️",description:"Learn effective stress management techniques to reduce anxiety and cultivate a peaceful mind. Empower yourself with proven strategies for a calmer life! 💆🏽‍♂️",slug:"stress-management",children:null},mindfulnessPractices:{title:"Mindfulness Practices: Enhance Your Daily Living 🌼",description:"Explore mindfulness practices to elevate your daily life. Discover techniques that promote presence and enhance mental clarity for ultimate mental wellness! 🧘‍♀️",slug:"mindfulness-practices",children:null},sleepHygiene:{title:"Sleep Hygiene: Unlock Your Best Restful Nights 💤",description:"Uncover the secrets of sleep hygiene to enjoy restful nights and refreshed mornings. Improve your sleep quality with these essential guidelines for better health! 🌙",slug:"sleep-hygiene",children:null},other:{title:"Other Mental Wellness Insights: Expand Your Mind's Horizons 📚",description:"Delve into diverse mental wellness insights that enrich your understanding and enhance your emotional well-being. Explore unique strategies for personal growth! 🌈",slug:"other-mental-wellness-insights",children:null}}},lifestyleChanges:{title:"Transform Your Life: Embrace Lifestyle Changes for Better Health 🌟",description:"Explore essential lifestyle changes that promote health and well-being. Discover how small adjustments can lead to a healthier, happier you! 🌱",slug:"lifestyle-changes",children:{habitFormation:{title:"Master Habit Formation: Build Routines for a Healthier You 🧘‍♂️",description:"Learn effective strategies for habit formation that lead to sustainable health improvements. Unlock your potential with actionable tips! 🔑",slug:"habit-formation",children:null},goalSetting:{title:"Effective Goal Setting: Achieve Your Health and Fitness Dreams 🎯",description:"Discover techniques for setting achievable health and fitness goals. Turn your aspirations into reality with our expert advice and tips! 🏆",slug:"goal-setting",children:null},workLifeBalance:{title:"Achieve Work-Life Balance: Prioritize Health and Happiness ⚖️",description:"Explore practical ideas for enhancing work-life balance. Prioritize your health without sacrificing career success with our insightful articles! 🌈",slug:"work-life-balance",children:null},other:{title:"Other Lifestyle Changes: Unique Tips for a Healthier Life 🌍",description:"Uncover other impactful lifestyle changes that can elevate your health. From nutrition to creativity, find inspiration for healthier living! 🌻",slug:"other-lifestyle-changes",children:null}}}},i=e.AUTHORS_INFO.reduce(((e,t)=>Object.assign(Object.assign({},e),{[t.name]:[t.description]})),{}),n=e.AUTHORS_INFO.map((e=>e.name)),r="💪🏃‍♀️🍏📚",s=Object.keys(t),l=[],o=[];for(const e of s){const i=t[e];if(null==i?void 0:i.children){l.push(...Object.keys(i.children));for(const e of l){const t=i.children[e];(null==t?void 0:t.children)&&o.push(...Object.keys(t.children))}}}const a="2024-09-12T00:00:00Z",u="quantafitness",h=`idn-${u}-dev`,c=`idn-${u}`;exports.DEFAULT_DESCRIPTION_EMOJIS=r,exports.authors=i,exports.authorsNames=n,exports.categories=s,exports.dataStructure=t,exports.devBucketName=h,exports.prodBucketName=c,exports.startDate=a,exports.subcategories=l,exports.subsubcategories=o;
@@ -0,0 +1,28 @@
1
+ export declare enum FiltersNames {
2
+ WellnessFocus = "Wellness Focus",
3
+ FitnessLevel = "Fitness Level",
4
+ ActivityType = "Activity Type",
5
+ NutritionalNeeds = "Nutritional Needs",
6
+ LifeStage = "Life Stage"
7
+ }
8
+ type WellnessFocusValues = 'Mental Health' | 'Nutrition Tips' | 'Stress Management' | 'Holistic Health' | 'Mindfulness Practices';
9
+ type FitnessLevelValues = 'Beginner' | 'Intermediate' | 'Advanced' | 'Expert' | 'All Levels';
10
+ type ActivityTypeValues = 'Strength Training' | 'Cardio Workouts' | 'Flexibility Exercises' | 'Outdoor Activities' | 'At-Home Workouts';
11
+ type NutritionalNeedsValues = 'Weight Loss' | 'Muscle Gain' | 'Balanced Diet' | 'Meal Prep Ideas' | 'Dietary Restrictions';
12
+ type LifeStageValues = 'Young Adults' | 'Working Professionals' | 'Parents' | 'Seniors' | 'Fitness Trainers';
13
+ export type ArticleFilters = {
14
+ [FiltersNames.WellnessFocus]: WellnessFocusValues[];
15
+ [FiltersNames.FitnessLevel]: FitnessLevelValues[];
16
+ [FiltersNames.ActivityType]: ActivityTypeValues[];
17
+ [FiltersNames.NutritionalNeeds]: NutritionalNeedsValues[];
18
+ [FiltersNames.LifeStage]: LifeStageValues[];
19
+ };
20
+ export declare const wellnessFocusValues: WellnessFocusValues[];
21
+ export declare const fitnessLevelValues: FitnessLevelValues[];
22
+ export declare const activityTypeValues: ActivityTypeValues[];
23
+ export declare const nutritionalNeedsValues: NutritionalNeedsValues[];
24
+ export declare const lifeStageValues: LifeStageValues[];
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.ActivityType="Activity Type",e.NutritionalNeeds="Nutritional Needs",e.LifeStage="Life Stage";const s=["Mental Health","Nutrition Tips","Stress Management","Holistic Health","Mindfulness Practices"],t=["Beginner","Intermediate","Advanced","Expert","All Levels"],i=["Strength Training","Cardio Workouts","Flexibility Exercises","Outdoor Activities","At-Home Workouts"],r=["Weight Loss","Muscle Gain","Balanced Diet","Meal Prep Ideas","Dietary Restrictions"],l=["Young Adults","Working Professionals","Parents","Seniors","Fitness Trainers"],a={[exports.FiltersNames.WellnessFocus]:[],[exports.FiltersNames.FitnessLevel]:[],[exports.FiltersNames.ActivityType]:[],[exports.FiltersNames.NutritionalNeeds]:[],[exports.FiltersNames.LifeStage]:[]},o={[exports.FiltersNames.WellnessFocus]:s,[exports.FiltersNames.FitnessLevel]:t,[exports.FiltersNames.ActivityType]:i,[exports.FiltersNames.NutritionalNeeds]:r,[exports.FiltersNames.LifeStage]:l},n=()=>JSON.stringify(o,null,2);exports.activityTypeValues=i,exports.fitnessLevelValues=t,exports.fullFilters=o,exports.getFiltersTypesJSON=n,exports.initialFilters=a,exports.lifeStageValues=l,exports.nutritionalNeedsValues=r,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.activityTypeValues=t.activityTypeValues,exports.fitnessLevelValues=t.fitnessLevelValues,exports.fullFilters=t.fullFilters,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.initialFilters=t.initialFilters,exports.lifeStageValues=t.lifeStageValues,exports.nutritionalNeedsValues=t.nutritionalNeedsValues,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: QuantaFitness is a comprehensive infotainment portal dedicated to health and fitness, offering insightful articles, tips, and resources that empower individuals to lead healthier lives.\n - Detailed description: QuantaFitness serves as a valuable online resource for anyone looking to improve their health and well-being. The portal features a wide range of articles covering various topics such as nutrition, exercise routines, mental wellness, and lifestyle changes. Each piece is meticulously crafted to provide readers with accurate, research-backed information presented in an engaging way. QuantaFitness aims to demystify health and fitness concepts, making them accessible to everyone, regardless of their current health level. The platform encourages readers to take actionable steps towards their fitness goals, offering practical advice and motivational content to keep them inspired on their journey.\n - Target audience: The primary target audience for QuantaFitness includes health-conscious individuals ranging from beginners to fitness enthusiasts who seek reliable information to enhance their lifestyle. This audience may consist of young adults, working professionals, parents, and older individuals who are interested in maintaining or improving their health. Additionally, fitness trainers and health coaches looking for resources to support their clients can also benefit from the content provided by QuantaFitness.\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## Key Takeaways\n - Summary of the main points discussed\n - Actionable insights for readers\n\n## In-Depth Analysis\n - Detailed explanation of the topic\n - Relevant scientific studies or evidence\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 - Key Takeaways, 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: QuantaFitness is a comprehensive infotainment portal dedicated to health and fitness, offering insightful articles, tips, and resources that empower individuals to lead healthier lives.\n - Detailed description: QuantaFitness serves as a valuable online resource for anyone looking to improve their health and well-being. The portal features a wide range of articles covering various topics such as nutrition, exercise routines, mental wellness, and lifestyle changes. Each piece is meticulously crafted to provide readers with accurate, research-backed information presented in an engaging way. QuantaFitness aims to demystify health and fitness concepts, making them accessible to everyone, regardless of their current health level. The platform encourages readers to take actionable steps towards their fitness goals, offering practical advice and motivational content to keep them inspired on their journey.\n - Target audience: The primary target audience for QuantaFitness includes health-conscious individuals ranging from beginners to fitness enthusiasts who seek reliable information to enhance their lifestyle. This audience may consist of young adults, working professionals, parents, and older individuals who are interested in maintaining or improving their health. Additionally, fitness trainers and health coaches looking for resources to support their clients can also benefit from the content provided by QuantaFitness.\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## Key Takeaways\n - Summary of the main points discussed\n - Actionable insights for readers\n\n## In-Depth Analysis\n - Detailed explanation of the topic\n - Relevant scientific studies or evidence\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 - Key Takeaways, 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",r="any numbers, image, slug, step, seo, hand / hands, men, women, human, people, chief, preparing, process, cooking, mixing, serving, tasting, rolling",o=`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=o,exports.IMAGES_PROHIBITED_WORDS=r,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 Team | QuantaFitness",description:"Discover the passionate minds behind QuantaFitness! 🌟 Our expert authors are dedicated to bringing you health and fitness insights. Join us on this journey to better health! 💪"},[exports.PageNames.Home]:{title:"Welcome to QuantaFitness | Your Health & Fitness Portal",description:"Explore a world of health and fitness at QuantaFitness! 🏋️‍♀️ Get tips, recipes, and guides to help you achieve your wellness goals. Start your journey today! 🌈"},[exports.PageNames.NotFound]:{title:"Page Not Found | QuantaFitness",description:"Oops! 🚫 We couldn't find the page you were looking for. But don't worry, explore our home page for amazing health and fitness content! 🌟"},[exports.PageNames.AboutUs]:{title:"About QuantaFitness | Your Health Companion",description:"Learn all about QuantaFitness! 💖 We're dedicated to empowering you with the knowledge and tools for a healthier lifestyle. Join our community today! 🌱"},[exports.PageNames.PrivacyPolicy]:{title:"Privacy Policy | QuantaFitness",description:"Your privacy matters! 🔒 Read QuantaFitness's Privacy Policy to understand how we protect your information while you focus on health and wellness. 📋"},[exports.PageNames.Terms]:{title:"Terms and Conditions | QuantaFitness",description:"Understand your rights and responsibilities with QuantaFitness. ⚖️ Review our Terms and Conditions for a seamless health and fitness journey. 📚"},[exports.PageNames.Sitemap]:{title:"Sitemap | QuantaFitness",description:"Navigate effortlessly through QuantaFitness! 🗺️ Check our Sitemap to find articles and resources to guide you on your health journey. 🌟"}},a=[{name:"Dr. Ramesh Kumar",description:"Dr. Ramesh Kumar is a renowned health expert with over 15 years of experience in nutrition and lifestyle management. He holds a Ph.D. in Nutritional Science and has contributed to numerous peer-reviewed journals focusing on holistic wellness. Dr. Kumar is passionate about empowering individuals through personalized health strategies.",meta_title:"Dr. Ramesh Kumar - Nutrition Expert at QuantaFitness",meta_description:"Discover insights from Dr. Ramesh Kumar, a respected figure in nutrition and lifestyle management with 15+ years of experience. Explore healthy living tips tailored to your needs."},{name:"Priya Sharma",description:"Priya Sharma is a fitness trainer and wellness coach with over 8 years of experience in the health and fitness industry. She specializes in functional fitness and has helped countless clients achieve their fitness goals through personalized training plans. Her expertise and motivational approach make her articles a must-read.",meta_title:"Priya Sharma - Fitness Trainer at QuantaFitness",meta_description:"Get inspired by Priya Sharma, a dynamic fitness trainer and wellness coach. With 8+ years of experience, she offers practical tips and guidance for achieving your fitness goals."},{name:"Dr. Anita Desai",description:"Dr. Anita Desai is a clinical psychologist specializing in lifestyle diseases and mental health. With a decade of experience, she combines her expertise in psychology with holistic health practices to help individuals improve their mental well-being. Her articles focus on the interlink between mental health and physical fitness.",meta_title:"Dr. Anita Desai - Mental Health Advocate at QuantaFitness",meta_description:"Explore the insights of Dr. Anita Desai, a clinical psychologist with 10 years of experience in lifestyle diseases. Discover the connection between mental health and fitness."},{name:"Arjun Menon",description:"Arjun Menon is a certified yoga instructor and wellness consultant with a focus on integrating yoga into modern lifestyles. He has trained under renowned yogis and has over 6 years of experience teaching various styles of yoga. His articles share valuable practices that promote physical and mental well-being.",meta_title:"Arjun Menon - Yoga Instructor at QuantaFitness",meta_description:"Join Arjun Menon, a certified yoga instructor with 6 years of experience. Discover the benefits of yoga for holistic health and practical tips for integrating it into your routine."},{name:"Neha Gupta",description:"Neha Gupta is a certified health coach and nutrition specialist dedicated to promoting healthy living through balanced diets. With over 5 years of experience in the health coaching space, she utilizes evidence-based strategies to help her clients transform their eating habits and lifestyle.",meta_title:"Neha Gupta - Health Coach at QuantaFitness",meta_description:"Learn from Neha Gupta, a certified health coach with 5 years of experience. Explore balanced diet strategies and tips for transforming your eating habits for better health."},{name:"Rahul Singh",description:"Rahul Singh is a personal trainer and fitness writer who specializes in strength training and bodybuilding. With a passion for fitness that spans over a decade, he offers insights into effective workout routines, nutritional advice, and motivational techniques for fitness enthusiasts.",meta_title:"Rahul Singh - Personal Trainer at QuantaFitness",meta_description:"Get workout tips from Rahul Singh, a personal trainer with over 10 years of expertise in strength training and bodybuilding. Empower your fitness journey with his insights."},{name:"Sana Iqbal",description:"Sana Iqbal is a wellness blogger and holistic health advocate. With a background in alternative medicine, she writes about the benefits of natural remedies and lifestyle changes for overall well-being. Her empathetic approach makes her articles relatable to anyone seeking a healthier life.",meta_title:"Sana Iqbal - Holistic Health Advocate at QuantaFitness",meta_description:"Explore holistic health tips from Sana Iqbal, a wellness blogger with expertise in alternative medicine. Discover natural remedies and lifestyle changes for better well-being."},{name:"Vikram Mhatre",description:"Vikram Mhatre is a well-respected fitness educator and public speaker who has been promoting fitness in communities across India for over 12 years. His engaging writing reflects his commitment to making fitness accessible and enjoyable for everyone.",meta_title:"Vikram Mhatre - Fitness Educator at QuantaFitness",meta_description:"Meet Vikram Mhatre, a fitness educator with 12+ years of experience. Discover fitness insights that make health accessible and enjoyable for all."},{name:"Anya Rawat",description:"Anya Rawat is a sports nutritionist who has spent the last 7 years helping athletes optimize their performance through effective dietary strategies. Her articles delve into the science of sports nutrition, helping readers understand the eating habits that enhance athletic performance.",meta_title:"Anya Rawat - Sports Nutritionist at QuantaFitness",meta_description:"Unlock your athletic potential with tips from Anya Rawat, a sports nutritionist with 7 years of experience. Explore dietary strategies that enhance sports performance."},{name:"Kiran Nair",description:"Kiran Nair is an Ayurvedic practitioner and wellness writer. With 9 years of experience, she emphasizes the importance of mindfulness and traditional practices in today's fast-paced world. Kiran’s articles provide readers with practical Ayurvedic tips for achieving balance and wellness.",meta_title:"Kiran Nair - Ayurvedic Practitioner at QuantaFitness",meta_description:"Discover Ayurvedic wellness with Kiran Nair, an experienced practitioner. Explore practical tips and mindfulness practices for achieving balance in your health journey."},{name:"Anjali Desai",description:"Anjali Desai is a certified yoga instructor and wellness coach based in Mumbai. She has over a decade of experience in teaching yoga and meditation techniques. With her holistic approach to health, she focuses on promoting mental well-being alongside physical fitness. Anjali is passionate about helping others find balance in their lives through natural wellness practices.",meta_title:"Anjali Desai - Yoga and Wellness Coach at QuantaFitness",meta_description:"Discover wellness insights from Anjali Desai, a certified yoga instructor with 10+ years of experience. She combines yoga practices with mental wellness for a balanced lifestyle."},{name:"Vikram Singh",description:"Vikram Singh is a fitness enthusiast and certified personal trainer with a specialization in strength training and high-intensity interval training (HIIT). With a strong background in sports science, he designs tailored workout programs for individuals of all fitness levels. Vikram aims to transform lives through personalized fitness strategies, ensuring sustainable results.",meta_title:"Vikram Singh - Personal Trainer and Fitness Specialist at QuantaFitness",meta_description:"Learn fitness tips from Vikram Singh, a certified personal trainer specializing in strength training and HIIT. His personalized approach ensures effective and sustainable fitness results."},{name:"Priya Kapoor",description:"Priya Kapoor is a registered dietitian with a master's degree in clinical nutrition. With experience working in hospitals and counseling individuals, she focuses on creating realistic meal plans and promoting healthy eating habits. Priya has a passion for educating people on the importance of nutrition in maintaining a healthy lifestyle.",meta_title:"Priya Kapoor - Registered Dietitian at QuantaFitness",meta_description:"Read articles by Priya Kapoor, a registered dietitian with expertise in clinical nutrition. She provides practical advice on healthy eating and meal planning for a balanced diet."},{name:"Ajay Mehta",description:"Ajay Mehta is a sports psychologist who has worked with various athletes to enhance their mental performance. With a background in psychology and experience in competitive sports, he provides valuable insights into the mindset needed for physical fitness. Ajay emphasizes the significance of mental health in achieving fitness goals and athletic performance.",meta_title:"Ajay Mehta - Sports Psychologist at QuantaFitness",meta_description:"Gain insights from Ajay Mehta, a sports psychologist focusing on the mental aspect of fitness. He helps athletes and fitness enthusiasts enhance their performance through mental training."},{name:"Neha Sharma",description:"Neha Sharma is a holistic health coach with certification in functional medicine. She supports individuals in transforming their health through lifestyle changes, focusing on stress management and behavioral modifications. Neha believes in empowering clients to take control of their health journey through education and self-awareness.",meta_title:"Neha Sharma - Holistic Health Coach at QuantaFitness",meta_description:"Explore holistic health strategies from Neha Sharma, a certified health coach. She offers guidance on stress management and lifestyle modifications for improved wellness."},{name:"Sanjay Gupta",description:"Sanjay Gupta is a certified Pilates instructor with over 15 years of experience in fitness training. He combines traditional Pilates techniques with contemporary fitness practices, helping clients improve flexibility, core strength, and overall physical health. Sanjay is dedicated to promoting the benefits of Pilates for all fitness levels.",meta_title:"Sanjay Gupta - Pilates Instructor at QuantaFitness",meta_description:"Discover the benefits of Pilates with Sanjay Gupta, a certified instructor with 15+ years of experience. He offers insights on core strength and flexibility through engaging fitness routines."},{name:"Meera Iyer",description:"Meera Iyer is a healthcare writer and fitness enthusiast with a strong focus on preventive health. She has contributed to various health publications and blogs, emphasizing the importance of lifestyle choices in preventing chronic diseases. Meera’s articles are informative and accessible, helping readers make informed decisions about their health.",meta_title:"Meera Iyer - Heathcare Writer at QuantaFitness",meta_description:"Read insightful articles by Meera Iyer, a healthcare writer dedicated to preventive health. She provides accessible advice on lifestyle choices for better health outcomes."},{name:"Rajesh Patel",description:"Rajesh Patel is a fitness technology entrepreneur who integrates technology with fitness solutions. With expertise in app development and wearable fitness technology, he is passionate about utilizing digital tools to help individuals track their health and fitness progress. Rajesh creates content that bridges the gap between technology and wellness.",meta_title:"Rajesh Patel - Fitness Technology Expert at QuantaFitness",meta_description:"Explore fitness technology insights from Rajesh Patel, an entrepreneur specializing in health apps and wearable fitness devices. Learn how technology can enhance your health journey."},{name:"Kavita Choudhary",description:"Kavita Choudhary is a wellness blogger and personal trainer with a passion for promoting mental and physical health. She focuses on holistic approaches, combining exercise, nutrition, and mindfulness practices. Kavita offers a unique perspective on balancing fitness and well-being in her articles.",meta_title:"Kavita Choudhary - Wellness Blogger at QuantaFitness",meta_description:"Discover wellness tips from Kavita Choudhary, a personal trainer and blogger. She combines exercise, nutrition, and mindfulness for a holistic approach to health."},{name:"Dr. Vidya Sharma",description:"Dr. Vidya Sharma is a renowned health and wellness expert with over 15 years of experience in holistic healing and nutrition. She holds a Master’s degree in Nutrition Science and a Doctorate in Holistic Health. Dr. Sharma integrates traditional Ayurvedic practices with modern nutritional science and has authored multiple publications on healthy living and preventive health measures.",meta_title:"Dr. Vidya Sharma - Holistic Health Expert at QuantaFitness",meta_description:"Discover insights from Dr. Vidya Sharma, a nutritionist with over 15 years of experience in holistic health. Explore her expert articles on wellness, nutrition, and Ayurveda at QuantaFitness."},{name:"Rohit Mehta",description:"Rohit Mehta is a fitness coach and personal trainer specializing in strength training and functional fitness. With over a decade of professional experience, he has helped countless individuals achieve their fitness goals through tailored workout programs and nutritional advice. Rohit is also a certified sports nutritionist and is passionate about educating others on the importance of physical fitness.",meta_title:"Rohit Mehta - Fitness Coach and Trainer at QuantaFitness",meta_description:"Join Rohit Mehta on his fitness journey as he shares expert advice on strength training and nutrition. Read his articles at QuantaFitness to transform your health."},{name:"Deepika Joshi",description:"Deepika Joshi is a certified yoga instructor and wellness advocate with a focus on mental health and mindfulness. With over 8 years of experience teaching yoga and meditation, she is dedicated to promoting physical and mental well-being. Deepika also writes extensively on the benefits of various yoga styles and their impact on overall health.",meta_title:"Deepika Joshi - Yoga Instructor and Wellness Advocate at QuantaFitness",meta_description:"Explore the world of yoga and mindfulness with Deepika Joshi. Read her enlightening articles on mental health and well-being at QuantaFitness."},{name:"Anil Gupta",description:"Anil Gupta is a fitness blogger and health coach with a Bachelor’s degree in Sports Science. With a focus on weight management and community fitness initiatives, Anil has spent over 12 years designing programs to improve health and fitness levels in various demographics. He is passionate about using technology to drive fitness engagement.",meta_title:"Anil Gupta - Fitness Blogger and Health Coach at QuantaFitness",meta_description:"Get inspired by Anil Gupta’s expert advice on weight management and community fitness initiatives. Discover his health-focused articles at QuantaFitness."},{name:"Sangeeta Rao",description:"Sangeeta Rao is a dietitian and wellness writer with a focus on plant-based nutrition and sustainable eating. With a Master's in Dietetics and a strong commitment to public health, she has spent over 10 years helping clients transition to healthier eating habits. Sangeeta’s articles emphasize the benefits of a balanced, plant-based diet for optimal health.",meta_title:"Sangeeta Rao - Dietitian and Wellness Writer at QuantaFitness",meta_description:"Learn about plant-based nutrition and sustainable eating from Sangeeta Rao. Dive into her insightful articles at QuantaFitness to eat healthier and live better."},{name:"Dr. Karan Singh",description:"Dr. Karan Singh is an endocrinologist and fitness enthusiast specializing in metabolism and hormonal health. With over 18 years of clinical experience, he has published numerous articles on metabolic disorders and their relationship with diet and exercise. Dr. Singh’s approach combines medical expertise with practical fitness tips.",meta_title:"Dr. Karan Singh - Endocrinologist and Health Author at QuantaFitness",meta_description:"Explore metabolic health with Dr. Karan Singh, a seasoned endocrinologist. Read his expert insights and health articles at QuantaFitness to optimize your wellness."},{name:"Priya Desai",description:"Priya Desai is a certified personal trainer and wellness coach with a dedication to empowering individuals to achieve their best selves. With over 5 years of experience in fitness coaching, Priya specializes in functional training, core strengthening, and healthy lifestyle changes that promote longevity and health.",meta_title:"Priya Desai - Personal Trainer and Wellness Coach at QuantaFitness",meta_description:"Transform your health with Priya Desai’s expert personal training tips and wellness advice. Discover her articles on functional fitness at QuantaFitness."},{name:"Rajiv Kapoor",description:"Rajiv Kapoor is a sports nutritionist and fitness consultant with a focus on optimizing athletic performance through nutrition. With a background in sports science and years of work with athletes, he has created tailored nutritional programs to enhance physical performance and recovery. Rajiv’s articles provide invaluable insights for athletes and fitness enthusiasts alike.",meta_title:"Rajiv Kapoor - Sports Nutritionist at QuantaFitness",meta_description:"Unlock your athletic potential with advice from Rajiv Kapoor, a specialized sports nutritionist. Read his articles on optimizing performance through nutrition at QuantaFitness."},{name:"Neha Raghavan",description:"Neha Raghavan is a mental health advocate and lifestyle blogger with a focus on holistic wellness and self-care practices. With a Master’s in Psychology, she explores the interconnections between mental health and physical wellness, encouraging her readers to adopt a balanced lifestyle. Neha’s articles provide practical self-care tips and mental health strategies.",meta_title:"Neha Raghavan - Mental Health Advocate at QuantaFitness",meta_description:"Discover holistic wellness with Neha Raghavan, a mental health advocate. Read her insightful articles on self-care and balance at QuantaFitness."},{name:"Vikram Ahuja",description:"Vikram Ahuja is a health and fitness writer with a passion for evidence-based knowledge. With a background in biochemistry and over 6 years of experience in health writing, Vikram focuses on debunking fitness myths and providing readers with reliable information on health trends and fitness practices.",meta_title:"Vikram Ahuja - Health Writer at QuantaFitness",meta_description:"Stay informed with Vikram Ahuja, a health writer dedicated to evidence-based wellness. Read his informative articles at QuantaFitness and enhance your understanding of fitness trends."},{name:"Dr. Ranjit Sharma",description:"Dr. Ranjit Sharma is a medical professional with over 15 years of experience in sports medicine and nutrition. He has worked with various professional athletes and teams, helping them enhance their performance through tailored fitness plans and dietary strategies. Dr. Sharma also conducts workshops on health and wellness across India.",meta_title:"Dr. Ranjit Sharma - Sports Medicine Expert at QuantaFitness",meta_description:"Discover expert insights on sports medicine and nutrition from Dr. Ranjit Sharma, a leading professional with over 15 years of experience in enhancing athletic performance."},{name:"Deepti Chatterjee",description:"Deepti Chatterjee is a wellness consultant specializing in mental health and fitness. With certifications in yoga therapy and mindfulness, she offers a unique perspective on the intersection of physical fitness and mental well-being.",meta_title:"Deepti Chatterjee - Wellness Consultant at QuantaFitness",meta_description:"Discover the holistic approach to health through the lens of mental wellness with Deepti Chatterjee, an expert in yoga therapy and mindfulness."},{name:"Rahul Kapoor",description:"Rahul Kapoor is a fitness enthusiast and a certified personal trainer with over 5 years of experience in high-intensity interval training (HIIT) and functional workouts. He aims to motivate individuals to push their limits and embrace a healthier lifestyle.",meta_title:"Rahul Kapoor - Personal Trainer & HIIT Specialist at QuantaFitness",meta_description:"Get motivated with fitness expert Rahul Kapoor, as he guides you through effective HIIT and functional workouts designed to transform your lifestyle."},{name:"Naina Joshi",description:"Naina Joshi is a clinical dietitian and nutritionist with a focus on metabolic health and weight management. With over 7 years of experience in nutrition counseling, she provides evidence-based guidance to help individuals achieve their health goals.",meta_title:"Naina Joshi - Clinical Dietitian at QuantaFitness",meta_description:"Achieve your health goals with Naina Joshi, a clinical dietitian focused on metabolic health and weight management, providing personalized nutrition advice."},{name:"Anjali Rai",description:"Anjali Rai is an experienced yoga instructor and wellness blogger. With her deep understanding of yoga practices and philosophy, she writes about the benefits of yoga in daily life and how it can significantly enhance physical and mental health.",meta_title:"Anjali Rai - Yoga Instructor & Wellness Blogger at QuantaFitness",meta_description:"Explore the transformative power of yoga with Anjali Rai, an experienced instructor and blogger who highlights the benefits of yoga for holistic health."},{name:"Sameer Patel",description:"Sameer Patel is a strength and conditioning coach with a background in sports science. He works with athletes and everyday fitness enthusiasts to improve their performance through tailored strength programs and recovery strategies.",meta_title:"Sameer Patel - Strength & Conditioning Coach at QuantaFitness",meta_description:"Enhance your performance with Sameer Patel, a strength and conditioning coach dedicated to crafting personalized training and recovery strategies."},{name:"Sneha Verma",description:"Sneha Verma is a fitness writer and motivational speaker, specializing in women's health and fitness issues. She aims to inspire women to embrace their strength and lead healthier lives through her articles and talks.",meta_title:"Sneha Verma - Women's Health & Fitness Advocate at QuantaFitness",meta_description:"Inspire your journey toward health with Sneha Verma, a motivational speaker dedicated to empowering women through fitness and wellness insights."},{name:"Dr. Jane Mitchell",description:"Dr. Jane Mitchell is a certified nutritionist and wellness coach with over 15 years of experience in helping individuals achieve their health goals. She holds a doctorate in Nutrition Science and has authored several books on healthy living. Her expertise lies in creating personalized diet plans and holistic wellness strategies.",meta_title:"Dr. Jane Mitchell - Expert Nutritionist & Wellness Coach at QuantaFitness",meta_description:"Discover health and fitness tips from Dr. Jane Mitchell, a renowned nutritionist with over 15 years of experience in helping individuals lead healthier lives."},{name:"Mark Thompson",description:"Mark Thompson is a fitness enthusiast and personal trainer based in Australia. With a background in sports science, Mark specializes in strength and conditioning programs tailored for athletes and fitness beginners alike. He's passionate about motivating others to pursue their fitness aspirations.",meta_title:"Mark Thompson - Personal Trainer & Fitness Expert at QuantaFitness",meta_description:"Meet Mark Thompson, a dedicated personal trainer from Australia, specializing in strength training and fitness programs at QuantaFitness."},{name:"Sofia Hernandez",description:"Sofia Hernandez is a certified yoga instructor and wellness blogger from Spain. With a decade of experience in teaching yoga, she focuses on the mind-body connection and holistic health. Sofia shares practical tips for integrating wellness practices into daily life.",meta_title:"Sofia Hernandez - Yoga Instructor & Wellness Advocate at QuantaFitness",meta_description:"Learn about mindfulness and wellness from Sofia Hernandez, a certified yoga instructor dedicated to improving lives through holistic practices."},{name:"Dr. Ravi Gupta",description:"Dr. Ravi Gupta is a medical doctor and health writer from India. He specializes in preventive medicine and has a passion for public health education. By translating complex medical concepts into easily understandable articles, Dr. Gupta aims to empower readers to make informed health choices.",meta_title:"Dr. Ravi Gupta - Medical Doctor & Health Writer at QuantaFitness",meta_description:"Explore health insights with Dr. Ravi Gupta, a medical doctor dedicated to promoting public health awareness through engaging articles at QuantaFitness."},{name:"Emily Chen",description:"Emily Chen is a fitness influencer and certified Pilates instructor from Canada. With a passion for movement and body positivity, she creates inclusive fitness content, helping individuals of all shapes and sizes embrace their bodies through mindful exercise.",meta_title:"Emily Chen - Fitness Influencer & Pilates Instructor at QuantaFitness",meta_description:"Join Emily Chen on a journey of body positivity and mindful movement as she shares her expertise in Pilates and inclusive fitness at QuantaFitness."},{name:"Carlos Mendez",description:"Carlos Mendez is a registered dietitian and health consultant from Mexico. With extensive experience in community nutrition, he specializes in culturally relevant dietary practices and emphasizes balanced eating for optimal health.",meta_title:"Carlos Mendez - Registered Dietitian & Nutrition Consultant at QuantaFitness",meta_description:"Meet Carlos Mendez, a passionate dietitian focused on balanced nutrition and culturally relevant dietary practices to enhance overall wellness."},{name:"Lily Adams",description:"Lily Adams is a fitness writer and group workout instructor from the UK. She specializes in high-intensity interval training (HIIT) and is known for her engaging fitness classes that appeal to all ages and fitness levels. Lily's articles offer practical workout tips and motivation.",meta_title:"Lily Adams - HIIT Specialist & Fitness Writer at QuantaFitness",meta_description:"Get inspired by Lily Adams, an enthusiastic fitness writer and HIIT instructor, sharing effective workout strategies and motivation at QuantaFitness."},{name:"Ahmed Al-Farsi",description:"Ahmed Al-Farsi is a sports scientist and health advocate from the Middle East. His expertise lies in exercise physiology and athletic performance optimization. Ahmed focuses on bridging the gap between sports science and practical training advice for athletes.",meta_title:"Ahmed Al-Farsi - Sports Scientist & Health Advocate at QuantaFitness",meta_description:"Dive into the world of sports science with Ahmed Al-Farsi, where he shares insights on athletic performance and effective training techniques at QuantaFitness."},{name:"Fatima Al-Mansoori",description:"Fatima Al-Mansoori is a certified personal trainer and wellness coach from the UAE. Her mission is to empower women through fitness, focusing on strength training and mental wellness. Fatima's unique approach fosters a supportive community for women seeking to enhance their health.",meta_title:"Fatima Al-Mansoori - Certified Personal Trainer & Women’s Wellness Coach at QuantaFitness",meta_description:"Empower yourself with Fatima Al-Mansoori's insights on women's fitness and strength training, promoting a healthy lifestyle at QuantaFitness."},{name:"James Williams",description:"James Williams is a health journalist and public speaker from the USA. With a background in journalism, he is dedicated to uncovering the truth about health trends and misinformation in the fitness industry. His articles aim to provide evidence-based insights for better health decisions.",meta_title:"James Williams - Health Journalist & Advocate at QuantaFitness",meta_description:"Read insightful articles from James Williams, a dedicated health journalist tackling health trends and misinformation to empower your fitness journey at QuantaFitness."},{name:"Sofia Chang",description:"Sofia Chang is a certified nutritionist and personal trainer with over 10 years of experience in the health and fitness industry. She specializes in holistic wellness, helping clients achieve their fitness goals through balanced nutrition and tailored exercise plans. Based in California, Sofia believes in using sustainable practices for health improvement.",meta_title:"Sofia Chang - Holistic Nutrition & Fitness Expert | QuantaFitness",meta_description:"Explore expert articles by Sofia Chang, a certified nutritionist and personal trainer specializing in holistic wellness and sustainable health practices. Join her journey at QuantaFitness."},{name:"Liam O'Sullivan",description:"Liam O'Sullivan is a sports scientist from Ireland with a focus on performance enhancement and rehabilitation. With a Master's degree in Sports Science, Liam has worked with athletes from various sports, developing evidence-based training programs. His insights emphasize the fusion of science and practical techniques.",meta_title:"Liam O'Sullivan - Sports Scientist & Performance Coach | QuantaFitness",meta_description:"Delve into the world of sports science with Liam O'Sullivan. Discover performance-enhancing techniques and recovery strategies tailored for athletes at QuantaFitness."},{name:"Akira Yamamoto",description:"Akira Yamamoto is a fitness coach and wellness blogger from Japan, passionate about combining traditional practices with modern fitness trends. With over 8 years of experience, Akira provides a unique perspective on fitness that integrates yoga and martial arts for holistic health.",meta_title:"Akira Yamamoto - Traditional & Modern Fitness Fusion Expert | QuantaFitness",meta_description:"Join Akira Yamamoto as he shares insights on traditional wellness combined with modern fitness trends. Find balance and strength at QuantaFitness."},{name:"Maria Gonzalez",description:"Maria Gonzalez is a certified yoga instructor and wellness coach based in Spain. With a background in psychology, she tailors her programs to promote mental well-being alongside physical fitness. Maria brings a compassionate and mindful approach to her articles, focusing on overall health improvement.",meta_title:"Maria Gonzalez - Yoga & Wellness Coach | QuantaFitness",meta_description:"Explore wellness through yoga with Maria Gonzalez. Discover methods to enhance physical and mental health at QuantaFitness."},{name:"David Patel",description:"David Patel is a fitness blogger and body transformation expert based in India. He shares inspiring stories and practical tips for weight loss and muscle gain based on his personal journey. With certifications in coaching and nutrition, David empowers readers to pursue their fitness ambitions.",meta_title:"David Patel - Body Transformation Coach | QuantaFitness",meta_description:"Transform your body and lifestyle with David Patel's insightful articles on fitness and nutrition. Get inspired at QuantaFitness."},{name:"Chloe Dubois",description:"Chloe Dubois is a nutrition scientist from France with a focus on plant-based diets. She has been in the field for over 6 years, helping individuals transition to healthier eating habits through research-backed advice. Chloe's articles promote healthy eating in a sustainable manner.",meta_title:"Chloe Dubois - Plant-Based Nutrition Scientist | QuantaFitness",meta_description:"Discover the benefits of a plant-based diet with Chloe Dubois. Learn how to eat healthy, sustainably at QuantaFitness."},{name:"Thomas Miller",description:"Thomas Miller is a veteran fitness journalist and personal trainer from Australia. With over 12 years in the industry, he focuses on strength training and functional fitness. His evidence-based articles are designed to educate and motivate readers towards their fitness journey.",meta_title:"Thomas Miller - Strength Training Specialist & Fitness Journalist | QuantaFitness",meta_description:"Unlock your potential with Thomas Miller's expert advice on strength training and fitness. Find motivation and knowledge at QuantaFitness."},{name:"Fatima El-Khoury",description:"Fatima El-Khoury is a health and lifestyle coach based in the United Arab Emirates. Combining her expertise in fitness and mental health, Fatima advocates for a balanced lifestyle approach. She has over 9 years of experience guiding individuals to improve their life through fitness.",meta_title:"Fatima El-Khoury - Health & Lifestyle Coach | QuantaFitness",meta_description:"Achieve a balanced lifestyle with Fatima El-Khoury's health and fitness insights. Explore holistic well-being tips at QuantaFitness."},{name:"Jin Ho Park",description:"Jin Ho Park is a fitness enthusiast and researcher from South Korea. Specializing in exercise psychology, Jin writes extensively on motivation and habit formation. He has published numerous articles on the psychological aspects of health and fitness, making his insights valuable for readers.",meta_title:"Jin Ho Park - Exercise Psychology & Motivation Expert | QuantaFitness",meta_description:"Master your fitness journey with Jin Ho Park's psychological insights on motivation and habits. Enhance your enthusiasm for health at QuantaFitness."}],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:#0a3d62;--theme-color-8:#0b7a8a;--theme-color-7:#1abc9c;--theme-color-6:#2ed573;--theme-color-5:#55efc4;--theme-color-4:#81ffb8;--theme-color-3:#b9fbc0;--theme-color-2:#dfffe7;--color-bg-layout:#f9f9f9;--color-bg-hover:#e3f2fd;--article-border-radius:24px;--btn-border-radius:12px;--category-border-radius:30px;}
@@ -0,0 +1 @@
1
+ @import "sizing.css";@import "colors.css";@import "fonts.css";@import "theme.css";
@@ -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" | "nutrition" | "trendingTopics" | "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.258",
4
4
  "description": "Package for config files and reusable code/components between projects",
5
5
  "main": "dist/index.js",
6
6
  "files": [