tedo-publisher 1.3.271 → 1.3.273

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. package/dist/feastfrenzy/data.d.ts +200 -0
  2. package/dist/feastfrenzy/data.js +1 -0
  3. package/dist/feastfrenzy/filters.d.ts +28 -0
  4. package/dist/feastfrenzy/filters.js +1 -0
  5. package/dist/feastfrenzy/helpers.d.ts +3 -0
  6. package/dist/feastfrenzy/helpers.js +1 -0
  7. package/dist/feastfrenzy/index.d.ts +15 -0
  8. package/dist/feastfrenzy/index.js +1 -0
  9. package/dist/feastfrenzy/prompts/data.d.ts +7 -0
  10. package/dist/feastfrenzy/prompts/data.js +1 -0
  11. package/dist/feastfrenzy/prompts/gpt35turbo/articles.d.ts +6 -0
  12. package/dist/feastfrenzy/prompts/gpt35turbo/articles.js +1 -0
  13. package/dist/feastfrenzy/prompts/gpt4oMini/articles.d.ts +6 -0
  14. package/dist/feastfrenzy/prompts/gpt4oMini/articles.js +1 -0
  15. package/dist/feastfrenzy/prompts/images.d.ts +4 -0
  16. package/dist/feastfrenzy/prompts/images.js +1 -0
  17. package/dist/feastfrenzy/seo.d.ts +23 -0
  18. package/dist/feastfrenzy/seo.js +1 -0
  19. package/dist/feastfrenzy/styles/colors.css +1 -0
  20. package/dist/feastfrenzy/styles/fonts.css +1 -0
  21. package/dist/feastfrenzy/styles/global.css +1 -0
  22. package/dist/feastfrenzy/styles/sizing.css +1 -0
  23. package/dist/feastfrenzy/styles/theme.css +1 -0
  24. package/dist/feastfrenzy/styles/vars.css +1 -0
  25. package/dist/fiiltfick/data.d.ts +1 -1
  26. package/dist/savorlifes/data.d.ts +199 -0
  27. package/dist/savorlifes/data.js +1 -0
  28. package/dist/savorlifes/filters.d.ts +28 -0
  29. package/dist/savorlifes/filters.js +1 -0
  30. package/dist/savorlifes/helpers.d.ts +3 -0
  31. package/dist/savorlifes/helpers.js +1 -0
  32. package/dist/savorlifes/index.d.ts +15 -0
  33. package/dist/savorlifes/index.js +1 -0
  34. package/dist/savorlifes/prompts/data.d.ts +7 -0
  35. package/dist/savorlifes/prompts/data.js +1 -0
  36. package/dist/savorlifes/prompts/gpt35turbo/articles.d.ts +6 -0
  37. package/dist/savorlifes/prompts/gpt35turbo/articles.js +1 -0
  38. package/dist/savorlifes/prompts/gpt4oMini/articles.d.ts +6 -0
  39. package/dist/savorlifes/prompts/gpt4oMini/articles.js +1 -0
  40. package/dist/savorlifes/prompts/images.d.ts +4 -0
  41. package/dist/savorlifes/prompts/images.js +1 -0
  42. package/dist/savorlifes/seo.d.ts +23 -0
  43. package/dist/savorlifes/seo.js +1 -0
  44. package/dist/savorlifes/styles/colors.css +1 -0
  45. package/dist/savorlifes/styles/fonts.css +1 -0
  46. package/dist/savorlifes/styles/global.css +1 -0
  47. package/dist/savorlifes/styles/sizing.css +1 -0
  48. package/dist/savorlifes/styles/theme.css +1 -0
  49. package/dist/savorlifes/styles/vars.css +1 -0
  50. package/package.json +1 -1
@@ -0,0 +1,200 @@
1
+ export declare const dataStructure: {
2
+ quickMeals: {
3
+ title: string;
4
+ description: string;
5
+ slug: string;
6
+ children: {
7
+ fifteenMinuteRecipes: {
8
+ title: string;
9
+ description: string;
10
+ slug: string;
11
+ children: null;
12
+ };
13
+ onePotDishes: {
14
+ title: string;
15
+ description: string;
16
+ slug: string;
17
+ children: null;
18
+ };
19
+ mealPrepIdeas: {
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
+ healthyEating: {
34
+ title: string;
35
+ description: string;
36
+ slug: string;
37
+ children: {
38
+ lowCalorieRecipes: {
39
+ title: string;
40
+ description: string;
41
+ slug: string;
42
+ children: null;
43
+ };
44
+ glutenFreeOptions: {
45
+ title: string;
46
+ description: string;
47
+ slug: string;
48
+ children: null;
49
+ };
50
+ vegetarianDishes: {
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
+ internationalCuisine: {
65
+ title: string;
66
+ description: string;
67
+ slug: string;
68
+ children: {
69
+ italianRecipes: {
70
+ title: string;
71
+ description: string;
72
+ slug: string;
73
+ children: null;
74
+ };
75
+ asianFlavors: {
76
+ title: string;
77
+ description: string;
78
+ slug: string;
79
+ children: null;
80
+ };
81
+ mexicanFavorites: {
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
+ gourmetCooking: {
96
+ title: string;
97
+ description: string;
98
+ slug: string;
99
+ children: {
100
+ fineDiningAtHome: {
101
+ title: string;
102
+ description: string;
103
+ slug: string;
104
+ children: null;
105
+ };
106
+ artisanBaking: {
107
+ title: string;
108
+ description: string;
109
+ slug: string;
110
+ children: null;
111
+ };
112
+ exoticIngredients: {
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
+ familyFriendly: {
127
+ title: string;
128
+ description: string;
129
+ slug: string;
130
+ children: {
131
+ kidApprovedMeals: {
132
+ title: string;
133
+ description: string;
134
+ slug: string;
135
+ children: null;
136
+ };
137
+ batchCooking: {
138
+ title: string;
139
+ description: string;
140
+ slug: string;
141
+ children: null;
142
+ };
143
+ familyFeasts: {
144
+ title: string;
145
+ description: string;
146
+ slug: string;
147
+ children: null;
148
+ };
149
+ other: {
150
+ title: string;
151
+ description: string;
152
+ slug: string;
153
+ children: null;
154
+ };
155
+ };
156
+ };
157
+ cookingTechniques: {
158
+ title: string;
159
+ description: string;
160
+ slug: string;
161
+ children: {
162
+ grillingBasics: {
163
+ title: string;
164
+ description: string;
165
+ slug: string;
166
+ children: null;
167
+ };
168
+ bakingTips: {
169
+ title: string;
170
+ description: string;
171
+ slug: string;
172
+ children: null;
173
+ };
174
+ knifeSkills: {
175
+ title: string;
176
+ description: string;
177
+ slug: string;
178
+ children: null;
179
+ };
180
+ other: {
181
+ title: string;
182
+ description: string;
183
+ slug: string;
184
+ children: null;
185
+ };
186
+ };
187
+ };
188
+ };
189
+ export declare const authors: Record<string, string>;
190
+ export declare const authorsNames: string[];
191
+ export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83C\uDF7D\uFE0F\uD83D\uDC69\u200D\uD83C\uDF73\uD83E\uDD58\uD83E\uDD57";
192
+ export declare const categories: ("cookingTechniques" | "quickMeals" | "healthyEating" | "internationalCuisine" | "gourmetCooking" | "familyFriendly")[];
193
+ export declare const subcategories: string[];
194
+ export declare const subsubcategories: string[];
195
+ export type Category = keyof typeof dataStructure;
196
+ export type CategoryNode = (typeof dataStructure)[Category];
197
+ export type SubcategoryKeyByCategory<T extends Category> = (typeof dataStructure)[T]['children'];
198
+ export declare const startDate = "2024-09-18T00:00:00Z";
199
+ export declare const devBucketName = "idn-feastfrenzy-dev";
200
+ export declare const prodBucketName = "idn-feastfrenzy";
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./seo.js");const i={quickMeals:{title:"Quick Meals for Delicious Dining in No Time 🍽️",description:"Discover quick meal recipes perfect for busy schedules. From speedy dinners to effortless meal prep, find inspiration to satisfy your cravings! 🌟",slug:"quick-meals",children:{fifteenMinuteRecipes:{title:"15-Minute Recipes: Quick and Easy Culinary Delights ⏱️",description:"Whip up delicious meals in just 15 minutes! Explore our simple recipes, from savory dishes to sweet treats, all ready in a flash! 🥦🍝",slug:"fifteen-minute-recipes",children:null},onePotDishes:{title:"One Pot Dishes: Simple and Flavorful One-Pan Wonders 🍲",description:"Savor the convenience of one pot dishes! Discover recipes that deliver maximum flavor with minimal cleanup, perfect for busy days! 🍛✨",slug:"one-pot-dishes",children:null},mealPrepIdeas:{title:"Meal Prep Ideas: Smart Solutions for Effortless Eating 🥗",description:"Get organized with our meal prep ideas! Save time and eat healthy with easy-to-follow recipes that keep you nourished throughout the week. 🍱",slug:"meal-prep-ideas",children:null},other:{title:"Other Quick Meal Ideas: Explore Unique Culinary Inspirations 🔍",description:"Venture beyond traditional recipes with our unique quick meal ideas! Find innovative dishes that are easy to prepare and delightful to eat! 🍽️⚡️",slug:"other-quick-meals",children:null}}},healthyEating:{title:"Healthy Eating | Delicious Recipes for a Nourishing Lifestyle 🍏",description:"Explore a collection of healthy eating recipes that cater to various dietary preferences. Discover mouthwatering dishes to satisfy your cravings! 🌱",slug:"healthy-eating",children:{lowCalorieRecipes:{title:"Low-Calorie Recipes | Savor Flavor Without the Guilt 🥗",description:"Delight in low-calorie recipes that are light on calories yet big on taste! Perfect for maintaining a balanced diet while enjoying every bite. 💚",slug:"low-calorie-recipes",children:null},glutenFreeOptions:{title:"Gluten-Free Options | Tasty Recipes for All 🌾🚫",description:"Discover delectable gluten-free options that everyone can enjoy! Find quick and easy recipes that cater to gluten sensitivities while delighting your taste buds. 🌟",slug:"gluten-free-options",children:null},vegetarianDishes:{title:"Vegetarian Dishes | Wholesome Plant-Based Recipes 🥦🍽️",description:"Explore hearty vegetarian dishes packed with flavors and nutrients! Perfect for feeding your body and soul with plant-based goodness. 🌼",slug:"vegetarian-dishes",children:null},other:{title:"Other Healthy Eating Ideas | Inspiring Culinary Adventures 🍽️✨",description:"Uncover other healthy eating ideas that go beyond the plate! Explore various cooking techniques and culinary inspirations to elevate your meals. 🍋",slug:"other-healthy-eating-ideas",children:null}}},internationalCuisine:{title:"Explore Global Delicacies | International Cuisine 🍽️",description:"Discover a world of flavors with our international cuisine section! From Italian to Asian dishes, elevate your cooking skills and satisfy your cravings! 🌍",slug:"international-cuisine",children:{italianRecipes:{title:"Authentic Italian Recipes | Taste of Italy 🇮🇹",description:"Indulge in mouthwatering Italian recipes! From classic pasta dishes to delectable desserts, bring a taste of Italy to your kitchen! 🍝",slug:"italian-recipes",children:null},asianFlavors:{title:"Vibrant Asian Flavors | Culinary Journey 🍜",description:"Experience the rich and diverse flavors of Asia! Explore our collection of Asian recipes that delight the senses and nourish the soul! 🌶️",slug:"asian-flavors",children:null},mexicanFavorites:{title:"Savory Mexican Favorites | Fiesta on Your Plate 🌮",description:"Savor the bold and spicy flavors of Mexican cuisine! Enjoy classic recipes that will make your next meal a fiesta! 🌶️✨",slug:"mexican-favorites",children:null},other:{title:"Explore Other Global Cuisines | Culinary Adventures 🌏",description:"Expand your culinary horizons with unique recipes from around the world! Discover diverse flavors and techniques to enrich your cooking! 🍽️",slug:"other-global-cuisines",children:null}}},gourmetCooking:{title:"Elevate Your Culinary Skills: Discover Gourmet Cooking 😋",description:"Explore the world of gourmet cooking with exceptional recipes and culinary insights. Turn your kitchen into a fine dining experience! 🍽️",slug:"gourmet-cooking",children:{fineDiningAtHome:{title:"Fine Dining at Home: Gourmet Recipes for Every Occasion ✨",description:"Transform your dining experience with exquisite recipes and tips for fine dining at home. Impress your guests with culinary masterpieces! 🥂",slug:"fine-dining-at-home",children:null},artisanBaking:{title:"Artisan Baking: Craft Delicious Breads and Pastries 🍞",description:"Master the art of artisan baking with our delicious recipes and expert tips. Create amazing breads and pastries that impress! 🥐",slug:"artisan-baking",children:null},exoticIngredients:{title:"Exotic Ingredients: Unlock New Flavors in Your Cooking 🌍",description:"Discover the wonders of exotic ingredients that will elevate your dishes. Dive into unique flavors and spice up your culinary adventures! 🌶️",slug:"exotic-ingredients",children:null},other:{title:"Other Culinary Inspirations: Explore Unique Recipes 🍳",description:"Uncover a variety of other culinary inspirations that enhance your cooking skills. Dive into unique recipes and tips for all food lovers! 🍲",slug:"other-culinary-inspirations",children:null}}},familyFriendly:{title:"Delicious Family-Friendly Recipes for All Ages 🍽️",description:"Explore a range of delightful family-friendly recipes perfect for cooking with kids and loved ones. Enjoy culinary adventures that everyone will love! 🥘",slug:"family-friendly-recipes",children:{kidApprovedMeals:{title:"Kid Approved Meals: Fun Recipes for Picky Eaters 🧒",description:"Discover fun and nutritious kid-approved meals that your little ones will love. Perfect for picky eaters, these recipes make cooking enjoyable! 🍕",slug:"kid-approved-meals",children:null},batchCooking:{title:"Batch Cooking: Easy Meal Prep Recipes for Families 👩‍🍳",description:"Master the art of batch cooking with easy meal prep recipes designed for busy families. Save time while enjoying delicious home-cooked meals! 🍲",slug:"batch-cooking",children:null},familyFeasts:{title:"Family Feasts: Celebrate Together with Festive Recipes 🎉",description:"Gather together for family feasts with our festive recipes that bring everyone around the table. Celebrate good times with delicious food! 🍗",slug:"family-feasts",children:null},other:{title:"Other Family-Friendly Culinary Inspirations 🌍",description:"Explore various culinary inspirations for the whole family. Discover recipes and tips that make cooking a joyful experience for everyone! 🍽️",slug:"other-family-friendly-recipes",children:null}}},cookingTechniques:{title:"Master Essential Cooking Techniques: Elevate Your Culinary Skills 🍳",description:"Explore a variety of essential cooking techniques that empower home cooks and aspiring chefs. Master each method to elevate your culinary creations! 🔪",slug:"master-cooking-techniques",children:{grillingBasics:{title:"Grilling Basics: Techniques for Perfectly Grilled Dishes 🍖",description:"Learn the fundamental grilling techniques that will help you achieve perfectly grilled meats and vegetables. Impress your guests with your grilling skills! 🍔",slug:"grilling-basics",children:null},bakingTips:{title:"Baking Tips: Secrets to Achieving Bakery-Quality Treats 🍰",description:"Discover essential baking tips to create delicious cakes, cookies, and pastries. Elevate your home baking and impress with delightful treats! 🎂",slug:"baking-tips",children:null},knifeSkills:{title:"Knife Skills: Master the Art of Precision Cutting 🔪",description:"Enhance your culinary prowess with essential knife skills. Learn techniques for chopping, slicing, and dicing like a professional chef! 🥗",slug:"knife-skills",children:null},other:{title:"Other Cooking Techniques: Expand Your Culinary Repertoire 🍳",description:"Explore various other cooking techniques that can enhance your recipes. Diversify your culinary skills and experiment in the kitchen! 🍜",slug:"other-cooking-techniques",children:null}}}},t=e.AUTHORS_INFO.reduce(((e,i)=>Object.assign(Object.assign({},e),{[i.name]:[i.description]})),{}),s=e.AUTHORS_INFO.map((e=>e.name)),n="🍽️👩‍🍳🥘🥗",r=Object.keys(i),o=[],l=[];for(const e of r){const t=i[e];if(null==t?void 0:t.children){o.push(...Object.keys(t.children));for(const e of o){const i=t.children[e];(null==i?void 0:i.children)&&l.push(...Object.keys(i.children))}}}const a="2024-09-18T00:00:00Z",c="feastfrenzy",u=`idn-${c}-dev`,h=`idn-${c}`;exports.DEFAULT_DESCRIPTION_EMOJIS=n,exports.authors=t,exports.authorsNames=s,exports.categories=r,exports.dataStructure=i,exports.devBucketName=u,exports.prodBucketName=h,exports.startDate=a,exports.subcategories=o,exports.subsubcategories=l;
@@ -0,0 +1,28 @@
1
+ export declare enum FiltersNames {
2
+ FlavorProfile = "Flavor Profile",
3
+ MealType = "Meal Type",
4
+ DietaryPreference = "Dietary Preference",
5
+ PreparationTime = "Preparation Time",
6
+ CulinaryTechnique = "Culinary Technique"
7
+ }
8
+ type FlavorProfile = 'Savory' | 'Sweet' | 'Spicy' | 'Umami' | 'Tangy';
9
+ type MealType = 'Breakfast' | 'Lunch' | 'Dinner' | 'Snack' | 'Dessert';
10
+ type DietaryPreference = 'Vegetarian' | 'Vegan' | 'Gluten-Free' | 'Paleo' | 'Ketogenic';
11
+ type PreparationTime = 'Quick (Under 30 min)' | 'Moderate (30-60 min)' | 'Lengthy (60+ min)' | 'Make-Ahead' | 'One-Pot';
12
+ type CulinaryTechnique = 'Baking' | 'Grilling' | 'Sautéing' | 'Slow Cooking' | 'Raw Food';
13
+ export type ArticleFilters = {
14
+ [FiltersNames.FlavorProfile]: FlavorProfile[];
15
+ [FiltersNames.MealType]: MealType[];
16
+ [FiltersNames.DietaryPreference]: DietaryPreference[];
17
+ [FiltersNames.PreparationTime]: PreparationTime[];
18
+ [FiltersNames.CulinaryTechnique]: CulinaryTechnique[];
19
+ };
20
+ export declare const flavorProfileValues: FlavorProfile[];
21
+ export declare const mealTypeValues: MealType[];
22
+ export declare const dietaryPreferenceValues: DietaryPreference[];
23
+ export declare const preparationTimeValues: PreparationTime[];
24
+ export declare const culinaryTechniqueValues: CulinaryTechnique[];
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={})).FlavorProfile="Flavor Profile",e.MealType="Meal Type",e.DietaryPreference="Dietary Preference",e.PreparationTime="Preparation Time",e.CulinaryTechnique="Culinary Technique";const r=["Savory","Sweet","Spicy","Umami","Tangy"],i=["Breakfast","Lunch","Dinner","Snack","Dessert"],a=["Vegetarian","Vegan","Gluten-Free","Paleo","Ketogenic"],s=["Quick (Under 30 min)","Moderate (30-60 min)","Lengthy (60+ min)","Make-Ahead","One-Pot"],t=["Baking","Grilling","Sautéing","Slow Cooking","Raw Food"],l={[exports.FiltersNames.FlavorProfile]:[],[exports.FiltersNames.MealType]:[],[exports.FiltersNames.DietaryPreference]:[],[exports.FiltersNames.PreparationTime]:[],[exports.FiltersNames.CulinaryTechnique]:[]},o={[exports.FiltersNames.FlavorProfile]:r,[exports.FiltersNames.MealType]:i,[exports.FiltersNames.DietaryPreference]:a,[exports.FiltersNames.PreparationTime]:s,[exports.FiltersNames.CulinaryTechnique]:t},n=()=>JSON.stringify(o,null,2);exports.culinaryTechniqueValues=t,exports.dietaryPreferenceValues=a,exports.flavorProfileValues=r,exports.fullFilters=o,exports.getFiltersTypesJSON=n,exports.initialFilters=l,exports.mealTypeValues=i,exports.preparationTimeValues=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"),r=require("./helpers.js"),s=require("./prompts/images.js"),a=require("./seo.js"),o=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.culinaryTechniqueValues=t.culinaryTechniqueValues,exports.dietaryPreferenceValues=t.dietaryPreferenceValues,exports.flavorProfileValues=t.flavorProfileValues,exports.fullFilters=t.fullFilters,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.initialFilters=t.initialFilters,exports.mealTypeValues=t.mealTypeValues,exports.preparationTimeValues=t.preparationTimeValues,exports.getDefaultImagesFrontmatter=r.getDefaultImagesFrontmatter,exports.prohibitedWordsInAltTitle=r.prohibitedWordsInAltTitle,exports.getOpenAiBasedImagePrompt=s.getOpenAiBasedImagePrompt,exports.getOpenAiBasedImagePromptDalle2=s.getOpenAiBasedImagePromptDalle2,exports.getStableDiffusionImagePrompt=s.getStableDiffusionImagePrompt,exports.AUTHORS_INFO=a.AUTHORS_INFO,exports.AUTHORS_META=a.AUTHORS_META,exports.PAGES_SEO=a.PAGES_SEO,Object.defineProperty(exports,"PageNames",{enumerable:!0,get:function(){return a.PageNames}}),exports.gpt35Articles=o,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: FeastFrenzy is your ultimate online destination for discovering a delightful array of recipes and culinary inspirations. This unique infotainment portal caters to food enthusiasts, home cooks, and aspiring chefs, providing them with easy-to-follow recipes, expert cooking tips, and engaging content to elevate their culinary skills.\n - Detailed description: FeastFrenzy is a comprehensive infotainment portal dedicated to the art of cooking and the joy of sharing food. The website features a wide variety of recipes ranging from quick weeknight dinners to elaborate festive feasts, accommodating diverse dietary preferences and cultural cuisines. Users can explore step-by-step guides, ingredient breakdowns, and cooking techniques that demystify the culinary process. Beyond recipes, FeastFrenzy emphasizes the storytelling aspect of food, inviting readers to embark on a gastronomic journey that celebrates flavors, traditions, and innovations in the kitchen. Whether you are looking for tips on meal prep, kitchen hacks, or food pairing suggestions, FeastFrenzy serves as a vibrant community hub for food lovers eager to learn and share their culinary adventures.\n - Target audience: FeastFrenzy primarily targets food enthusiasts of all skill levels, including home cooks, culinary students, and anyone interested in enhancing their cooking abilities. The portal appeals to individuals seeking healthy, easy-to-make recipes, as well as those keen on exploring gourmet dishes and unique culinary techniques. Additionally, it caters to diverse demographics, from busy professionals looking for quick meal solutions to families wanting to bond over cooking, making it a go-to resource for anyone passionate about food and cooking.\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## Recipe Overview\n - Dish Description\n - Ingredients List\n\n## Step-by-Step Instructions\n - Preparation Steps\n - Cooking Process\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 - Recipe Overview, 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 = "food lovers of all ages";
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: FeastFrenzy is your ultimate online destination for discovering a delightful array of recipes and culinary inspirations. This unique infotainment portal caters to food enthusiasts, home cooks, and aspiring chefs, providing them with easy-to-follow recipes, expert cooking tips, and engaging content to elevate their culinary skills.\n - Detailed description: FeastFrenzy is a comprehensive infotainment portal dedicated to the art of cooking and the joy of sharing food. The website features a wide variety of recipes ranging from quick weeknight dinners to elaborate festive feasts, accommodating diverse dietary preferences and cultural cuisines. Users can explore step-by-step guides, ingredient breakdowns, and cooking techniques that demystify the culinary process. Beyond recipes, FeastFrenzy emphasizes the storytelling aspect of food, inviting readers to embark on a gastronomic journey that celebrates flavors, traditions, and innovations in the kitchen. Whether you are looking for tips on meal prep, kitchen hacks, or food pairing suggestions, FeastFrenzy serves as a vibrant community hub for food lovers eager to learn and share their culinary adventures.\n - Target audience: FeastFrenzy primarily targets food enthusiasts of all skill levels, including home cooks, culinary students, and anyone interested in enhancing their cooking abilities. The portal appeals to individuals seeking healthy, easy-to-make recipes, as well as those keen on exploring gourmet dishes and unique culinary techniques. Additionally, it caters to diverse demographics, from busy professionals looking for quick meal solutions to families wanting to bond over cooking, making it a go-to resource for anyone passionate about food and cooking.\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## Recipe Overview\n - Dish Description\n - Ingredients List\n\n## Step-by-Step Instructions\n - Preparation Steps\n - Cooking Process\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 - Recipe Overview, 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",o="synthesizing the information presented throughout",a="food lovers of all ages",r="any numbers, image, slug, step, seo, hand / hands, men, women, human, people, chief, preparing, process, cooking, mixing, serving, tasting, rolling",s=`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$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=o,exports.FILTERS_INFO=s,exports.IMAGES_PROHIBITED_WORDS=r,exports.START_STEP=n,exports.TARGET_AUDIENCE=a,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 o=({title:o,alt:a,articleTitle:r})=>({prompt:`Award-winning hyper-real cinematic photo of a ${o}, ${a}, for an article ${r} from professional food photograph for a glossy recipe magazine, food style photography, glossy recipe magazine, photorealistic, ultra realistic, maximum detail, highly detailed, commercial photography, foreground focus, delish.com, allrecipes.com, foodnetwork.com, epicurious, instagram, 4K, 8K, volumetric light, cinematic, octane render, uplight, no blur, depth of field, dof, film, bokeh, foreground focus, 35mm photograph`,negativePrompt:e.SD_NEGATIVE_PROMPT}),a=({title:e,alt:o,articleTitle:a})=>`I NEED a hyper-real illustration of a ${e} at food style photography, ${o}, for an article ${a} 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=a,exports.getOpenAiBasedImagePromptDalle2=r,exports.getStableDiffusionImagePrompt=o;
@@ -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:"Famous Chefs and Culinary Artists | FeastFrenzy",description:"Discover the passionate culinary masters behind your favorite recipes. 🍳👩‍🍳 Get inspired by their stories and creations!"},[exports.PageNames.Home]:{title:"Delicious Recipes & Culinary Tips | FeastFrenzy",description:"Join the culinary celebration with FeastFrenzy! 🍽️ Explore mouthwatering recipes, cooking tips, and food inspiration for every occasion."},[exports.PageNames.NotFound]:{title:"Page Not Found | FeastFrenzy",description:"Oops! The page you're looking for doesn't exist. 🍴 Let's get you back to delicious recipes and culinary magic!"},[exports.PageNames.AboutUs]:{title:"About FeastFrenzy | Culinary Passion Unleashed",description:"Learn more about FeastFrenzy and our love for all things culinary! ❤️ Discover our mission to inspire your kitchen adventures."},[exports.PageNames.PrivacyPolicy]:{title:"Privacy Policy | FeastFrenzy",description:"Your privacy matters to us! 🔒 Read our Privacy Policy to understand how we handle your information at FeastFrenzy."},[exports.PageNames.Terms]:{title:"Terms and Conditions | FeastFrenzy",description:"Stay informed with our Terms and Conditions. 📜 Know your rights and responsibilities when using FeastFrenzy!"},[exports.PageNames.Sitemap]:{title:"Sitemap | Explore FeastFrenzy",description:"Navigate your way through FeastFrenzy easily! 🗺️ Check out our Sitemap for all the delicious recipes and culinary content."}},a=[{name:"Sanjeev Kapoor",description:"Sanjeev Kapoor is a celebrated Indian chef, entrepreneur, and author with over three decades of experience in the culinary world. He is known for his innovative and authentic Indian recipes, hosting the popular television show 'Khana Khazana.' Sanjeev has authored numerous cookbooks and is dedicated to promoting Indian cuisine globally.",meta_title:"Sanjeev Kapoor - Renowned Indian Chef and Cookbook Author",meta_description:"Explore authentic Indian recipes and culinary tips from Sanjeev Kapoor, a celebrated chef with over 30 years of experience in the culinary arts."},{name:"Nisha Madhulika",description:"Nisha Madhulika is a renowned Indian food blogger and YouTube personality known for her easy-to-follow vegetarian recipes. With a passion for cooking and 15 years of experience in the culinary realm, she encourages home cooks to create and enjoy Indian cuisine. Her vibrant recipes and engaging storytelling have inspired millions.",meta_title:"Nisha Madhulika - Expert in Vegetarian Indian Cuisine",meta_description:"Discover tasty vegetarian recipes from Nisha Madhulika, a prominent food blogger with 15 years of culinary experience, inspiring home cooks everywhere."},{name:"Tarla Dalal",description:"The late Tarla Dalal was a pioneering Indian chef, cookbook author, and nutrition expert who transformed Indian cooking. With over 200 cookbooks and more than 18 million copies sold, her legacy lives on through her approachable recipes and culinary tips. She focused on healthy Indian cooking and made culinary knowledge accessible to everyone.",meta_title:"Tarla Dalal - Iconic Chef and Indian Recipe Author",meta_description:"Explore a treasure trove of healthy Indian recipes with Tarla Dalal, an iconic chef and author who made Indian cooking accessible to all."},{name:"Vikas Khanna",description:"Vikas Khanna is a Michelin-starred chef, restaurateur, and author known for his inventive take on Indian cuisine. With a career spanning over 20 years, Vikas has successfully blended traditional Indian flavors with modern culinary techniques, inspiring a global audience. He is also an avid humanitarian and filmmaker.",meta_title:"Vikas Khanna - Michelin-Starred Indian Chef and Author",meta_description:"Discover innovative Indian recipes from Vikas Khanna, a Michelin-starred chef, celebrated restaurateur, and author dedicated to elevating Indian cuisine."},{name:"Pooja Dhingra",description:"Pooja Dhingra is a pastry chef and entrepreneur known for her delectable desserts and pastries. She founded 'Le15 Patisserie' in Mumbai and has authored several cookbooks focusing on baking. With a passion for fusion desserts, Pooja shares recipes that bring together Indian flavors and classic techniques.",meta_title:"Pooja Dhingra - Renowned Pastry Chef and Author",meta_description:"Indulge in sumptuous desserts with Pooja Dhingra, a talented pastry chef and author celebrated for her innovative baking recipes and techniques."},{name:"Ramya Sriram",description:"Ramya Sriram is a food blogger and author specializing in South Indian cuisine. With a rich heritage of cooking passed down through generations, she creates authentic recipes that highlight the flavors of her culture. Ramya aims to bring the beauty of South Indian culinary traditions to a wider audience.",meta_title:"Ramya Sriram - South Indian Cuisine Expert and Author",meta_description:"Explore authentic South Indian recipes with Ramya Sriram, a passionate food blogger sharing her culinary heritage through delicious and traditional dishes."},{name:"Karan Bilimoria",description:"Karan Bilimoria is an Indian entrepreneur and food writer who founded the well-known Cobra Beer brand. He blends culinary artistry with entrepreneurial insight, emphasizing craft brewing and food pairings. Karan shares articles that inspire pairing traditional Indian food with craft beer to elevate the dining experience.",meta_title:"Karan Bilimoria - Entrepreneur and Culinary Writer",meta_description:"Discover unique food and craft beer pairings with Karan Bilimoria, an innovator embracing the synergy between Indian cuisine and quality brewing."},{name:"Anita Chowdhury",description:"Anita Chowdhury is a culinary enthusiast and recipe developer known for her fusion of Indian flavors with global cuisines. Utilizing her extensive travel experiences, Anita crafts unique recipes that tell a story while being easy for home cooks to recreate. She inspires cooking as an art form.",meta_title:"Anita Chowdhury - Fusion Culinary Artist and Recipe Developer",meta_description:"Discover exciting fusion recipes from Anita Chowdhury, an innovator blending Indian flavors with global cuisines for the adventurous home cook."},{name:"Sohail M. Khan",description:"Sohail M. Khan is a food critic, blogger, and author known for his expertise in Middle Eastern and Indian fusion cuisine. With a deep understanding of spices and flavor profiles, he curates recipes that introduce readers to unique culinary experiences that celebrate diversity in food.",meta_title:"Sohail M. Khan - Food Critic and Fusion Cuisine Expert",meta_description:"Explore diverse culinary experiences with Sohail M. Khan, a food critic and author who specializes in Middle Eastern and Indian fusion recipes."},{name:"Simran Talwar",description:"Simran Talwar is a young and vibrant food blogger who shares her passion for healthy and vegetarian Indian cooking. Inspired by sustainability, she creates recipes that focus on seasonal ingredients, making healthy eating accessible and enjoyable for everyone. Her blog captures the essence of modern Indian cooking.",meta_title:"Simran Talwar - Young Culinary Blogger Promoting Healthy Indian Cooking",meta_description:"Join Simran Talwar in her culinary journey of healthy vegetarian Indian recipes, focusing on seasonal ingredients for a delightful and sustainable lifestyle."},{name:"Nisha Sharma",description:"Nisha Sharma is a renowned food blogger of Indian origin, specializing in traditional Indian recipes with a modern twist. With over 10 years of culinary experience, she has been featured in various food magazines and TV shows. Nisha is passionate about sharing her love of Indian cuisine and helping home cooks master the art of flavorful dishes.",meta_title:"Nisha Sharma - Indian Culinary Expert & Food Blogger",meta_description:"Explore authentic Indian recipes and innovative dishes by Nisha Sharma, a seasoned food blogger with over 10 years of experience in the culinary world. Join her on a delicious journey with FeastFrenzy!"},{name:"Raj Patel",description:"Raj Patel is a chef and food writer known for his expertise in Indian spices and street food. Hailing from Mumbai, he brings his rich cultural background and over 15 years of culinary experience to every dish. Raj's articles cater to food enthusiasts looking for authentic Indian street food recipes.",meta_title:"Raj Patel - Street Food Enthusiast & Chef",meta_description:"Delve into the vibrant world of Indian street food with Raj Patel, a culinary expert from Mumbai. Discover amazing recipes that reflect the true flavors of India on FeastFrenzy!"},{name:"Anita Mehta",description:"Anita Mehta is an Indian food enthusiast and recipe developer specializing in healthy Indian dishes. With a degree in nutrition and over 8 years of blogging experience, she focuses on creating wholesome meals that are both nutritious and delicious. Anita aims to promote the importance of balanced eating through her culinary creations.",meta_title:"Anita Mehta - Healthy Indian Recipes Creator",meta_description:"Join Anita Mehta on FeastFrenzy for delightful and healthy Indian recipes that nourish your body and satisfy your palate. Experience the blend of nutrition and flavor!"},{name:"Vikram Singh",description:"Vikram Singh is a passionate food writer and home chef who specializes in vegetarian Indian cuisine. With his roots in the heart of Punjab, Vikram draws inspiration from his family recipes, combining traditional techniques with modern cooking methods. His engaging articles are perfect for both novice and experienced cooks.",meta_title:"Vikram Singh - Vegetarian Indian Cuisine Expert",meta_description:"Discover flavorful vegetarian Indian recipes with Vikram Singh, a culinary enthusiast dedicated to sharing his family’s culinary heritage on FeastFrenzy!"},{name:"Pooja Bansal",description:"Pooja Bansal is a food stylist and recipe writer with a keen eye for aesthetics and flavor. Originally from Delhi, she has spent over 5 years combining visual artistry with culinary delight in her articles, making Indian cooking both accessible and appealing. Pooja inspires her readers to create beautiful dishes that impress.",meta_title:"Pooja Bansal - Food Stylist & Indian Recipe Writer",meta_description:"Elevate your culinary skills with Pooja Bansal's creative Indian recipes and food styling tips. Discover the beauty of cooking on FeastFrenzy!"},{name:"Arjun Desai",description:"Arjun Desai is a dedicated food historian and recipe curator who explores the heritage of Indian cuisine. With a passion for storytelling through food, Arjun unearths forgotten recipes and shares them with a modern audience. His research-backed articles give readers insights into the cultural significance of each dish.",meta_title:"Arjun Desai - Indian Food Historian & Recipe Curator",meta_description:"Uncover the rich history of Indian cuisine with Arjun Desai. Explore timeless recipes and cultural insights on FeastFrenzy!"},{name:"Meena Ravi",description:"Meena Ravi is an experienced food blogger from the southern part of India, known for her delicious South Indian recipes. With over 12 years of experience in cooking and blogging, she aims to bring the traditional flavors of South India to a wider audience while promoting healthy cooking practices.",meta_title:"Meena Ravi - South Indian Cuisine Specialist",meta_description:"Savor authentic South Indian flavors with Meena Ravi's recipes. Discover healthy and traditional dishes on FeastFrenzy!"},{name:"Sanju Roy",description:"Sanju Roy is an innovative chef and food writer who specializes in fusion cuisine, merging traditional Indian recipes with global flavors. With a culinary degree and years of working in diverse kitchens, Sanju inspires food lovers to push culinary boundaries while maintaining cultural roots.",meta_title:"Sanju Roy - Fusion Chef & Recipe Innovator",meta_description:"Explore the exciting world of fusion cuisine with Sanju Roy. Learn to create unique recipes that blend Indian flavors with global culinary styles on FeastFrenzy!"},{name:"Lakshmi Menon",description:"Lakshmi Menon is a passionate food writer with a special focus on Ayurvedic cooking. With extensive knowledge of Ayurvedic principles and over a decade of experience, she shares recipes that not only taste great but also promote wellness and healing through food.",meta_title:"Lakshmi Menon - Ayurvedic Cooking Advocate",meta_description:"Discover the healing power of food with Lakshmi Menon’s Ayurvedic recipes. Stay healthy and balanced with her culinary expertise on FeastFrenzy!"},{name:"Ravi Kumar",description:"Ravi Kumar is a dedicated home cook and writer who focuses on quick and easy Indian recipes for busy families. His relatable approach and practical advice make Indian cooking accessible to everyone, regardless of time constraints or culinary experience. Ravi’s goal is to inspire families to cook together.",meta_title:"Ravi Kumar - Quick & Easy Indian Recipes",meta_description:"Find time-saving and delicious Indian recipes with Ravi Kumar. Perfect for busy families looking to enjoy authentic home-cooked meals on FeastFrenzy!"},{name:"Vikram Bahl",description:"Vikram Bahl is a renowned food blogger and culinary expert with over a decade of experience in Indian cuisine. He specializes in traditional Indian recipes and modern twists on classic dishes. Vikram's passion for cooking shines through his engaging articles, where he shares family secrets and cooking tips gleaned from his grandmother's kitchen.",meta_title:"Vikram Bahl - Indian Culinary Expert & Food Blogger",meta_description:"Explore delicious recipes and culinary tips from Vikram Bahl, a seasoned food blogger specializing in traditional and modern Indian cuisine."},{name:"Anjali Deshmukh",description:"Anjali Deshmukh is a food enthusiast and a trained chef who has honed her skills in various culinary schools across India. With a focus on healthy vegetarian recipes, Anjali aims to promote wholesome eating through her creativity in the kitchen, making nutritious food accessible to everyone.",meta_title:"Anjali Deshmukh - Healthy Vegetarian Recipes from a Culinary Chef",meta_description:"Discover healthy and delicious vegetarian recipes with Anjali Deshmukh, a culinary chef dedicated to promoting wholesome eating through her creative insights."},{name:"Rajesh Mehta",description:"Rajesh Mehta is a passionate home cook and digital content creator best known for his delectable Indian and fusion recipes. With a background in event organizing, Rajesh brings a vibrant flair to his cooking, often hosting workshops and cooking classes to share his culinary knowledge with others.",meta_title:"Rajesh Mehta - Home Cook & Fusion Culinary Innovator",meta_description:"Join Rajesh Mehta on a culinary journey through vibrant Indian and fusion recipes, enriched by his experience in event organizing and cooking classes."},{name:"Priya Sinha",description:"Priya Sinha is an award-winning food stylist and recipe developer with a love for visual storytelling. Her work focuses on food photography, along with creating tantalizing recipes inspired by her rich Indian heritage. Priya's unique style captivates food lovers and aspiring chefs alike.",meta_title:"Priya Sinha - Award-Winning Food Stylist & Recipe Developer",meta_description:"Indulge in Priya Sinha's stylish recipes that blend creativity and Indian culinary heritage, brought to life through captivating food photography."},{name:"Ravi Chandrasekhar",description:"Ravi Chandrasekhar is a culinary influencer known for his expertise in regional Indian cuisines. His deep-seated passion for exploring local ingredients and traditional cooking methods motivates him to share vibrant recipes that highlight the diversity of Indian food culture.",meta_title:"Ravi Chandrasekhar - Expert in Regional Indian Cuisines",meta_description:"Explore the rich diversity of Indian food culture with Ravi Chandrasekhar's authentic and regional recipes that celebrate local ingredients and traditional cooking."},{name:"Neha Kapoor",description:"Neha Kapoor is a culinary writer and food stylist who focuses on family-friendly recipes that feature Indian flavors. With an emphasis on easy-to-follow instructions, her articles aim to make exquisite home-cooked meals attainable for everyone, regardless of their cooking skills.",meta_title:"Neha Kapoor - Culinary Writer & Family Recipe Specialist",meta_description:"Discover easy and delicious family-friendly recipes from Neha Kapoor, a culinary writer who emphasizes Indian flavors for every home cook."},{name:"Arvind Iyer",description:"Arvind Iyer is a self-taught chef and food blogger who shares his culinary adventures through his enticing recipes featuring Indian street food. His vibrant writing style and engaging photography elevate his blog, making it a go-to destination for lovers of Indian street cuisine.",meta_title:"Arvind Iyer - Street Food Blogger and Culinary Adventurer",meta_description:"Join Arvind Iyer's culinary adventures with mouth-watering recipes inspired by Indian street food, beautifully captured through vivid photography."},{name:"Sneha Joshi",description:"Sneha Joshi is a talented food writer and recipe curator with a particular focus on sweets and desserts. Drawing inspiration from Indian festivals and traditions, she inspires her readers to recreate classic Indian sweets with a modern twist.",meta_title:"Sneha Joshi - Dessert Specialist and Food Writer",meta_description:"Delight in the world of Indian sweets and desserts with Sneha Joshi, a food writer and recipe curator dedicated to bringing traditional recipes to life with a modern touch."},{name:"Karan Patel",description:"Karan Patel is a food scientist turned food blogger who focuses on the science behind cooking. With strong roots in Indian wellness cuisine, Karan shares nutritious and flavorful recipes backed by scientific insights, promoting a healthier lifestyle.",meta_title:"Karan Patel - Food Scientist & Wellness Cuisine Advocate",meta_description:"Discover the science behind flavorful cooking with Karan Patel, a food scientist and blogger promoting nutritious Indian recipes for a healthier lifestyle."},{name:"Aditi Sharma",description:"Aditi Sharma is a foodie and travel writer with a knack for discovering unique flavors from India’s diverse regions. Aditi’s articles reflect her passion for experiential cooking, showcasing recipes inspired by her travels and encounters with local chefs.",meta_title:"Aditi Sharma - Foodie & Travel Writer Exploring Indian Flavors",meta_description:"Join Aditi Sharma in her exploration of unique Indian flavors, as she shares recipes inspired by her culinary travels and experiences with local chefs."},{name:"Nisha Bansal",description:"Nisha Bansal is a renowned food blogger with over a decade of experience in Indian cuisine. With a passion for traditional recipes and healthy alternatives, she has contributed to several culinary magazines and is known for her easy-to-follow recipes that blend authenticity with innovation.",meta_title:"Nisha Bansal - Expert Indian Culinary Blogger",meta_description:"Discover mouthwatering Indian recipes and culinary tips from Nisha Bansal, a food blogger with over ten years of experience in creating authentic and healthy dishes."},{name:"Rajeev Kumar",description:"Rajeev Kumar is a celebrated chef and author who specializes in regional Indian dishes. With formal culinary training and years of experience at prestigious restaurants, his articles reveal the secrets of traditional Indian cooking, making it accessible to home chefs around the world.",meta_title:"Rajeev Kumar - Culinary Maestro of Indian Cuisine",meta_description:"Join Rajeev Kumar as he shares his expertise in regional Indian cuisine, offering recipes that celebrate the rich flavors and traditions of India's culinary heritage."},{name:"Sita Mehta",description:"Sita Mehta is a food enthusiast and author known for her fusion recipes that marry Indian flavors with global cuisines. With a background in food science, she brings a unique scientific perspective to her cooking, ensuring each dish is both delicious and nutritious.",meta_title:"Sita Mehta - Fusion Recipe Creator",meta_description:"Explore innovative fusion recipes with Sita Mehta, a culinary author who blends Indian flavors with international cuisines, making cooking fun and accessible."},{name:"Vikram Joshi",description:"Vikram Joshi is a freelance food writer and culinary expert with an extensive background in traditional Indian cooking techniques. His writing aims to inspire home cooks to explore the rich depth of Indian spices and flavors through easy, step-by-step recipes.",meta_title:"Vikram Joshi - Traditional Indian Cooking Specialist",meta_description:"Learn the art of traditional Indian cooking with Vikram Joshi, a culinary expert sharing his insights and simple recipes to help you master Indian flavors."},{name:"Priya Iyer",description:"Priya Iyer is an innovative food stylist and photographer whose work has been featured in various food publications. With a keen eye for detail and a passion for vibrant dishes, she aims to inspire others to appreciate the aesthetic aspect of cooking as well.",meta_title:"Priya Iyer - Food Stylist and Culinary Author",meta_description:"Join Priya Iyer on a visual culinary journey where food styling meets Indian recipes, inspiring you to create beautiful and delicious dishes at home."},{name:"Sunil Khanna",description:"Sunil Khanna is a chef with a flair for street food. His articles focus on reviving classic Indian street food recipes and sharing stories behind them. With years spent in food stalls across India, his passion shines through every dish.",meta_title:"Sunil Khanna - Street Food Enthusiast and Chef",meta_description:"Discover the essence of Indian street food with Sunil Khanna, a chef dedicated to sharing authentic recipes and the stories behind India’s beloved street eats."},{name:"Neelam Agarwal",description:"Neelam Agarwal is a talented home cook turned writer who shares her family's cherished recipes. With a focus on the emotional connection food creates, she aims to preserve culinary traditions through her easy and heartfelt recipes.",meta_title:"Neelam Agarwal - Preserving Family Recipes",meta_description:"Experience culinary nostalgia with Neelam Agarwal as she shares her family's cherished recipes, focusing on the emotional connections food brings to our lives."},{name:"Ravi Patel",description:"Ravi Patel is a food scientist and home cook who combines research with culinary creativity. His expertise helps him create scientifically sound recipes that enhance the cooking experience, allowing chefs of all levels to enjoy the art of Indian cooking.",meta_title:"Ravi Patel - Food Scientist and Culinary Innovator",meta_description:"Elevate your cooking with Ravi Patel, a food scientist blending research and culinary creativity to deliver unique Indian recipes that are both delicious and precise."},{name:"Meera Gupta",description:"Meera Gupta is a health-conscious food blogger specializing in gluten-free Indian recipes. Her passion for food and wellness shines through her articles, which emphasize the importance of healthy eating while still enjoying the rich flavors of Indian cuisine.",meta_title:"Meera Gupta - Gluten-Free Indian Cooking Expert",meta_description:"Discover healthy and delicious gluten-free Indian recipes with Meera Gupta, a food blogger dedicated to promoting wellness through flavorful cooking."},{name:"Sophie Turner",description:"Sophie Turner is a seasoned culinary expert with over 15 years of experience in recipe development. She is a passionate food blogger and has traveled extensively to explore diverse culinary traditions from around the globe. Her expertise lies in creating fusion dishes that embrace flavors from various cultures. You can often find her experimenting in her home kitchen or participating in local food festivals.",meta_title:"Sophie Turner - Culinary Expert & Recipe Developer | FeastFrenzy",meta_description:"Discover the culinary journey of Sophie Turner, a seasoned expert and recipe developer at FeastFrenzy. Explore her innovative fusion recipes that capture global flavors."},{name:"Liam Chen",description:"Liam Chen is a professional chef and food writer with a specialization in Asian cuisines. With a culinary degree from a prestigious culinary school and years of experience in Michelin-starred restaurants, Liam shares invaluable insights into authentic cooking techniques and ingredients. His articles often highlight seasonal produce and elevate traditional recipes for modern kitchens.",meta_title:"Liam Chen - Authentic Asian Cuisine & Cooking Techniques | FeastFrenzy",meta_description:"Join Liam Chen at FeastFrenzy as he shares his expertise in authentic Asian cooking. Explore recipes that honor tradition while embracing modern culinary trends."},{name:"Maria Garcia",description:"Maria Garcia is a renowned food stylist and recipe creator with over a decade of experience in the culinary industry. Known for her vibrant, colorful dishes that are as delicious as they are photogenic, Maria enjoys crafting plant-based recipes that cater to all diets. She believes that cooking should be a joy, and her approachable writing style reflects this philosophy.",meta_title:"Maria Garcia - Plant-Based Recipe Creator & Food Stylist | FeastFrenzy",meta_description:"Explore the delicious world of plant-based cuisine with Maria Garcia at FeastFrenzy. Discover vibrant recipes that delight the senses and nourish the soul."},{name:"Anand Patel",description:"Anand Patel is an award-winning food journalist and cookbook author, known for his engaging storytelling and rich culinary narratives. With a passion for Indian cuisine, Anand blends traditional cooking with modern flavors and techniques. His work has appeared in various culinary publications, and he often hosts cooking workshops to inspire home cooks to try new things.",meta_title:"Anand Patel - Indian Cuisine & Culinary Storytelling | FeastFrenzy",meta_description:"Dive into the rich flavors of Indian cuisine with Anand Patel at FeastFrenzy. Explore his stories and recipes that bring the tastes of India to your kitchen."},{name:"Isabella Rossi",description:"Isabella Rossi is an Italian chef and author who specializes in traditional Italian cooking. With roots in a family of chefs, Isabella has dedicated her life to preserving authentic Italian recipes while incorporating local ingredients. She shares her culinary expertise through mouth-watering recipes and personal anecdotes about her experiences in Italy.",meta_title:"Isabella Rossi - Traditional Italian Chef & Recipe Author | FeastFrenzy",meta_description:"Experience the essence of Italy with Isabella Rossi at FeastFrenzy. Discover authentic Italian recipes that honor tradition and celebrate local ingredients."},{name:"Omar El-Sayed",description:"Omar El-Sayed is a Middle Eastern culinary expert and author, particularly known for his passion for healthy and wholesome eating. With a background in nutrition, Omar creates recipes that prioritize health without sacrificing flavor. His unique fusion of traditional Middle Eastern dishes with contemporary health trends has gained him a loyal following.",meta_title:"Omar El-Sayed - Healthy Middle Eastern Cuisine & Nutrition Expert | FeastFrenzy",meta_description:"Explore healthy and delicious Middle Eastern recipes with Omar El-Sayed on FeastFrenzy. Discover a culinary journey that nourishes both the body and soul."},{name:"Chloe Harris",description:"Chloe Harris is a food writer and home cook who specializes in family-friendly recipes. With a background in nutrition, she aims to create dishes that are nutritious, budget-friendly, and easy to prepare. Chloe believes that cooking should be enjoyable for families, and her engaging approach makes her recipes accessible for everyone.",meta_title:"Chloe Harris - Family-Friendly Recipes & Nutritious Cooking | FeastFrenzy",meta_description:"Join Chloe Harris at FeastFrenzy for family-friendly recipes that nourish and delight. Discover budget-conscious cooking that everyone will love."},{name:"Frederick Klein",description:"Frederick Klein is a wine educator and gourmet food enthusiast who merges the art of food and wine pairing. With over 20 years in the culinary industry, he shares insights on selecting the perfect wine to elevate your dining experience. Frederick’s articles often explore gourmet techniques and sophisticated recipes that impress at any occasion.",meta_title:"Frederick Klein - Wine & Gourmet Food Expert | FeastFrenzy",meta_description:"Elevate your dining experience with Frederick Klein at FeastFrenzy. Discover expert wine pairings and gourmet recipes for unforgettable meals."},{name:"Aisha Jabari",description:"Aisha Jabari is a food anthropologist and recipe developer who focuses on West African cuisine. She combines her love for culinary history with contemporary cooking methods, bringing traditional flavors into modern households. Aisha’s writings often reflect her cultural heritage while encouraging culinary exploration and innovation.",meta_title:"Aisha Jabari - West African Cuisine & Culinary Anthropology | FeastFrenzy",meta_description:"Explore the vibrant flavors of West African cuisine with Aisha Jabari on FeastFrenzy. Discover recipes that celebrate culture and innovation in cooking."},{name:"Marcus White",description:"Marcus White is a barbecue enthusiast and expert who shares his love for grilling and smoking meats. With years of experience competing in barbecue competitions, he provides tips, techniques, and mouth-watering recipes for outdoor cooking. His approachable style makes barbecue accessible for all skill levels.",meta_title:"Marcus White - Barbecue Expert & Outdoor Cooking Enthusiast | FeastFrenzy",meta_description:"Join Marcus White at FeastFrenzy for expert barbecue tips and delicious outdoor recipes. Explore the art of grilling with easy-to-follow techniques."},{name:"Emma Jennings",description:"Emma Jennings is a seasoned culinary expert and food photographer with over a decade of experience in the culinary world. She has traveled to various countries, bringing back a wealth of knowledge about diverse cuisines and traditional cooking techniques. Emma is passionate about making gourmet recipes accessible to everyone and believes that cooking should be an enjoyable exploration of flavors.",meta_title:"Emma Jennings | FeastFrenzy Chef & Culinary Expert",meta_description:"Discover recipes, cooking tips, and culinary delights from Emma Jennings, a world-traveling chef specialized in gourmet cuisine at FeastFrenzy."},{name:"Sofia Rodriguez",description:"Sofia Rodriguez is a culinary historian and recipe developer from Mexico City. With her extensive background in anthropology and gastronomy, she focuses on the traditional cuisines of Latin America. Sofia has been featured in numerous culinary magazines and is passionate about preserving cultural heritage through food.",meta_title:"Sofia Rodriguez | Latin American Culinary Specialist at FeastFrenzy",meta_description:"Explore authentic Latin American recipes with Sofia Rodriguez, a culinary historian dedicated to cultural preservation at FeastFrenzy."},{name:"Noah Thompson",description:"Noah Thompson is a grilling and barbecue enthusiast from Texas, with over 20 years of experience perfecting the art of smoke and flame. Awarded multiple titles in barbecue competitions, Noah shares his secrets to grilling success and offers a diverse range of recipes from classic ribs to modern vegetarian dishes.",meta_title:"Noah Thompson | BBQ and Grilling Authority at FeastFrenzy",meta_description:"Get grilling tips and delicious barbecue recipes from Noah Thompson, a competitive pitmaster at FeastFrenzy."},{name:"Aisha Patel",description:"Aisha Patel is a nutritionist and vegan cook from London, specializing in plant-based recipes that prioritize health without compromising on taste. With a strong commitment to sustainability, she creates delicious recipes that cater to a variety of dietary needs and preferences.",meta_title:"Aisha Patel | Vegan Culinary Innovator at FeastFrenzy",meta_description:"Discover healthy and flavorful vegan recipes with Aisha Patel, a nutritionist and passionate food creator at FeastFrenzy."},{name:"Oliver Brown",description:"Oliver Brown is a pastry chef known for his exquisite dessert creations. With experience at top restaurants in Paris, he now shares his sweet recipes and baking tips at FeastFrenzy, inspiring both amateur bakers and seasoned chefs to embrace the art of pastry.",meta_title:"Oliver Brown | Master Pastry Chef at FeastFrenzy",meta_description:"Indulge in delightful desserts and expert baking tips with Oliver Brown, a master pastry chef at FeastFrenzy."},{name:"Anya Petrov",description:"Anya Petrov is a food stylist and home cook from Moscow. With a love for rustic, hearty meals, Anya combines traditional Russian recipes with modern twists to create comforting dishes that celebrate her heritage.",meta_title:"Anya Petrov | Rustic Culinary Artist at FeastFrenzy",meta_description:"Experience the warmth of rustic Russian cooking with Anya Petrov's recipes and culinary tips at FeastFrenzy."},{name:"Rajesh Kumar",description:"Rajesh Kumar is a chef specializing in Indian cuisine, renowned for his flavorful and aromatic dishes that reflect the rich culinary traditions of India. He has worked in various upscale restaurants and teaches cooking classes, sharing his passion for spices and techniques with food lovers around the world.",meta_title:"Rajesh Kumar | Indian Cuisine Expert at FeastFrenzy",meta_description:"Delve into the flavorful world of Indian cooking with Rajesh Kumar's authentic recipes and expert cooking advice at FeastFrenzy."},{name:"Chloe Smith",description:"Chloe Smith is a food and travel writer from Sydney, who combines her love for exploration with culinary discovery. She shares fresh, seasonal recipes inspired by her global travels, encouraging readers to use locally sourced ingredients.",meta_title:"Chloe Smith | Travel-Inspired Culinary Writer at FeastFrenzy",meta_description:"Join Chloe Smith on her culinary adventures as she shares fresh recipes inspired by her travels at FeastFrenzy."},{name:"Maximillian Castañeda",description:"Maximillian Castañeda is a chef and home gardener who focuses on farm-to-table cooking. With experience in culinary arts and sustainable farming, he shares recipes that emphasize fresh, seasonal produce collected from his garden.",meta_title:"Maximillian Castañeda | Farm-to-Table Chef at FeastFrenzy",meta_description:"Discover the joy of garden-fresh cooking with Maximillian Castañeda's farm-to-table recipes at FeastFrenzy."}],n=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=n,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:#8e3b2b;--theme-color-8:#a45b4d;--theme-color-7:#c88473;--theme-color-6:#e9b2a0;--theme-color-5:#f2c6b6;--theme-color-3:#f7e7d4;--theme-color-2:#fdf1e7;--color-bg-layout:#fffbf1;--color-bg-hover:#ede2d0;--article-border-radius:25px;--btn-border-radius:10px;--category-border-radius:30px;}
@@ -0,0 +1 @@
1
+ @import "sizing.css";@import "colors.css";@import "fonts.css";@import "theme.css";
@@ -182,7 +182,7 @@ export declare const dataStructure: {
182
182
  export declare const authors: Record<string, string>;
183
183
  export declare const authorsNames: string[];
184
184
  export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83D\uDCAA\uD83C\uDFCB\uFE0F\u200D\u2642\uFE0F\uD83C\uDF4F\uD83D\uDCA1";
185
- export declare const categories: ("physicalHealth" | "mentalWellness" | "healthyEating" | "workoutRoutines" | "fitnessGear")[];
185
+ export declare const categories: ("healthyEating" | "physicalHealth" | "mentalWellness" | "workoutRoutines" | "fitnessGear")[];
186
186
  export declare const subcategories: string[];
187
187
  export declare const subsubcategories: string[];
188
188
  export type Category = keyof typeof dataStructure;
@@ -0,0 +1,199 @@
1
+ export declare const dataStructure: {
2
+ quickMeals: {
3
+ title: string;
4
+ description: string;
5
+ slug: string;
6
+ children: {
7
+ thirtyMinuteRecipes: {
8
+ title: string;
9
+ description: string;
10
+ slug: string;
11
+ children: null;
12
+ };
13
+ onePotDishes: {
14
+ title: string;
15
+ description: string;
16
+ slug: string;
17
+ children: null;
18
+ };
19
+ freezerFriendlyMeals: {
20
+ title: string;
21
+ description: string;
22
+ slug: string;
23
+ children: null;
24
+ };
25
+ budgetFriendlyMeals: {
26
+ title: string;
27
+ description: string;
28
+ slug: string;
29
+ children: null;
30
+ };
31
+ other: {
32
+ title: string;
33
+ description: string;
34
+ slug: string;
35
+ children: null;
36
+ };
37
+ };
38
+ };
39
+ healthyEating: {
40
+ title: string;
41
+ description: string;
42
+ slug: string;
43
+ children: {
44
+ vegetarianRecipes: {
45
+ title: string;
46
+ description: string;
47
+ slug: string;
48
+ children: null;
49
+ };
50
+ veganOptions: {
51
+ title: string;
52
+ description: string;
53
+ slug: string;
54
+ children: null;
55
+ };
56
+ lowCarbDishes: {
57
+ title: string;
58
+ description: string;
59
+ slug: string;
60
+ children: null;
61
+ };
62
+ glutenFreeRecipes: {
63
+ title: string;
64
+ description: string;
65
+ slug: string;
66
+ children: null;
67
+ };
68
+ other: {
69
+ title: string;
70
+ description: string;
71
+ slug: string;
72
+ children: null;
73
+ };
74
+ };
75
+ };
76
+ festiveDishes: {
77
+ title: string;
78
+ description: string;
79
+ slug: string;
80
+ children: {
81
+ holidaysAndCelebrations: {
82
+ title: string;
83
+ description: string;
84
+ slug: string;
85
+ children: null;
86
+ };
87
+ seasonalFavorites: {
88
+ title: string;
89
+ description: string;
90
+ slug: string;
91
+ children: null;
92
+ };
93
+ brunchIdeas: {
94
+ title: string;
95
+ description: string;
96
+ slug: string;
97
+ children: null;
98
+ };
99
+ partyAppetizers: {
100
+ title: string;
101
+ description: string;
102
+ slug: string;
103
+ children: null;
104
+ };
105
+ other: {
106
+ title: string;
107
+ description: string;
108
+ slug: string;
109
+ children: null;
110
+ };
111
+ };
112
+ };
113
+ internationalFlavors: {
114
+ title: string;
115
+ description: string;
116
+ slug: string;
117
+ children: {
118
+ italianCuisine: {
119
+ title: string;
120
+ description: string;
121
+ slug: string;
122
+ children: null;
123
+ };
124
+ asianCuisine: {
125
+ title: string;
126
+ description: string;
127
+ slug: string;
128
+ children: null;
129
+ };
130
+ mexicanDishes: {
131
+ title: string;
132
+ description: string;
133
+ slug: string;
134
+ children: null;
135
+ };
136
+ middleEasternFlavors: {
137
+ title: string;
138
+ description: string;
139
+ slug: string;
140
+ children: null;
141
+ };
142
+ other: {
143
+ title: string;
144
+ description: string;
145
+ slug: string;
146
+ children: null;
147
+ };
148
+ };
149
+ };
150
+ cookingTechniques: {
151
+ title: string;
152
+ description: string;
153
+ slug: string;
154
+ children: {
155
+ bakingMethods: {
156
+ title: string;
157
+ description: string;
158
+ slug: string;
159
+ children: null;
160
+ };
161
+ grillingTips: {
162
+ title: string;
163
+ description: string;
164
+ slug: string;
165
+ children: null;
166
+ };
167
+ knifeSkills: {
168
+ title: string;
169
+ description: string;
170
+ slug: string;
171
+ children: null;
172
+ };
173
+ preservingandCanning: {
174
+ title: string;
175
+ description: string;
176
+ slug: string;
177
+ children: null;
178
+ };
179
+ other: {
180
+ title: string;
181
+ description: string;
182
+ slug: string;
183
+ children: null;
184
+ };
185
+ };
186
+ };
187
+ };
188
+ export declare const authors: Record<string, string>;
189
+ export declare const authorsNames: string[];
190
+ export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83C\uDF7D\uFE0F\uD83D\uDC69\u200D\uD83C\uDF73\uD83E\uDD58\u2728";
191
+ export declare const categories: ("cookingTechniques" | "quickMeals" | "healthyEating" | "festiveDishes" | "internationalFlavors")[];
192
+ export declare const subcategories: string[];
193
+ export declare const subsubcategories: string[];
194
+ export type Category = keyof typeof dataStructure;
195
+ export type CategoryNode = (typeof dataStructure)[Category];
196
+ export type SubcategoryKeyByCategory<T extends Category> = (typeof dataStructure)[T]['children'];
197
+ export declare const startDate = "2024-09-18T00:00:00Z";
198
+ export declare const devBucketName = "idn-savorlifes-dev";
199
+ export declare const prodBucketName = "idn-savorlifes";
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./seo.js");const i={quickMeals:{title:"Quick Meals: Effortless and Delicious Culinary Creations 🍽️",description:"Explore our quick meals section for easy and scrumptious recipes perfect for busy lifestyles. From 30-minute meals to one-pot wonders, satisfy your cravings! 🌟",slug:"quick-meals",children:{thirtyMinuteRecipes:{title:"30-Minute Recipes: Culinary Delights in No Time ⏱️",description:"Discover a range of mouthwatering dishes that can be prepared in just 30 minutes! Perfect for anyone seeking quick yet delicious meal options. 🍝",slug:"thirty-minute-recipes",children:null},onePotDishes:{title:"One-Pot Dishes: Simple and Satisfying Meals in a Single Pot 🍲",description:"Enjoy fuss-free cooking with our collection of one-pot dishes that combine convenience and flavor. Perfect for busy weeknights or meal prep! 🍛",slug:"one-pot-dishes",children:null},freezerFriendlyMeals:{title:"Freezer-Friendly Meals: Prepare Ahead and Save Time 🥡",description:"Stock your freezer with delicious meals that are easy to prepare in advance, ensuring quick access to tasty dishes anytime! ❄️",slug:"freezer-friendly-meals",children:null},budgetFriendlyMeals:{title:"Budget-Friendly Meals: Tasty Recipes That Save You Money 💰",description:"Explore our smart cooking strategies with budget-friendly meals that don’t compromise on flavor. Cook delicious dishes while saving your wallet! 🌽",slug:"budget-friendly-meals",children:null},other:{title:"Other Quick Meals: Unique Recipes for Every Occasion 🎉",description:"Dive into our collection of additional quick meal recipes that range from snacks to main dishes, perfect for any situation and craving! 🍴",slug:"other-quick-meals",children:null}}},healthyEating:{title:"Healthy Eating: Discover Nutritious Recipes & Tips 🍏",description:"Explore a wide range of healthy eating options with SavorLifes. Find delicious recipes and cooking tips to enhance your culinary journey! 🥗",slug:"healthy-eating",children:{vegetarianRecipes:{title:"Vegetarian Recipes: Delicious & Nutritious Meals 🥦",description:"Dive into a world of vegetarian recipes that are both tasty and healthy! Perfect for anyone seeking vibrant flavors and nutritious meals. 🌱",slug:"vegetarian-recipes",children:null},veganOptions:{title:"Vegan Options: Flavorful Dishes for Everyone 🌿",description:"Discover delightful vegan options that satisfy your taste while keeping it healthy and cruelty-free! Explore amazing plant-based recipes today. 🥕",slug:"vegan-options",children:null},lowCarbDishes:{title:"Low Carb Dishes: Satisfy Your Cravings Healthily 🔥",description:"Explore an array of low carb dishes designed to indulge your taste buds without compromising your health—perfect for low-carb lifestyles! 💪",slug:"low-carb-dishes",children:null},glutenFreeRecipes:{title:"Gluten-Free Recipes: Tasty Options for Everyone 🍞",description:"Savor delicious gluten-free recipes that are easy to make and full of flavor. Great for families looking for healthy alternatives! 🌾",slug:"gluten-free-recipes",children:null},other:{title:"Other Healthy Eating: Unique Recipes & Tips 🥑",description:"Uncover a variety of other healthy eating recipes and tips that cater to diverse tastes and dietary needs. Elevate your cooking adventure! 🍽️",slug:"other-healthy-eating",children:null}}},festiveDishes:{title:"Indulge in Delectable Festive Dishes for Every Celebration 🎉",description:"Explore an array of festive dishes that elevate your culinary experiences. From holidays to seasonal favorites, we've got delicious recipes for everyone! 🍽️",slug:"festive-dishes",children:{holidaysAndCelebrations:{title:"Holidays and Celebrations: Gourmet Recipes to Celebrate 🎊",description:"Discover exquisite recipes for holidays and celebrations. Make every occasion special with delicious dishes that everyone will love! 🥳",slug:"holidays-and-celebrations",children:null},seasonalFavorites:{title:"Seasonal Favorites: Tasty Dishes for Every Season 🍂",description:"Embrace the flavors of the season with our favorite recipes. Enjoy seasonal ingredients that bring vibrancy to your table all year round! 🍴",slug:"seasonal-favorites",children:null},brunchIdeas:{title:"Brunch Ideas: Delightful Recipes for Perfect Mornings ☕",description:"Start your day right with scrumptious brunch ideas. From sweet to savory, these recipes are sure to impress your guests and enrich your mornings! 🍳",slug:"brunch-ideas",children:null},partyAppetizers:{title:"Party Appetizers: Bite-Sized Delights for Every Gathering 🎈",description:"Create unforgettable moments with our party appetizer recipes. Easy, tasty, and perfect for entertaining, these bites will wow your guests! 🥙",slug:"party-appetizers",children:null},other:{title:"Other Festive Delights: Unique Recipes for Special Occasions 🎇",description:"Explore unique festive recipes that don’t fit the usual categories. These delightful dishes will add a special touch to any occasion! 🎉",slug:"other-festive-delights",children:null}}},internationalFlavors:{title:"Explore International Flavors: Recipes from Around the World 🌍",description:"Dive into the vibrant world of international flavors! Discover recipes, cooking tips, and culinary arts from different cultures. 🍽️",slug:"international-flavors",children:{italianCuisine:{title:"Delight in Italian Cuisine: Authentic Recipes 🇮🇹",description:"Savor the essence of Italy with our authentic Italian cuisine recipes. From pastas to pizzas, every dish is a slice of heaven! 🍝",slug:"italian-cuisine",children:null},asianCuisine:{title:"Taste the Best of Asian Cuisine: Flavorful Recipes 🍜",description:"Embark on a culinary journey through Asia with our collection of flavorful recipes. Discover unique dishes from various cultures! 🌶️",slug:"asian-cuisine",children:null},mexicanDishes:{title:"Savor Delicious Mexican Dishes: Tacos, Nachos & More 🌮",description:"Bring the fiesta to your kitchen with our delicious Mexican dishes. Enjoy vibrant flavors and traditional recipes today! 🎉",slug:"mexican-dishes",children:null},middleEasternFlavors:{title:"Explore Middle Eastern Flavors: Spices & Recipes 🌿",description:"Discover the rich and diverse flavors of the Middle East. Try our recipes featuring aromatic spices and traditional dishes! 🥙",slug:"middle-eastern-flavors",children:null},other:{title:"Discover Other Global Cuisines: Unique Recipes Around the World 🌏",description:"Expand your culinary horizons with our diverse range of unique global cuisines. Experience flavors from all over the world! 🍲",slug:"other-global-cuisines",children:null}}},cookingTechniques:{title:"Mastering Cooking Techniques: Enhance Your Culinary Skills 🍽️",description:"Discover vibrant cooking techniques to elevate your culinary skills at SavorLifes. Learn baking, grilling, knife skills, and more! 🔪",slug:"cooking-techniques",children:{bakingMethods:{title:"Baking Methods: Elevate Your Baking Skills 🍰",description:"Explore various baking methods that promise to transform ordinary ingredients into delicious baked goods. Get the best tips and techniques today! 🍞",slug:"baking-methods",children:null},grillingTips:{title:"Grilling Tips: Perfect Your Grill Mastery 🔥",description:"Unlock the secrets to successful grilling with expert tips. Cook mouthwatering meats, vegetables, and more like a pro! 🥩🍖",slug:"grilling-tips",children:null},knifeSkills:{title:"Knife Skills: Master the Art of Cutting 🔪",description:"Improve your knife skills with practical techniques and tips. From chopping to dicing, become efficient in the kitchen! 🥬🧄",slug:"knife-skills",children:null},preservingandCanning:{title:"Preserving and Canning: Stay Fresh Year-Round 🥫",description:"Learn the art of preserving and canning to enjoy seasonal flavors all year. Discover techniques that keep your food fresh and delightful! 🍅🥒",slug:"preserving-and-canning",children:null},other:{title:"Other Cooking Techniques: Explore Unique Culinary Skills 🌍",description:"Venture into various other cooking techniques that expand your culinary repertoire. Discover new flavors and methods to impress! 🌟",slug:"other-cooking-techniques",children:null}}}},t=e.AUTHORS_INFO.reduce(((e,i)=>Object.assign(Object.assign({},e),{[i.name]:[i.description]})),{}),s=e.AUTHORS_INFO.map((e=>e.name)),r="🍽️👩‍🍳🥘✨",n=Object.keys(i),o=[],a=[];for(const e of n){const t=i[e];if(null==t?void 0:t.children){o.push(...Object.keys(t.children));for(const e of o){const i=t.children[e];(null==i?void 0:i.children)&&a.push(...Object.keys(i.children))}}}const l="2024-09-18T00:00:00Z",c="savorlifes",u=`idn-${c}-dev`,d=`idn-${c}`;exports.DEFAULT_DESCRIPTION_EMOJIS=r,exports.authors=t,exports.authorsNames=s,exports.categories=n,exports.dataStructure=i,exports.devBucketName=u,exports.prodBucketName=d,exports.startDate=l,exports.subcategories=o,exports.subsubcategories=a;
@@ -0,0 +1,28 @@
1
+ export declare enum FiltersNames {
2
+ FlavorAdventures = "Flavor Adventures",
3
+ CookingTime = "Cooking Time",
4
+ CulinaryJourney = "Culinary Journey",
5
+ DietaryChoices = "Dietary Choices",
6
+ SkillLevel = "Skill Level"
7
+ }
8
+ type FlavorAdventures = 'Spicy Sensations' | 'Sweet Indulgences' | 'Umami Unleashed' | 'Herbaceous Delights';
9
+ type CookingTime = 'Under 30 Minutes' | '30-60 Minutes' | 'Slow Cook Wonders' | 'Meal Prep Magic';
10
+ type CulinaryJourney = 'Global Explorations' | 'Local Favorites' | 'Seasonal Bounty' | 'Festive Feasts';
11
+ type DietaryChoices = 'Gluten-Free Goodies' | 'Plant-Based Plates' | 'Low-Calorie Cravings' | 'Kid-Friendly Dishes';
12
+ type SkillLevel = 'Beginner Basics' | 'Intermediate Inspirations' | 'Advanced Techniques';
13
+ export type ArticleFilters = {
14
+ [FiltersNames.FlavorAdventures]: FlavorAdventures[];
15
+ [FiltersNames.CookingTime]: CookingTime[];
16
+ [FiltersNames.CulinaryJourney]: CulinaryJourney[];
17
+ [FiltersNames.DietaryChoices]: DietaryChoices[];
18
+ [FiltersNames.SkillLevel]: SkillLevel[];
19
+ };
20
+ export declare const flavorAdventuresValues: FlavorAdventures[];
21
+ export declare const cookingTimeValues: CookingTime[];
22
+ export declare const culinaryJourneyValues: CulinaryJourney[];
23
+ export declare const dietaryChoicesValues: DietaryChoices[];
24
+ export declare const skillLevelValues: SkillLevel[];
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={})).FlavorAdventures="Flavor Adventures",e.CookingTime="Cooking Time",e.CulinaryJourney="Culinary Journey",e.DietaryChoices="Dietary Choices",e.SkillLevel="Skill Level";const s=["Spicy Sensations","Sweet Indulgences","Umami Unleashed","Herbaceous Delights"],r=["Under 30 Minutes","30-60 Minutes","Slow Cook Wonders","Meal Prep Magic"],i=["Global Explorations","Local Favorites","Seasonal Bounty","Festive Feasts"],t=["Gluten-Free Goodies","Plant-Based Plates","Low-Calorie Cravings","Kid-Friendly Dishes"],l=["Beginner Basics","Intermediate Inspirations","Advanced Techniques"],o={[exports.FiltersNames.FlavorAdventures]:[],[exports.FiltersNames.CookingTime]:[],[exports.FiltersNames.CulinaryJourney]:[],[exports.FiltersNames.DietaryChoices]:[],[exports.FiltersNames.SkillLevel]:[]},a={[exports.FiltersNames.FlavorAdventures]:s,[exports.FiltersNames.CookingTime]:r,[exports.FiltersNames.CulinaryJourney]:i,[exports.FiltersNames.DietaryChoices]:t,[exports.FiltersNames.SkillLevel]:l},n=()=>JSON.stringify(a,null,2);exports.cookingTimeValues=r,exports.culinaryJourneyValues=i,exports.dietaryChoicesValues=t,exports.flavorAdventuresValues=s,exports.fullFilters=a,exports.getFiltersTypesJSON=n,exports.initialFilters=o,exports.skillLevelValues=l;
@@ -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"),r=require("./helpers.js"),s=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.cookingTimeValues=t.cookingTimeValues,exports.culinaryJourneyValues=t.culinaryJourneyValues,exports.dietaryChoicesValues=t.dietaryChoicesValues,exports.flavorAdventuresValues=t.flavorAdventuresValues,exports.fullFilters=t.fullFilters,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.initialFilters=t.initialFilters,exports.skillLevelValues=t.skillLevelValues,exports.getDefaultImagesFrontmatter=r.getDefaultImagesFrontmatter,exports.prohibitedWordsInAltTitle=r.prohibitedWordsInAltTitle,exports.getOpenAiBasedImagePrompt=s.getOpenAiBasedImagePrompt,exports.getOpenAiBasedImagePromptDalle2=s.getOpenAiBasedImagePromptDalle2,exports.getStableDiffusionImagePrompt=s.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: SavorLifes is a vibrant infotainment portal dedicated to the culinary arts, offering a treasure trove of delectable recipes, cooking tips, and culinary inspiration for food enthusiasts. Whether you're a novice cook or a seasoned chef, SavorLifes aims to entice your taste buds and enhance your cooking skills.\n - Detailed description: SavorLifes is your go-to online resource for all things culinary. Our platform features a rich collection of recipes that cater to various cuisines, dietary preferences, and skill levels. Users can easily browse through categories such as quick meals, healthy options, festive dishes, and international flavors. Each recipe is meticulously crafted with step-by-step instructions, cooking tips, and vibrant images to guide you through the culinary process. In addition to recipes, SavorLifes provides valuable resources including cooking techniques, ingredient guides, and meal planning tips to help elevate your cooking experience. Our blog section features articles on food trends, kitchen hacks, and culinary culture, encouraging home cooks to explore new flavors and techniques. Embrace the joy of cooking with SavorLifes and transform your kitchen into a hub of creativity and flavor.\n - Target audience: The target audience for SavorLifes includes food enthusiasts, home cooks, and anyone interested in enhancing their culinary skills. The portal appeals to a diverse demographic ranging from beginners looking for easy-to-follow recipes to experienced cooks seeking innovative ideas and gourmet techniques. Health-conscious individuals searching for nutritious recipes and families wanting quick meal solutions will also find value in our content. Additionally, SavorLifes caters to food lovers interested in exploring global cuisines and culinary traditions, making it a perfect destination for anyone passionate about cooking.\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## Recipe Overview\n - Recipe name\n - Brief description of the dish\n\n## Ingredients List\n - Main ingredients\n - Optional ingredients\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 - Recipe Overview, 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 = "food lovers of all ages";
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 i="The article is written for the web portal.I will give you important information regarding the web portal:\n - Brief description: SavorLifes is a vibrant infotainment portal dedicated to the culinary arts, offering a treasure trove of delectable recipes, cooking tips, and culinary inspiration for food enthusiasts. Whether you're a novice cook or a seasoned chef, SavorLifes aims to entice your taste buds and enhance your cooking skills.\n - Detailed description: SavorLifes is your go-to online resource for all things culinary. Our platform features a rich collection of recipes that cater to various cuisines, dietary preferences, and skill levels. Users can easily browse through categories such as quick meals, healthy options, festive dishes, and international flavors. Each recipe is meticulously crafted with step-by-step instructions, cooking tips, and vibrant images to guide you through the culinary process. In addition to recipes, SavorLifes provides valuable resources including cooking techniques, ingredient guides, and meal planning tips to help elevate your cooking experience. Our blog section features articles on food trends, kitchen hacks, and culinary culture, encouraging home cooks to explore new flavors and techniques. Embrace the joy of cooking with SavorLifes and transform your kitchen into a hub of creativity and flavor.\n - Target audience: The target audience for SavorLifes includes food enthusiasts, home cooks, and anyone interested in enhancing their culinary skills. The portal appeals to a diverse demographic ranging from beginners looking for easy-to-follow recipes to experienced cooks seeking innovative ideas and gourmet techniques. Health-conscious individuals searching for nutritious recipes and families wanting quick meal solutions will also find value in our content. Additionally, SavorLifes caters to food lovers interested in exploring global cuisines and culinary traditions, making it a perfect destination for anyone passionate about cooking.\n\n",t="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## Recipe Overview\n - Recipe name\n - Brief description of the dish\n\n## Ingredients List\n - Main ingredients\n - Optional ingredients\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 - Recipe Overview, 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",o="synthesizing the information presented throughout",a="food lovers of all ages",r="any numbers, image, slug, step, seo, hand / hands, men, women, human, people, chief, preparing, process, cooking, mixing, serving, tasting, rolling",s=`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$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=o,exports.FILTERS_INFO=s,exports.IMAGES_PROHIBITED_WORDS=r,exports.START_STEP=n,exports.TARGET_AUDIENCE=a,exports.ZERO_SECTION=t,exports.portalInfo=i;
@@ -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 o=({title:o,alt:a,articleTitle:r})=>({prompt:`Award-winning hyper-real cinematic photo of a ${o}, ${a}, for an article ${r} from professional food photograph for a glossy recipe magazine, food style photography, glossy recipe magazine, photorealistic, ultra realistic, maximum detail, highly detailed, commercial photography, foreground focus, delish.com, allrecipes.com, foodnetwork.com, epicurious, instagram, 4K, 8K, volumetric light, cinematic, octane render, uplight, no blur, depth of field, dof, film, bokeh, foreground focus, 35mm photograph`,negativePrompt:e.SD_NEGATIVE_PROMPT}),a=({title:e,alt:o,articleTitle:a})=>`I NEED a hyper-real illustration of a ${e} at food style photography, ${o}, for an article ${a} 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=a,exports.getOpenAiBasedImagePromptDalle2=r,exports.getStableDiffusionImagePrompt=o;
@@ -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 the Culinary Creators | SavorLifes",description:"Discover the passionate chefs and culinary enthusiasts behind SavorLifes! 👩‍🍳👨‍🍳 Dive into their stories, expertise, and inspirations."},[exports.PageNames.Home]:{title:"Delicious Recipes & Culinary Tips | SavorLifes",description:"Welcome to SavorLifes! 🍽️✨ Explore creative recipes, cooking hacks, and culinary delights to elevate your cooking experience."},[exports.PageNames.NotFound]:{title:"Page Not Found | SavorLifes",description:"Oops! 🤔 The page you're looking for doesn't exist. Let's get you back to delicious recipes and culinary inspiration!"},[exports.PageNames.AboutUs]:{title:"About SavorLifes | Our Culinary Mission",description:"Learn about SavorLifes and our passion for cooking! 🌍❤️ We're dedicated to making culinary adventures accessible to everyone!"},[exports.PageNames.PrivacyPolicy]:{title:"Privacy Policy | SavorLifes",description:"Your privacy matters! 🔒 Read about how we protect your personal information at SavorLifes."},[exports.PageNames.Terms]:{title:"Terms of Service | SavorLifes",description:"Understand the guidelines for using SavorLifes. 📜✨ Join our culinary journey with confidence!"},[exports.PageNames.Sitemap]:{title:"Sitemap | Explore SavorLifes",description:"Navigate through SavorLifes easily! 🗺️ Find your favorite recipes and culinary resources all in one place."}},a=[{name:"Sanjana Patel",description:"Sanjana is a passionate home cook and food blogger specializing in traditional Indian recipes with a modern twist. With over a decade of experience in culinary arts, she has developed a rich repertoire of flavors and techniques that she loves to share with her readers. Her recipes often showcase the vibrant diversity of Indian cuisine, making them accessible to all cooks.",meta_title:"Sanjana Patel | Culinary Author at SavorLifes",meta_description:"Discover delicious Indian recipes with Sanjana Patel, a home cook and food blogger dedicated to bringing traditional flavors to modern kitchens. Explore her culinary journey and try her innovative recipes."},{name:"Deepak Rao",description:"Deepak is a renowned chef with over 15 years of experience in Indian cuisine. Having trained in prestigious culinary institutes, he leverages his expertise to create unique recipes that celebrate Indian heritage. Deepak’s articles focus on the art of cooking, essential techniques, and the cultural significance of various dishes.",meta_title:"Deepak Rao | Indian Cuisine Expert at SavorLifes",meta_description:"Join Deepak Rao, a seasoned chef, as he shares his expertise in Indian cuisine. Explore his in-depth articles focusing on traditional recipes, cooking techniques, and culinary culture."},{name:"Anjali Mehta",description:"Anjali is a food enthusiast and freelance writer focused on healthy Indian cooking. With a strong background in nutrition, she transforms classic recipes into healthy alternatives without compromising on taste. Anjali’s approach emphasizes using fresh, local ingredients to promote a balanced diet.",meta_title:"Anjali Mehta | Healthy Indian Recipes Author at SavorLifes",meta_description:"Explore healthy Indian cooking with Anjali Mehta, a food enthusiast and nutrition writer. Discover nutritious recipes and tips for creating guilt-free Indian meals."},{name:"Rajesh Sharma",description:"Rajesh is a culinary author and food photographer who blends storytelling with cooking. He draws on his background as a food stylist to create visually stunning dishes that tell a story through flavor. His passion for showcasing the beauty of Indian cuisine comes alive in his engaging articles.",meta_title:"Rajesh Sharma | Culinary Author & Food Photographer at SavorLifes",meta_description:"Dive into the art of cooking with Rajesh Sharma, a culinary author and food photographer. Experience the flavors and visual beauty of Indian cuisine through his articles."},{name:"Priya Nair",description:"Priya is a family-oriented cook with a focus on generational recipes passed down through her family. She shares her culinary heritage and offers insight into the cultural significance of many traditional Indian dishes. Priya's articles are filled with nostalgia and community, enriching the reader’s understanding of each recipe.",meta_title:"Priya Nair | Family Recipes Author at SavorLifes",meta_description:"Discover the magic of generational recipes with Priya Nair. Learn about family traditions and the cultural significance behind South Asian culinary delights."},{name:"Aarav Jain",description:"Aarav is a youthful culinary innovator who specializes in fusion cuisine, blending Indian recipes with global flavors. With a knack for experimentation, he writes articles that inspire home cooks to try new combinations. His engaging writing style makes cooking simple and fun.",meta_title:"Aarav Jain | Fusion Cuisine Author at SavorLifes",meta_description:"Explore innovative fusion cuisine with Aarav Jain, a culinary innovator blending Indian recipes with global flavors. Get inspired to experiment in the kitchen with his creative articles."},{name:"Simran Kaur",description:"Simran is a food stylist and recipe developer with an affinity for street food culture. She captures the vibrant essence of Indian street food in her recipes, bringing those flavors to home cooks. Simran's articles are filled with tips and tricks for recreating street food magic in your own kitchen.",meta_title:"Simran Kaur | Street Food Specialist at SavorLifes",meta_description:"Savor the taste of India’s streets with Simran Kaur, a food stylist and recipe developer specializing in authentic Indian street food recipes. Discover how to recreate these flavors at home."},{name:"Vikram Desai",description:"Vikram is a beverage specialist who brings a unique perspective to Indian culinary writing with an emphasis on traditional drinks. With an extensive background in mixology, he shares recipes for both non-alcoholic and alcoholic Indian beverages that pair perfectly with popular dishes.",meta_title:"Vikram Desai | Beverage Specialist at SavorLifes",meta_description:"Explore the world of Indian beverages with Vikram Desai, a mixology expert dedicated to sharing traditional drink recipes. Discover refreshing pairings for your favorite Indian dishes."},{name:"Nisha Reddy",description:"Nisha is a culinary historian who focuses on documenting the ancient recipes of India. Her articles are insightful, providing historical context to the dishes we love today. Nisha aims to preserve Indian culinary heritage while inspiring new generations to appreciate traditional cooking.",meta_title:"Nisha Reddy | Culinary Historian at SavorLifes",meta_description:"Join Nisha Reddy, a culinary historian, as she uncovers the history behind traditional Indian recipes. Explore the richness of India's culinary heritage through her insightful articles."},{name:"Tarun Singh",description:"Tarun is a vibrant food enthusiast and social media influencer renowned for his innovative twists on classic Indian recipes. With a strong online following, he engages audiences with quick tips and delicious recipes that encourage home cooks to have fun in the kitchen.",meta_title:"Tarun Singh | Culinary Influencer at SavorLifes",meta_description:"Get inspired with Tarun Singh, a vibrant food enthusiast known for innovative twists on classic Indian recipes. Discover quick tips and delicious recipes to add fun to your cooking."},{name:"Vikram Singh",description:"Vikram Singh is a culinary enthusiast and food blogger with over 10 years of experience in Indian cuisine. His unique blend of traditional recipes and modern cooking techniques has earned him a loyal following. Vikram believes that food is a universal language that brings people together and enjoys sharing recipes that showcase the richness of Indian culture.",meta_title:"Vikram Singh - Indian Culinary Expert | SavorLifes",meta_description:"Explore delicious Indian recipes and culinary tips from Vikram Singh, a seasoned food blogger and culinary expert with a passion for traditional Indian cooking."},{name:"Priya Mehta",description:"Priya Mehta is a food stylist and chef specializing in vegetarian Indian dishes. With a background in nutrition and culinary arts, she creates mouthwatering recipes that not only taste good but are also healthy. Priya enjoys experimenting with seasonal ingredients and believes that cooking should be a joyous and creative process.",meta_title:"Priya Mehta - Vegetarian Culinary Creator | SavorLifes",meta_description:"Join Priya Mehta on SavorLifes for vibrant vegetarian Indian recipes and healthy cooking tips that celebrate seasonal ingredients and diverse flavors."},{name:"Arjun Gupta",description:"Arjun Gupta is a renowned chef whose culinary journey started in his grandmother's kitchen. With over 15 years of experience, Arjun specializes in fusion cuisine, blending traditional Indian flavors with global influences. His innovative approach to cooking has been featured in various culinary publications.",meta_title:"Arjun Gupta - Fusion Cuisine Specialist | SavorLifes",meta_description:"Discover the best of fusion Indian cuisine with chef Arjun Gupta, who combines traditional flavors with global influences to create unique, mouthwatering dishes."},{name:"Nita Sharma",description:"Nita Sharma is a passionate home cook and recipe developer with a focus on family-friendly Indian meals. With her practical approach to cooking, she simplifies complex recipes, making them accessible to all. Nita believes that cooking for loved ones is one of the greatest joys in life.",meta_title:"Nita Sharma - Home Cooking Advocate | SavorLifes",meta_description:"Join Nita Sharma on SavorLifes for easy-to-follow Indian recipes that bring joy to family dining and make cooking a delightful experience for everyone."},{name:"Rahul Sharma",description:"Rahul Sharma is a talented baker and pastry chef with a niche in Indian desserts. He combines his love for baking with traditional Indian sweets, creating delectable treats that are perfect for any occasion. Rahul aims to inspire others to explore the world of Indian baking with his creative recipes.",meta_title:"Rahul Sharma - Indian Desserts and Pastries | SavorLifes",meta_description:"Indulge in the sweet world of Indian desserts with Rahul Sharma, a pastry chef who merges traditional techniques with modern recipes for delightful creations."},{name:"Anjali Reddy",description:"Anjali Reddy is an acclaimed food writer and culinary educator, dedicated to promoting authentic Indian cooking. With over a decade of teaching experience, she encourages home cooks to explore diverse regional cuisines and share their love for Indian food. Anjali’s recipes reflect her passion for tradition and community.",meta_title:"Anjali Reddy - Indian Culinary Educator | SavorLifes",meta_description:"Learn authentic regional Indian recipes with Anjali Reddy, a culinary educator who inspires home cooks to celebrate the rich heritage of Indian food."},{name:"Karan Patel",description:"Karan Patel is a food photographer and blogger whose visual storytelling captivates food lovers. With a keen eye for aesthetics, he captures the essence of Indian cuisine through stunning photography and engaging recipes. Karan believes that presenting food beautifully enhances the dining experience.",meta_title:"Karan Patel - Food Photography and Recipes | SavorLifes",meta_description:"Explore delectable Indian recipes and stunning food photography with Karan Patel, who adds a visual dimension to the culinary experience at SavorLifes."},{name:"Riya Kapoor",description:"Riya Kapoor is a young and vibrant food content creator aimed at bringing modern twists to classic Indian recipes. Her approach includes using fresh ingredients and contemporary presentation styles, ensuring that traditional flavors can appeal to younger generations. Riya's focus is on making cooking fun and exciting.",meta_title:"Riya Kapoor - Modern Indian Culinary Creator | SavorLifes",meta_description:"Follow Riya Kapoor for modern twists on Indian recipes that excite the palate and make cooking enjoyable for the new generation of food lovers."},{name:"Deepak Sinha",description:"Deepak Sinha is a culinary historian and chef who educates others about the roots of Indian cuisine. With a deep appreciation for traditional cooking methods, he shares recipes that reflect India's diverse culinary landscape. His expertise makes him a respected voice in the food community.",meta_title:"Deepak Sinha - Culinary Historian and Chef | SavorLifes",meta_description:"Delve into the rich tapestry of Indian cuisine with Deepak Sinha, a culinary historian who shares traditional recipes that celebrate India's diverse food heritage."},{name:"Meera Joshi",description:"Meera Joshi is a food writer and chef focused on regional Indian cuisines. She loves to travel across India, gathering traditional recipes and stories, and shares them with her readers. Meera's passion for food culture shines through in her writing, allowing others to experience the joy of Indian cooking.",meta_title:"Meera Joshi - Regional Indian Cuisine Expert | SavorLifes",meta_description:"Join Meera Joshi on SavorLifes as she explores regional Indian cuisines through authentic recipes and captivating stories that celebrate India's culinary heritage."},{name:"Anjali Sharma",description:"Anjali Sharma is a renowned food blogger and recipe developer of Indian origin, known for her vibrant and flavorful dishes that celebrate the essence of Indian cuisine. With over 10 years of culinary experience, Anjali shares authentic family recipes and innovative twists on traditional dishes through her widely followed blog. She is passionate about making Indian cooking accessible to everyone, regardless of their experience level in the kitchen.",meta_title:"Anjali Sharma - Expert Indian Cuisine Blogger | SavorLifes",meta_description:"Discover the delicious world of Indian cooking with Anjali Sharma. Explore authentic recipes and innovative culinary tips from a seasoned food blogger."},{name:"Ravi Patel",description:"Ravi Patel is a professional chef and food writer with Indian roots, who has spent over 15 years mastering both traditional and modern cooking techniques. His culinary journey has taken him across India and abroad, where he absorbed diverse cooking styles. Ravi focuses on creating easy-to-follow recipes that combine authentic flavors with contemporary presentation, ensuring that cooking Indian food is a joyous experience for all.",meta_title:"Ravi Patel - Culinary Expert and Chef | SavorLifes",meta_description:"Join Ravi Patel as he shares scrumptious recipes and culinary secrets that blend tradition with modernity in the world of Indian cuisine."},{name:"Neena Desai",description:"Neena Desai is a celebrated food stylist and recipe author with a deep love for Indian culinary heritage. Hailing from a family of chefs, Neena has spent years perfecting her skills and is dedicated to showcasing the beauty of Indian dishes through her creative presentations and recipes. Her work emphasizes sustainability in cooking by utilizing local ingredients and minimizing waste.",meta_title:"Neena Desai - Food Stylist and Recipe Author | SavorLifes",meta_description:"Explore stunning recipes and sustainable cooking with Neena Desai, an expert in food styling and Indian cuisine."},{name:"Vikram Sethi",description:"Vikram Sethi is an award-winning cookbook author and culinary educator recognized for his unique blend of Indian flavors with global influences. With over 12 years of culinary teaching experience, he has inspired thousands to explore the joys of cooking. Vikram's recipes aim to demystify Indian cooking while encouraging readers to experiment and find their signature flavors.",meta_title:"Vikram Sethi - Cookbook Author and Culinary Educator | SavorLifes",meta_description:"Dive into the creative world of Vikram Sethi, where traditional Indian dishes meet global cuisine with easy-to-follow recipes."},{name:"Meera Kaur",description:"Meera Kaur is a passionate home cook and food blogger who specializes in vegetarian Indian cuisine. Growing up in a vegetarian household, she draws inspiration from her heritage to create healthy and delicious recipes. Meera’s emphasis on nutritious ingredients makes her blog a go-to resource for those looking to maintain a balanced diet without compromising on taste.",meta_title:"Meera Kaur - Vegetarian Indian Cuisine Blogger | SavorLifes",meta_description:"Explore Meera Kaur's delicious vegetarian recipes that celebrate the flavors of Indian cuisine while promoting healthy eating."},{name:"Rajiv Choudhury",description:"Rajiv Choudhury is a culinary artist and food writer who focuses on street food and comfort food from across India. He travels extensively to capture the essence of Indian street cuisine, combining authentic flavors with modern twists in his recipes. With over 8 years of experience, Rajiv encourages readers to embrace the bold and diverse flavors of Indian street food in their own kitchens.",meta_title:"Rajiv Choudhury - Street Food Enthusiast and Recipe Creator | SavorLifes",meta_description:"Experience the vibrant world of Indian street food with Rajiv Choudhury’s mouthwatering recipes and culinary adventures."},{name:"Sonia Mehta",description:"Sonia Mehta is a food writer and recipe developer whose culinary journey reflects her Indian heritage and global experiences. With a dual background in nutrition and cooking, she emphasizes healthy and wholesome meal options, all while remaining true to the rich flavors of Indian cooking. Sonia aims to inspire readers to cook with confidence and enjoy the process of creating meals.",meta_title:"Sonia Mehta - Nutrition-Focused Food Writer | SavorLifes",meta_description:"Savor healthy Indian recipes with Sonia Mehta, where nutrition meets authentic flavors in every dish."},{name:"Karan Singh",description:"Karan Singh is a food photographer and culinary author specializing in regional Indian cuisine. A self-taught cook, Karan's articles and recipes highlight the lesser-known dishes and local ingredients that form India's culinary tapestry. His visually stunning food photography tells a story of tradition, culture, and innovative cooking techniques.",meta_title:"Karan Singh - Regional Cuisine Advocate and Food Photographer | SavorLifes",meta_description:"Discover the hidden gems of Indian cuisine with Karan Singh's delicious recipes and captivating food photography."},{name:"Priya Bansal",description:"Priya Bansal is a food scientist and nutritionist with a passion for Indian cooking. She combines her scientific knowledge with culinary skills to create recipes that are both delicious and health-conscious. Priya's focus on ingredient quality and nutritional integrity helps readers make informed choices while enjoying the rich tastes of Indian dishes.",meta_title:"Priya Bansal - Food Scientist and Culinary Innovator | SavorLifes",meta_description:"Explore clinically-informed recipes with Priya Bansal, where nutrition meets flavor in the world of Indian cuisine."},{name:"Ritika Malhotra",description:"Ritika Malhotra is a passionate home chef and expert in fusion cuisine, seamlessly incorporating Indian flavors into dishes from around the world. With an educational background in culinary arts, she has spent years experimenting and sharing her innovative recipes. Ritika inspires her audience to think outside the box while celebrating traditional Indian cooking.",meta_title:"Ritika Malhotra - Fusion Cooking Expert | SavorLifes",meta_description:"Experience the exciting fusion of Indian and global flavors with Ritika Malhotra's creative recipes and cooking tips."},{name:"Madhuri Nair",description:"Madhuri Nair is a seasoned culinary writer and food stylist based in Mumbai, India. With over a decade of experience in the food industry, she specializes in vegetarian recipes that celebrate traditional Indian cuisine while incorporating modern twists. Her passion for cooking began in her grandmother's kitchen, and she now shares her expertise through articles aimed at making Indian cooking approachable for everyone.",meta_title:"Madhuri Nair - Indian Culinary Expert at SavorLifes",meta_description:"Explore authentic Indian vegetarian recipes and culinary tips from Madhuri Nair, a seasoned food stylist and culinary writer with over a decade of experience."},{name:"Rahul Mehta",description:"Rahul Mehta is a food blogger and recipe developer from New Delhi, known for his innovative Indian fusion recipes. With a Bachelor's degree in Culinary Arts and extensive travel across India to study regional cuisines, Rahul brings a wealth of knowledge to his writing. His articles focus on creating gourmet meals with accessible ingredients.",meta_title:"Rahul Mehta - Fusion Recipes Creator at SavorLifes",meta_description:"Dive into the world of fusion cooking with Rahul Mehta, a food blogger from New Delhi, as he shares innovative Indian recipes that combine tradition with creativity."},{name:"Anjali Desai",description:"Anjali Desai is a home chef and food enthusiast from Bangalore, Karnataka. Specializing in healthy yet indulgent Indian recipes, she emphasizes the use of organic and locally sourced ingredients. Her articles inspire readers to recreate family recipes while prioritizing health and wellness without compromising on flavor.",meta_title:"Anjali Desai - Healthy Indian Cuisine Advocate at SavorLifes",meta_description:"Discover healthy and flavorful Indian recipes from Anjali Desai, a passionate home chef advocating for organic ingredients and wellness in cooking."},{name:"Rajesh Kumar",description:"Rajesh Kumar is a culinary educator and writer with over 15 years of experience teaching Indian cooking techniques in various culinary schools. Based in Pune, he specializes in regional Indian cuisines, helping audiences explore India’s diverse culinary landscape. His articles often feature in-depth explorations of spices and cooking methods.",meta_title:"Rajesh Kumar - Culinary Educator and Writer at SavorLifes",meta_description:"Join Rajesh Kumar, an experienced culinary educator, as he uncovers the rich diversity of Indian cooking and explores traditional techniques and spices."},{name:"Priya Sharma",description:"Priya Sharma is a food journalist and popular recipe developer from Kolkata. With a keen interest in traditional Bengali dishes, she merges storytelling with cooking, making her articles engaging and informative. Priya's work has been featured in various culinary magazines and she is known for her ability to simplify complex recipes.",meta_title:"Priya Sharma - Bengali Cuisine Expert at SavorLifes",meta_description:"Explore the flavors of Bengali cuisine with Priya Sharma, a food journalist who simplifies traditional recipes for readers with her engaging storytelling."},{name:"Arjun Singh",description:"Arjun Singh is a chef and food writer based in Chandigarh, with a focus on street food and contemporary Indian snacks. His passion for food began during his college days, leading him to experiment with flavors and textures that celebrate India’s vibrant street food culture. Arjun shares his cooking adventures through vibrant articles that reflect his love for local dishes.",meta_title:"Arjun Singh - Street Food Aficionado at SavorLifes",meta_description:"Savor the vibrant taste of Indian street food with Arjun Singh, a chef and food writer, as he shares his culinary adventures and recipes."},{name:"Deepak Patel",description:"Deepak Patel is a home cook and culinary writer from Ahmedabad, passionate about Gujarati cuisine. His articles emphasize the importance of home-cooked meals, featuring recipes passed down through generations. Deepak believes that cooking should be a joyful experience, and his writing reflects that philosophy with easy-to-follow instructions.",meta_title:"Deepak Patel - Gujarati Cooking Enthusiast at SavorLifes",meta_description:"Experience the joy of home-cooked Gujarati meals with Deepak Patel, a culinary writer sharing traditional recipes and cooking tips for everyone."},{name:"Sneha Nair",description:"Sneha Nair is a passionate food explorer and writer from Kerala, specializing in Ayurvedic cooking. Her unique approach integrates health benefits with traditional recipes, aiming to inspire wellness through food. Sneha's work encourages readers to explore the healing properties of spices and ingredients used in Indian kitchens.",meta_title:"Sneha Nair - Ayurvedic Cooking Advocate at SavorLifes",meta_description:"Discover the health benefits of food with Sneha Nair, an Ayurvedic cooking advocate sharing traditional recipes that promote wellness and vitality."},{name:"Karan Bansal",description:"Karan Bansal is an innovative chef and culinary writer from Jaipur, specializing in Rajasthani cuisine. With a flair for modern presentation, he takes traditional dishes and reinterprets them for contemporary dining. Karan's articles offer a glimpse into the culinary heritage of Rajasthan, highlighting both history and flavor.",meta_title:"Karan Bansal - Modern Rajasthani Cuisine Innovator at SavorLifes",meta_description:"Explore Rajasthani cuisine with a modern twist from Karan Bansal, an innovative chef dedicated to blending tradition with contemporary cooking."},{name:"Julia Moreno",description:"Julia Moreno is a trained chef from Barcelona, Spain, with over 10 years of experience in the culinary world. Having worked in various prestigious restaurants, she specializes in Mediterranean cuisine and loves sharing her authentic recipes on her blog. Julia is passionate about using fresh ingredients and promoting a healthy lifestyle through her cooking.",meta_title:"Julia Moreno - Culinary Expert at SavorLifes",meta_description:"Discover Mediterranean recipes and culinary tips from Julia Moreno, a seasoned chef with a passion for fresh ingredients and healthy cooking at SavorLifes."},{name:"Aiden Chen",description:"Aiden Chen is a food writer and home cook based in Chengdu, China. With a focus on Sichuan cuisine, Aiden has spent years exploring regional dishes and sharing his culinary adventures. He enjoys infusing traditional recipes with modern twists, making his articles both informative and enjoyable for readers.",meta_title:"Aiden Chen - Sichuan Cuisine Enthusiast at SavorLifes",meta_description:"Explore authentic Sichuan recipes and cooking techniques with Aiden Chen, a culinary explorer dedicated to flavor at SavorLifes."},{name:"Emilia Rossi",description:"Emilia Rossi hails from Florence, Italy, and she brings her rich heritage to every dish she creates. With a degree from culinary school and years of experience in both food writing and restaurant kitchens, Emilia shares Italian comfort food recipes that connect readers with the heart of Italian culture.",meta_title:"Emilia Rossi - Italian Culinary Writer at SavorLifes",meta_description:"Join Emilia Rossi on a culinary journey through traditional Italian recipes and culture at SavorLifes, where passion meets plate."},{name:"Liam O’Reilly",description:"Liam O’Reilly is a food stylist and blogger from Dublin, Ireland. With a background in marketing and a love for visual storytelling, he combines his creativity with culinary knowledge to share unique recipes that not only taste good but look great. Liam specializes in healthy baking and seasonal dishes.",meta_title:"Liam O’Reilly - Healthy Baking Expert at SavorLifes",meta_description:"Discover vibrant healthy baking recipes and seasonal dishes with Liam O’Reilly, where aesthetics meet taste at SavorLifes."},{name:"Sofia Patel",description:"Sofia Patel is a passionate food advocate and chef from Mumbai, India. With extensive training in Indian cuisine and a flair for spices, she focuses on sharing traditional home-style recipes. Sofia aims to revive forgotten recipes and make classic flavors accessible to a broader audience.",meta_title:"Sofia Patel - Indian Cuisine Specialist at SavorLifes",meta_description:"Dive into the world of Indian spices and traditional recipes with Sofia Patel, your guide to authentic flavors at SavorLifes."},{name:"Nico Martinez",description:"Nico Martinez is a culinary educator and food blogger from Mexico City, Mexico. With a love for street food and vibrant flavors, Nico shares his knowledge of Mexican cooking through easy-to-follow recipes and food culture insights, making authentic cuisine approachable for everyone.",meta_title:"Nico Martinez - Mexican Cuisine Aficionado at SavorLifes",meta_description:"Explore the bold flavors of Mexico with Nico Martinez, as he shares authentic street food recipes and culinary stories at SavorLifes."},{name:"Hana Suzuki",description:"Hana Suzuki is a Japanese chef based in Tokyo, specializing in traditional kaiseki and sushi-making. With a background in culinary arts and a dedication to Japanese culture, Hana offers readers a deep insight into the philosophy of Japanese cooking along with authentic recipes.",meta_title:"Hana Suzuki - Japanese Cooking Expert at SavorLifes",meta_description:"Uncover the art of Japanese cuisine with Hana Suzuki, specializing in traditional kaiseki and sushi recipes at SavorLifes."},{name:"Maxine Carter",description:"Maxine Carter is a health coach and food blogger from Melbourne, Australia. She focuses on plant-based cooking and wellness, sharing innovative vegan recipes that are as nutritious as they are delicious. Maxine's mission is to inspire people to embrace a healthier lifestyle through mindful eating.",meta_title:"Maxine Carter - Vegan Cooking Advocate at SavorLifes",meta_description:"Join Maxine Carter for nutritious plant-based recipes and wellness tips to inspire healthier living at SavorLifes."},{name:"Luca Ferrari",description:"Luca Ferrari is a food photographer and chef based in Rome, Italy. Gaining inspiration from his surroundings, he shares stunning recipes that celebrate local ingredients and traditional Italian cooking techniques. Luca’s photography brings his culinary creations to life, making them irresistible to his audience.",meta_title:"Luca Ferrari - Italian Food Photographer and Chef at SavorLifes",meta_description:"Explore breathtaking Italian recipes and food photography with Luca Ferrari, combining taste and visual artistry at SavorLifes."},{name:"Priya Desai",description:"Priya Desai is a culinary writer and food stylist from San Francisco, USA. With a multicultural background, she blends flavors and techniques from different cuisines. Priya aims to create inclusive recipes that cater to diverse tastes while sharing stories about the origins of each dish.",meta_title:"Priya Desai - Multicultural Culinary Writer at SavorLifes",meta_description:"Discover a world of flavors with Priya Desai as she shares inclusive recipes and culinary stories at SavorLifes."},{name:"Maria Gonzalez",description:"Maria is a talented chef and food blogger from Mexico with over 10 years of experience in the culinary field. Specializing in traditional Mexican cuisine, she shares her family's recipes and tales from the kitchen to inspire home cooks everywhere.",meta_title:"Maria Gonzalez - Mexican Culinary Expert | SavorLifes",meta_description:"Discover authentic Mexican recipes from Maria Gonzalez, a seasoned chef and food blogger sharing her culinary journey. Explore her family recipes and cooking tips on SavorLifes."},{name:"James Thompson",description:"James is a professional chef and food writer based in the United Kingdom. With a background in French cuisine and over 15 years in various Michelin-starred kitchens, he now focuses on creating accessible recipes that bring gourmet taste to home cooking.",meta_title:"James Thompson - Gourmet Recipe Creator | SavorLifes",meta_description:"Join James Thompson as he simplifies gourmet cooking with delicious recipes inspired by his Michelin-starred experience. Explore his culinary expertise on SavorLifes."},{name:"Aisha Khanna",description:"Aisha is an Indian food enthusiast and nutritionist, passionate about healthy and flavorful cooking. Over the past 8 years, she has been developing plant-based vegetarian recipes that cater to diverse tastes while promoting wellness.",meta_title:"Aisha Khanna - Plant-Based Culinary Innovator | SavorLifes",meta_description:"Explore vibrant and nutritious vegetarian recipes from Aisha Khanna, a dedicated food enthusiast and nutritionist. Discover healthy cooking on SavorLifes."},{name:"Luca Moretti",description:"Luca hails from Italy and has spent the last 12 years sharing the beauty of Italian cooking through his blog. His expertise in authentic regional recipes showcases the rich flavors and traditions of Italy, bringing both classic and contemporary dishes to life.",meta_title:"Luca Moretti - Italian Cuisine Specialist | SavorLifes",meta_description:"Delve into the world of Italian cuisine with Luca Moretti. Discover authentic recipes that celebrate the flavors of Italy on SavorLifes."},{name:"Chloe Nguyen",description:"Chloe is a Vietnamese food blogger and home cook living in Vietnam. With her focus on family recipes that highlight the uniqueness of Vietnamese flavors, she shares her love for food culture through simple, vibrant dishes.",meta_title:"Chloe Nguyen - Vietnamese Flavor Advocate | SavorLifes",meta_description:"Experience the vibrant tastes of Vietnamese cuisine with Chloe Nguyen. Discover family recipes and cultural insights on SavorLifes."},{name:"Ahmed el-Sayed",description:"Ahmed is a culinary artist from Egypt, specializing in traditional Middle Eastern dishes. With over 7 years of experience cooking and teaching, he is passionate about sharing the rich history and flavors of his heritage through simple, delicious recipes.",meta_title:"Ahmed el-Sayed - Middle Eastern Culinary Master | SavorLifes",meta_description:"Discover traditional Middle Eastern recipes from Ahmed el-Sayed, a culinary artist dedicated to sharing the rich flavors of Egypt. Explore his recipes on SavorLifes."},{name:"Emily Larson",description:"Emily is an American food stylist and writer, known for her modern twist on classic comfort foods. With 5 years of experience in food photography and styling, she emphasizes the importance of both flavor and presentation.",meta_title:"Emily Larson - Comfort Food Stylist | SavorLifes",meta_description:"Immerse yourself in updated comfort food recipes from Emily Larson, a food stylist blending flavor with aesthetics. Explore her creations on SavorLifes."},{name:"Yuki Tanaka",description:"Yuki is a renowned Japanese chef with expertise in sushi and traditional Japanese cooking. With over 10 years of culinary experience, he shares his knowledge and appreciation of Japanese culture through detailed, authentic recipes.",meta_title:"Yuki Tanaka - Expert in Japanese Cuisine | SavorLifes",meta_description:"Learn the art of Japanese cooking with Yuki Tanaka, a master chef sharing authentic sushi and traditional recipes. Discover Japanese culinary culture on SavorLifes."},{name:"Sofia Petrov",description:"Sofia is a food writer from Bulgaria, focusing on Eastern European dishes and desserts. With her passion for culinary traditions from her homeland, she presents recipes that are both comforting and nostalgic for many.",meta_title:"Sofia Petrov - Eastern European Culinary Writer | SavorLifes",meta_description:"Explore the rich traditions of Eastern European cuisine with Sofia Petrov. Discover comforting recipes and heartfelt stories on SavorLifes."}],n=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=n,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:#3e2723;--theme-color-8:#5d4037;--theme-color-7:#8d6e63;--theme-color-6:#a1887f;--theme-color-5:#d7ccc8;--theme-color-4:#e0e0e0;--theme-color-3:#f5f5f5;--theme-color-2:#ffffff;--color-bg-layout:#fafafa;--color-bg-hover:#ebebeb;--article-border-radius:15px;--btn-border-radius:10px;--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.271",
3
+ "version": "1.3.273",
4
4
  "description": "Package for config files and reusable code/components between projects",
5
5
  "main": "dist/index.js",
6
6
  "files": [