tedo-publisher 1.3.278 → 1.3.280

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. package/dist/culinaryquests/data.d.ts +229 -0
  2. package/dist/culinaryquests/data.js +1 -0
  3. package/dist/culinaryquests/filters.d.ts +28 -0
  4. package/dist/culinaryquests/filters.js +1 -0
  5. package/dist/culinaryquests/helpers.d.ts +3 -0
  6. package/dist/culinaryquests/helpers.js +1 -0
  7. package/dist/culinaryquests/index.d.ts +15 -0
  8. package/dist/culinaryquests/index.js +1 -0
  9. package/dist/culinaryquests/prompts/data.d.ts +7 -0
  10. package/dist/culinaryquests/prompts/data.js +1 -0
  11. package/dist/culinaryquests/prompts/gpt35turbo/articles.d.ts +6 -0
  12. package/dist/culinaryquests/prompts/gpt35turbo/articles.js +1 -0
  13. package/dist/culinaryquests/prompts/gpt4oMini/articles.d.ts +6 -0
  14. package/dist/culinaryquests/prompts/gpt4oMini/articles.js +1 -0
  15. package/dist/culinaryquests/prompts/images.d.ts +4 -0
  16. package/dist/culinaryquests/prompts/images.js +1 -0
  17. package/dist/culinaryquests/seo.d.ts +23 -0
  18. package/dist/culinaryquests/seo.js +1 -0
  19. package/dist/culinaryquests/styles/colors.css +1 -0
  20. package/dist/culinaryquests/styles/fonts.css +1 -0
  21. package/dist/culinaryquests/styles/global.css +1 -0
  22. package/dist/culinaryquests/styles/sizing.css +1 -0
  23. package/dist/culinaryquests/styles/theme.css +1 -0
  24. package/dist/culinaryquests/styles/vars.css +1 -0
  25. package/dist/feastfanatics/data.d.ts +267 -0
  26. package/dist/feastfanatics/data.js +1 -0
  27. package/dist/feastfanatics/filters.d.ts +28 -0
  28. package/dist/feastfanatics/filters.js +1 -0
  29. package/dist/feastfanatics/helpers.d.ts +3 -0
  30. package/dist/feastfanatics/helpers.js +1 -0
  31. package/dist/feastfanatics/index.d.ts +15 -0
  32. package/dist/feastfanatics/index.js +1 -0
  33. package/dist/feastfanatics/prompts/data.d.ts +7 -0
  34. package/dist/feastfanatics/prompts/data.js +1 -0
  35. package/dist/feastfanatics/prompts/gpt35turbo/articles.d.ts +6 -0
  36. package/dist/feastfanatics/prompts/gpt35turbo/articles.js +1 -0
  37. package/dist/feastfanatics/prompts/gpt4oMini/articles.d.ts +6 -0
  38. package/dist/feastfanatics/prompts/gpt4oMini/articles.js +1 -0
  39. package/dist/feastfanatics/prompts/images.d.ts +4 -0
  40. package/dist/feastfanatics/prompts/images.js +1 -0
  41. package/dist/feastfanatics/seo.d.ts +23 -0
  42. package/dist/feastfanatics/seo.js +1 -0
  43. package/dist/feastfanatics/styles/colors.css +1 -0
  44. package/dist/feastfanatics/styles/fonts.css +1 -0
  45. package/dist/feastfanatics/styles/global.css +1 -0
  46. package/dist/feastfanatics/styles/sizing.css +1 -0
  47. package/dist/feastfanatics/styles/theme.css +1 -0
  48. package/dist/feastfanatics/styles/vars.css +1 -0
  49. package/package.json +1 -1
@@ -0,0 +1,229 @@
1
+ export declare const dataStructure: {
2
+ recipes: {
3
+ title: string;
4
+ description: string;
5
+ slug: string;
6
+ children: {
7
+ quickMeals: {
8
+ title: string;
9
+ description: string;
10
+ slug: string;
11
+ children: null;
12
+ };
13
+ gourmetDishes: {
14
+ title: string;
15
+ description: string;
16
+ slug: string;
17
+ children: null;
18
+ };
19
+ healthyRecipes: {
20
+ title: string;
21
+ description: string;
22
+ slug: string;
23
+ children: null;
24
+ };
25
+ holidaySpecials: {
26
+ title: string;
27
+ description: string;
28
+ slug: string;
29
+ children: null;
30
+ };
31
+ desserts: {
32
+ title: string;
33
+ description: string;
34
+ slug: string;
35
+ children: null;
36
+ };
37
+ other: {
38
+ title: string;
39
+ description: string;
40
+ slug: string;
41
+ children: null;
42
+ };
43
+ };
44
+ };
45
+ cookingTechniques: {
46
+ title: string;
47
+ description: string;
48
+ slug: string;
49
+ children: {
50
+ bakingBasics: {
51
+ title: string;
52
+ description: string;
53
+ slug: string;
54
+ children: null;
55
+ };
56
+ grillingTips: {
57
+ title: string;
58
+ description: string;
59
+ slug: string;
60
+ children: null;
61
+ };
62
+ stirFrying: {
63
+ title: string;
64
+ description: string;
65
+ slug: string;
66
+ children: null;
67
+ };
68
+ pressureCooking: {
69
+ title: string;
70
+ description: string;
71
+ slug: string;
72
+ children: null;
73
+ };
74
+ platingAndPresentation: {
75
+ title: string;
76
+ description: string;
77
+ slug: string;
78
+ children: null;
79
+ };
80
+ other: {
81
+ title: string;
82
+ description: string;
83
+ slug: string;
84
+ children: null;
85
+ };
86
+ };
87
+ };
88
+ ingredients: {
89
+ title: string;
90
+ description: string;
91
+ slug: string;
92
+ children: {
93
+ seasonalProduce: {
94
+ title: string;
95
+ description: string;
96
+ slug: string;
97
+ children: null;
98
+ };
99
+ spiceGuides: {
100
+ title: string;
101
+ description: string;
102
+ slug: string;
103
+ children: null;
104
+ };
105
+ substitutions: {
106
+ title: string;
107
+ description: string;
108
+ slug: string;
109
+ children: null;
110
+ };
111
+ pantryStaples: {
112
+ title: string;
113
+ description: string;
114
+ slug: string;
115
+ children: null;
116
+ };
117
+ meatsAndSeafood: {
118
+ title: string;
119
+ description: string;
120
+ slug: string;
121
+ children: null;
122
+ };
123
+ other: {
124
+ title: string;
125
+ description: string;
126
+ slug: string;
127
+ children: null;
128
+ };
129
+ };
130
+ };
131
+ cuisineExploration: {
132
+ title: string;
133
+ description: string;
134
+ slug: string;
135
+ children: {
136
+ italianCuisine: {
137
+ title: string;
138
+ description: string;
139
+ slug: string;
140
+ children: null;
141
+ };
142
+ asianFlavors: {
143
+ title: string;
144
+ description: string;
145
+ slug: string;
146
+ children: null;
147
+ };
148
+ mexicanDishes: {
149
+ title: string;
150
+ description: string;
151
+ slug: string;
152
+ children: null;
153
+ };
154
+ middleEasternRecipes: {
155
+ title: string;
156
+ description: string;
157
+ slug: string;
158
+ children: null;
159
+ };
160
+ regionalSpecialties: {
161
+ title: string;
162
+ description: string;
163
+ slug: string;
164
+ children: null;
165
+ };
166
+ other: {
167
+ title: string;
168
+ description: string;
169
+ slug: string;
170
+ children: null;
171
+ };
172
+ };
173
+ };
174
+ mealPlanning: {
175
+ title: string;
176
+ description: string;
177
+ slug: string;
178
+ children: {
179
+ weeklyMenus: {
180
+ title: string;
181
+ description: string;
182
+ slug: string;
183
+ children: null;
184
+ };
185
+ themedDinnerNights: {
186
+ title: string;
187
+ description: string;
188
+ slug: string;
189
+ children: null;
190
+ };
191
+ mealPrepStrategies: {
192
+ title: string;
193
+ description: string;
194
+ slug: string;
195
+ children: null;
196
+ };
197
+ budgetFriendlyMeals: {
198
+ title: string;
199
+ description: string;
200
+ slug: string;
201
+ children: null;
202
+ };
203
+ familyFriendlyOptions: {
204
+ title: string;
205
+ description: string;
206
+ slug: string;
207
+ children: null;
208
+ };
209
+ other: {
210
+ title: string;
211
+ description: string;
212
+ slug: string;
213
+ children: null;
214
+ };
215
+ };
216
+ };
217
+ };
218
+ export declare const authors: Record<string, string>;
219
+ export declare const authorsNames: string[];
220
+ export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83C\uDF73\uD83C\uDF7D\uFE0F\uD83D\uDCDA\uD83D\uDC68\u200D\uD83C\uDF73";
221
+ export declare const categories: ("recipes" | "cookingTechniques" | "ingredients" | "cuisineExploration" | "mealPlanning")[];
222
+ export declare const subcategories: string[];
223
+ export declare const subsubcategories: string[];
224
+ export type Category = keyof typeof dataStructure;
225
+ export type CategoryNode = (typeof dataStructure)[Category];
226
+ export type SubcategoryKeyByCategory<T extends Category> = (typeof dataStructure)[T]['children'];
227
+ export declare const startDate = "2024-09-19T00:00:00Z";
228
+ export declare const devBucketName = "idn-culinaryquests-dev";
229
+ export declare const prodBucketName = "idn-culinaryquests";
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./seo.js");const i={recipes:{title:"Explore Delicious Recipes for Every Occasion 🍳",description:"Discover a variety of recipes from quick meals to gourmet dishes. Unleash your culinary creativity at CulinaryQuests! 🥘✨",slug:"delicious-recipes",children:{quickMeals:{title:"Quick Meals for Busy Schedules ⏰",description:"Find quick and easy meal ideas that fit your busy lifestyle! Enjoy delicious dishes ready in no time with our quick meals section. 🍝🥗",slug:"quick-meals",children:null},gourmetDishes:{title:"Crafted Gourmet Dishes for Culinary Enthusiasts 👨‍🍳",description:"Elevate your cooking skills with gourmet recipes that impress. Discover sophisticated gourmet dishes at CulinaryQuests! 🍷🍰",slug:"gourmet-dishes",children:null},healthyRecipes:{title:"Healthy Recipes for a Balanced Lifestyle 🥦",description:"Explore wholesome and nutritious recipes that promote a healthy lifestyle. Create delicious meals with our healthy recipes! 🥗🍽️",slug:"healthy-recipes",children:null},holidaySpecials:{title:"Holiday Specials: Celebrate with Festive Recipes 🎉",description:"Make your holidays memorable with special recipes designed for celebrations. Discover festive foods for every occasion! 🎄🍽️",slug:"holiday-specials",children:null},desserts:{title:"Irresistible Desserts to Satisfy Your Sweet Tooth 🍰",description:"Indulge in our collection of delightful desserts. From cakes to cookies, find recipes that are simply irresistible! 🍪🍨",slug:"desserts",children:null},other:{title:"Other Recipes: Unique Culinary Creations 🍽️",description:"Explore a variety of unique recipes that don't fit into traditional categories. Uncover new tastes with our other recipes! 🥘🌍",slug:"other-recipes",children:null}}},cookingTechniques:{title:"Master Essential Cooking Techniques for Culinary Success 🍽️",description:"Explore a variety of cooking techniques to elevate your culinary skills. From baking basics to grilling tips, discover the art of cooking! 👩‍🍳",slug:"cooking-techniques",children:{bakingBasics:{title:"Baking Basics: Your Guide to Perfectly Baked Goods 🍰",description:"Discover essential baking techniques and tips for achieving mouthwatering pastries and bread. Master the art of baking with our detailed guides! 🥐",slug:"baking-basics",children:null},grillingTips:{title:"Grilling Tips: Unlock Flavorful Outdoor Cooking 🔥",description:"Enhance your grilling skills with expert tips for perfectly cooked meats and veggies. Make your next barbecue unforgettable with our guidance! 🍖",slug:"grilling-tips",children:null},stirFrying:{title:"Stir Frying: Quick and Delicious Meals in Minutes ⏱️",description:"Learn the art of stir frying with techniques that create vibrant, flavorful meals quickly. Unleash your inner chef with these easy recipes! 🥢",slug:"stir-frying",children:null},pressureCooking:{title:"Pressure Cooking: Fast and Flavorful Meals in No Time ⏲️",description:"Discover the benefits of pressure cooking for quick, tasty meals. Learn techniques that save time while enhancing flavor and nutrition! 🍲",slug:"pressure-cooking",children:null},platingAndPresentation:{title:"Plating & Presentation: Elevate Your Culinary Art 🎨",description:"Transform your dishes with plating and presentation techniques that make meals visually stunning. Impress your guests with our expert tips! 🍽️",slug:"plating-and-presentation",children:null},other:{title:"Other Cooking Techniques: Expand Your Culinary Horizons 🌍",description:"Explore additional cooking techniques to diversify your culinary repertoire. Discover new methods that can ignite your passion for cooking! 🍳",slug:"other-cooking-techniques",children:null}}},ingredients:{title:"Explore Essential Ingredients and Cooking Tips for Every Kitchen 🍽️",description:"Dive into the world of essential ingredients with our guides on seasonal produce, spices, substitutions, and more. Elevate your cooking experience! 🌟",slug:"ingredients",children:{seasonalProduce:{title:"Seasonal Produce: Fresh Picks for Your Culinary Creations 🌱",description:"Discover the benefits of using seasonal produce in your dishes. Learn which fruits and vegetables are at their best throughout the year! 🍏🍅",slug:"seasonal-produce",children:null},spiceGuides:{title:"Comprehensive Spice Guides: Unlock Flavorful Potential 🌶️",description:"Master the art of seasoning with our extensive spice guides. Discover how to use spices to elevate your dishes and cuisine! 🍳",slug:"spice-guides",children:null},substitutions:{title:"Ingredient Substitutions: Never Miss a Beat in Cooking 🥘",description:"Never let missing ingredients stop you from cooking! Explore our handy substitutions guide for seamless meal preparation. 🍝✨",slug:"ingredient-substitutions",children:null},pantryStaples:{title:"Pantry Staples: Essential Ingredients for Every Kitchen 🥫",description:"Stock your pantry with must-have staples that make meal prep a breeze. Find out what to keep on hand for quick and delicious meals! 🍽️",slug:"pantry-staples",children:null},meatsAndSeafood:{title:"Meats and Seafood: Fresh Options for Savory Dishes 🍤🐔",description:"Explore the world of meats and seafood. Discover tips on selection, preparation, and pairing for unforgettable culinary creations! 🥩💦",slug:"meats-and-seafood",children:null},other:{title:"Other Ingredients: Unique Finds to Enhance Your Cooking 🥑",description:"Venture beyond the basics! Explore unique ingredients that will surprise and delight in your culinary adventures. 🌍🧄",slug:"other-ingredients",children:null}}},cuisineExploration:{title:"Explore Global Cuisine: Recipes and Culinary Adventures 🌍",description:"Dive into the world of recipes and culinary explorations with tips, tricks, and creative ideas to enhance your cooking journey! 🍽️",slug:"explore-global-cuisine",children:{italianCuisine:{title:"Delicious Italian Cuisine: Classic Recipes Await 🍝",description:"Discover mouthwatering Italian recipes, cooking techniques, and the rich culinary traditions that bring Italy to your table! 🇮🇹",slug:"delicious-italian-cuisine",children:null},asianFlavors:{title:"Savor Exotic Asian Flavors: A Culinary Journey 🌶️",description:"Embark on a culinary adventure with bold Asian flavors and traditional recipes that will transport your taste buds to the East! 🍜",slug:"savor-exotic-asian-flavors",children:null},mexicanDishes:{title:"Irresistible Mexican Dishes: Spice Up Your Meals 🌮",description:"Explore spicy and vibrant Mexican dishes that will liven up your cooking and tantalize your taste buds with every bite! 🇲🇽",slug:"irresistible-mexican-dishes",children:null},middleEasternRecipes:{title:"Authentic Middle Eastern Recipes: Flavors of Tradition 🍢",description:"Uncover authentic Middle Eastern recipes that showcase rich flavors, aromatic spices, and ancient culinary traditions! 🌿",slug:"authentic-middle-eastern-recipes",children:null},regionalSpecialties:{title:"Explore Regional Specialties: Unique Recipes from Around 🌍",description:"Delve into regional specialties that highlight local ingredients and traditions, bringing diverse flavors to your kitchen! 🍴",slug:"explore-regional-specialties",children:null},other:{title:"Other Unique Recipes: Discover Diverse Culinary Art 🌟",description:"Check out unique recipes from various cultures that don’t fit into traditional categories, broadening your culinary horizons! 🥘",slug:"other-unique-recipes",children:null}}},mealPlanning:{title:"Mastering Meal Planning for Culinary Adventurers 🌟",description:"Explore effective meal planning strategies that fit your lifestyle. Discover new meals, prep techniques, and budget-friendly options today! 🍽️",slug:"meal-planning",children:{weeklyMenus:{title:"Delicious Weekly Menus for Every Palate 🍽️",description:"Find inspiring weekly menus tailored to your tastes and dietary needs. Simplify your meal prep and enjoy diverse flavors every week! 🌈",slug:"weekly-menus",children:null},themedDinnerNights:{title:"Themed Dinner Nights: Fun Culinary Experiences 🎉",description:"Transform any evening into a memorable themed dinner night with creative ideas and recipes to impress your guests or family! 🎭",slug:"themed-dinner-nights",children:null},mealPrepStrategies:{title:"Effective Meal Prep Strategies for Busy Lives 🍳",description:"Master meal prep with strategic tips and tricks that save time, reduce stress, and keep your meals fresh throughout the week! ⏰",slug:"meal-prep-strategies",children:null},budgetFriendlyMeals:{title:"Budget-Friendly Meals That Don't Compromise Taste 💰",description:"Discover budget-friendly meal ideas that are delicious and satisfying, proving that tasty cooking doesn’t have to break the bank! 🌿",slug:"budget-friendly-meals",children:null},familyFriendlyOptions:{title:"Family-Friendly Meal Options for Picky Eaters 👨‍👩‍👧‍👦",description:"Explore family-friendly meal options that cater to everyone at the table, making mealtime enjoyable with recipes even picky eaters will love! 🍲",slug:"family-friendly-options",children:null},other:{title:"Other Meal Planning Ideas and Resources 🥗",description:"Uncover unique meal planning resources and ideas beyond the ordinary, enriching your culinary journey with creative inspirations! 💡",slug:"other-meal-planning-ideas",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-19T00:00:00Z",c="culinaryquests",u=`idn-${c}-dev`,d=`idn-${c}`;exports.DEFAULT_DESCRIPTION_EMOJIS=n,exports.authors=t,exports.authorsNames=s,exports.categories=r,exports.dataStructure=i,exports.devBucketName=u,exports.prodBucketName=d,exports.startDate=a,exports.subcategories=o,exports.subsubcategories=l;
@@ -0,0 +1,28 @@
1
+ export declare enum FiltersNames {
2
+ CulinaryJourney = "CulinaryJourney",
3
+ CookingLevel = "CookingLevel",
4
+ FlavorProfiles = "FlavorProfiles",
5
+ MealType = "MealType",
6
+ IngredientFocus = "IngredientFocus"
7
+ }
8
+ type CulinaryJourneyValues = 'Quick & Easy' | 'Gourmet Delights' | 'Vegetarian Adventures' | 'Global Flavors';
9
+ type CookingLevelValues = 'Beginner Friendly' | 'Intermediate Techniques' | 'Advanced Recipes' | "Chef's Challenge";
10
+ type FlavorProfilesValues = 'Savory & Hearty' | 'Sweet & Delightful' | 'Spicy & Bold' | 'Fresh & Zesty';
11
+ type MealTypeValues = 'Breakfast Boosts' | 'Lunchtime Essentials' | 'Dinner Classics' | 'Decadent Desserts';
12
+ type IngredientFocusValues = 'Seasonal Produce' | 'Pantry Staples' | 'Exotic Ingredients' | 'Healthy Options';
13
+ export type ArticleFilters = {
14
+ [FiltersNames.CulinaryJourney]: CulinaryJourneyValues[];
15
+ [FiltersNames.CookingLevel]: CookingLevelValues[];
16
+ [FiltersNames.FlavorProfiles]: FlavorProfilesValues[];
17
+ [FiltersNames.MealType]: MealTypeValues[];
18
+ [FiltersNames.IngredientFocus]: IngredientFocusValues[];
19
+ };
20
+ export declare const culinaryJourneyValues: CulinaryJourneyValues[];
21
+ export declare const cookingLevelValues: CookingLevelValues[];
22
+ export declare const flavorProfilesValues: FlavorProfilesValues[];
23
+ export declare const mealTypeValues: MealTypeValues[];
24
+ export declare const ingredientFocusValues: IngredientFocusValues[];
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={})).CulinaryJourney="CulinaryJourney",e.CookingLevel="CookingLevel",e.FlavorProfiles="FlavorProfiles",e.MealType="MealType",e.IngredientFocus="IngredientFocus";const s=["Quick & Easy","Gourmet Delights","Vegetarian Adventures","Global Flavors"],r=["Beginner Friendly","Intermediate Techniques","Advanced Recipes","Chef's Challenge"],t=["Savory & Hearty","Sweet & Delightful","Spicy & Bold","Fresh & Zesty"],l=["Breakfast Boosts","Lunchtime Essentials","Dinner Classics","Decadent Desserts"],o=["Seasonal Produce","Pantry Staples","Exotic Ingredients","Healthy Options"],i={[exports.FiltersNames.CulinaryJourney]:[],[exports.FiltersNames.CookingLevel]:[],[exports.FiltersNames.FlavorProfiles]:[],[exports.FiltersNames.MealType]:[],[exports.FiltersNames.IngredientFocus]:[]},a={[exports.FiltersNames.CulinaryJourney]:s,[exports.FiltersNames.CookingLevel]:r,[exports.FiltersNames.FlavorProfiles]:t,[exports.FiltersNames.MealType]:l,[exports.FiltersNames.IngredientFocus]:o},n=()=>JSON.stringify(a,null,2);exports.cookingLevelValues=r,exports.culinaryJourneyValues=s,exports.flavorProfilesValues=t,exports.fullFilters=a,exports.getFiltersTypesJSON=n,exports.ingredientFocusValues=o,exports.initialFilters=i,exports.mealTypeValues=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.cookingLevelValues=t.cookingLevelValues,exports.culinaryJourneyValues=t.culinaryJourneyValues,exports.flavorProfilesValues=t.flavorProfilesValues,exports.fullFilters=t.fullFilters,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.ingredientFocusValues=t.ingredientFocusValues,exports.initialFilters=t.initialFilters,exports.mealTypeValues=t.mealTypeValues,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: CulinaryQuests is an informative and entertaining online portal focused on the world of recipes and culinary adventures. It serves as a hub for food enthusiasts seeking inspiration, knowledge, and creativity in their cooking endeavors.\n - Detailed description: CulinaryQuests is a comprehensive infotainment platform designed for anyone passionate about cooking and exploring various cuisines. The portal features a vast collection of recipes ranging from simple everyday meals to intricate gourmet dishes. Users can find detailed cooking guides, tips, and tricks that enhance their culinary skills. Beyond recipes, CulinaryQuests provides engaging articles about culinary techniques, ingredient substitutions, meal preparation strategies, and cultural food explorations. The content is curated to cater to both novice cooks and seasoned chefs, promoting a community of food lovers eager to share their culinary quests.\n - Target audience: The target audience for CulinaryQuests includes home cooks of all skill levels, ranging from beginners looking for easy meal ideas to experienced chefs seeking inspiration for new dishes. Additionally, food enthusiasts, culinary students, and individuals interested in exploring different cuisines and cooking techniques will find valuable resources and engaging content on the portal.\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 - Brief description of the dish\n - Ingredients list\n\n## Step-by-Step Cooking Instructions\n - Detailed cooking process\n - Useful tips for each step\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: CulinaryQuests is an informative and entertaining online portal focused on the world of recipes and culinary adventures. It serves as a hub for food enthusiasts seeking inspiration, knowledge, and creativity in their cooking endeavors.\n - Detailed description: CulinaryQuests is a comprehensive infotainment platform designed for anyone passionate about cooking and exploring various cuisines. The portal features a vast collection of recipes ranging from simple everyday meals to intricate gourmet dishes. Users can find detailed cooking guides, tips, and tricks that enhance their culinary skills. Beyond recipes, CulinaryQuests provides engaging articles about culinary techniques, ingredient substitutions, meal preparation strategies, and cultural food explorations. The content is curated to cater to both novice cooks and seasoned chefs, promoting a community of food lovers eager to share their culinary quests.\n - Target audience: The target audience for CulinaryQuests includes home cooks of all skill levels, ranging from beginners looking for easy meal ideas to experienced chefs seeking inspiration for new dishes. Additionally, food enthusiasts, culinary students, and individuals interested in exploring different cuisines and cooking techniques will find valuable resources and engaging content on the portal.\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 - Brief description of the dish\n - Ingredients list\n\n## Step-by-Step Cooking Instructions\n - Detailed cooking process\n - Useful tips for each step\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:"Meet the Culinary Artists | CulinaryQuests",description:"Discover the talented chefs behind your favorite recipes! 🍽️ Explore their culinary stories and inspirations at CulinaryQuests."},[exports.PageNames.Home]:{title:"CulinaryQuests | Explore Delicious Recipes & Culinary Tips",description:"Join CulinaryQuests on a flavorful journey! 🍳 Dive into a world of mouthwatering recipes and expert culinary tips that will elevate your cooking."},[exports.PageNames.NotFound]:{title:"Page Not Found | CulinaryQuests",description:"Oops! 🌍 The page you're looking for can't be found. Perhaps try a delicious recipe instead?"},[exports.PageNames.AboutUs]:{title:"About CulinaryQuests | Your Culinary Journey Begins",description:"Learn about CulinaryQuests, where passion for food meets creativity! 🌟 Join us as we explore the art of cooking and share delectable recipes."},[exports.PageNames.PrivacyPolicy]:{title:"Privacy Policy | CulinaryQuests",description:"Your privacy matters! 🔒 Read CulinaryQuests' Privacy Policy to understand how we protect your data while you explore our recipes."},[exports.PageNames.Terms]:{title:"Terms of Service | CulinaryQuests",description:"Stay informed about your rights & responsibilities while using CulinaryQuests. 📜 Review our Terms of Service for a seamless culinary experience."},[exports.PageNames.Sitemap]:{title:"Sitemap | Navigate CulinaryQuests Easily",description:"Easily find what you're looking for on CulinaryQuests! 🗺️ View our Sitemap to explore all our delicious recipes and culinary content."}},a=[{name:"Vidya Patel",description:"Vidya Patel is a seasoned culinary expert and food blogger with over 10 years of experience experimenting with traditional Indian recipes and modern culinary techniques. She shares her passion for Indian cuisine on her blog and is dedicated to educating her readers about the cultural significance of each dish.",meta_title:"Vidya Patel - Culinary Expert & Indian Cuisine Blogger",meta_description:"Discover the flavors of India with Vidya Patel, a culinary expert with a decade of experience. Explore traditional and modern Indian recipes on CulinaryQuests."},{name:"Rahul Sharma",description:"Rahul Sharma is a food scientist turned chef who specializes in nutritional Indian cooking. With a background in food technology, he combines science with culinary art to create delicious, healthy recipes that are accessible to everyone. He aims to inspire home cooks to embrace healthy eating without compromising on taste.",meta_title:"Rahul Sharma - Nutritional Indian Cooking Specialist",meta_description:"Join Rahul Sharma as he merges science and flavor to craft healthy Indian recipes. Explore culinary innovation at CulinaryQuests."},{name:"Neha Kapoor",description:"Neha Kapoor is a food stylist and recipe developer known for her vibrant presentation of classic Indian dishes. With a formal education in culinary arts and a deep-rooted love for her heritage, she brings a creative twist to authentic recipes, making them visually stunning and delicious.",meta_title:"Neha Kapoor - Food Stylist & Indian Recipe Developer",meta_description:"Explore creative and visual Indian recipes by Neha Kapoor, a talented food stylist and recipe developer, on CulinaryQuests."},{name:"Amit Desai",description:"Amit Desai is a passionate home cook and culinary storyteller who believes in the magic of food as a means to connect people. His heritage-rich recipes reflect his family's history and cultural backgrounds, often incorporating stories that celebrate the culinary traditions of India.",meta_title:"Amit Desai - Culinary Storyteller & Home Cook",meta_description:"Join Amit Desai on a flavorful journey through India's culinary traditions. Discover heartfelt recipes and stories at CulinaryQuests."},{name:"Sita Joshi",description:"Sita Joshi is a master of vegetarian Indian cooking with a focus on sustainability and local ingredients. With extensive experience teaching cooking classes, she brings her love for eco-friendly practices into her recipes, promoting healthy living through mindful cooking.",meta_title:"Sita Joshi - Vegetarian Indian Cooking Enthusiast",meta_description:"Explore sustainable and delicious vegetarian Indian recipes with Sita Joshi, a passionate eco-friendly culinary expert, on CulinaryQuests."},{name:"Vikram Singh",description:"Vikram Singh is a seasoned chef with over 15 years of experience in Indian cuisine, specializing in Mughlai and regional dishes. His culinary journey has taken him across India, where he has learned from various masters, allowing him to share authentic, flavorful recipes with a global audience.",meta_title:"Vikram Singh - Mughlai Cuisine Specialist",meta_description:"Dive into the rich flavors of Mughlai cuisine with Vikram Singh, an expert chef sharing authentic recipes on CulinaryQuests."},{name:"Anjali Mehta",description:"Anjali Mehta is a dedicated culinary researcher and author focused on the history and evolution of Indian street food. Her work aims to preserve traditional recipes while introducing variations that appeal to modern tastes, making street food accessible to home cooks.",meta_title:"Anjali Mehta - Indian Street Food Researcher & Author",meta_description:"Explore the world of Indian street food with Anjali Mehta, dedicated to preserving and reinventing traditional recipes at CulinaryQuests."},{name:"Ravi Kumar",description:"Ravi Kumar is an innovative chef and food photographer who captures the essence of Indian cuisine through his lens. With years of experience in prominent restaurants, he blends culinary traditions with artistic presentation, encouraging readers to celebrate the beauty of cooking.",meta_title:"Ravi Kumar - Innovative Chef & Food Photographer",meta_description:"Discover the beauty of Indian cuisine with Ravi Kumar, an innovative chef and food photographer, creating visually stunning recipes on CulinaryQuests."},{name:"Pooja Reddy",description:"Pooja Reddy is a holistic culinary practitioner specializing in Ayurvedic cooking. With a background in nutrition and wellness, she offers recipes that are not only delicious but also promote overall health and balance, helping readers to nourish their bodies and souls.",meta_title:"Pooja Reddy - Holistic Chef & Ayurvedic Cooking Specialist",meta_description:"Embrace health and flavor with Pooja Reddy, a holistic chef specializing in Ayurvedic recipes for a balanced life on CulinaryQuests."},{name:"Karan Gupta",description:"Karan Gupta is a travel enthusiast and food writer who shares his culinary adventures around India. With a knack for storytelling, he brings to life the local flavors and hidden gems from various regions, encouraging readers to explore the diverse Indian culinary landscape.",meta_title:"Karan Gupta - Travel & Food Writer Exploring Indian Cuisine",meta_description:"Join Karan Gupta on a gastronomic journey across India, celebrating local flavors and regional specialties at CulinaryQuests."},{name:"Anjali Sharma",description:"Anjali Sharma is a food enthusiast and recipe developer known for her vibrant food photography and innovative takes on classic Indian recipes. With a background in food science, she combines knowledge and creativity to inspire home cooks at CulinaryQuests.",meta_title:"Anjali Sharma - Culinary Innovator at CulinaryQuests",meta_description:"Discover innovative Indian recipes and culinary tips from Anjali Sharma, a food enthusiast and recipe developer, sharing her passion for flavor on CulinaryQuests."},{name:"Rajiv Kapoor",description:"Rajiv Kapoor has been a professional chef for over 15 years, specializing in regional Indian cuisines. He has worked in a variety of restaurants around the world and brings his expertise to CulinaryQuests, creating authentic and delicious recipes for his readers.",meta_title:"Rajiv Kapoor - Regional Indian Cuisine Expert at CulinaryQuests",meta_description:"Delve into the rich tapestry of Indian cuisine with Rajiv Kapoor, a professional chef with 15 years of experience, sharing regional recipes on CulinaryQuests."},{name:"Neha Mehta",description:"Neha Mehta is a food writer and culinary coach who focuses on healthy Indian cooking. With her unique approach to transforming traditional recipes into healthier options, she empowers her readers to embrace nutritious cooking habits on CulinaryQuests.",meta_title:"Neha Mehta - Healthy Indian Cooking Advocate at CulinaryQuests",meta_description:"Join Neha Mehta on a journey of healthy Indian cooking, where she reimagines traditional recipes for a nutritious lifestyle, only at CulinaryQuests."},{name:"Ravi Patel",description:"Ravi Patel is a culinary consultant and food stylist who has worked on numerous cookbooks and food magazines. His artistic flair in presenting Indian dishes has earned him acclaim in the culinary world, making his recipes and styling tips a delightful addition to CulinaryQuests.",meta_title:"Ravi Patel - Culinary Consultant & Food Stylist at CulinaryQuests",meta_description:"Explore the artistic side of Indian cooking with Ravi Patel, a culinary consultant and food stylist creating stunning recipes and presentations on CulinaryQuests."},{name:"Priya Desai",description:"Priya Desai is a passionate home cook and food blogger who specializes in vegetarian Indian recipes. Her approachable cooking style and commitment to vegetarianism resonate deeply with her readers, making her contributions to CulinaryQuests a favorite among family cooks.",meta_title:"Priya Desai - Vegetarian Cooking Enthusiast at CulinaryQuests",meta_description:"Discover delicious vegetarian Indian recipes and cooking tips from Priya Desai, a passionate home cook sharing her culinary journey at CulinaryQuests."},{name:"Karan Singh",description:"Karan Singh is a renowned culinary artist with a flair for fusion cuisine, combining traditional Indian flavors with international influences. His innovative recipes on CulinaryQuests inspire food lovers to experiment and indulge in creative cooking.",meta_title:"Karan Singh - Fusion Cuisine Artist at CulinaryQuests",meta_description:"Experience the art of fusion cooking with Karan Singh, who blends traditional Indian flavors with global influences in his creative recipes at CulinaryQuests."},{name:"Sita Nair",description:"Sita Nair is a travel writer and food blogger dedicated to exploring the diverse culinary landscapes of India. Her rich narratives and authentic recipes capture the essence of Indian culture, making her articles on CulinaryQuests a feast for the senses.",meta_title:"Sita Nair - Culinary Travel Writer at CulinaryQuests",meta_description:"Travel through India's diverse culinary landscape with Sita Nair, who shares authentic recipes and cultural narratives on her journey at CulinaryQuests."},{name:"Amit Joshi",description:"Amit Joshi is a chef and restaurant owner with over 20 years of experience in the Indian culinary scene. His commitment to sustainability and local sourcing shines through in his recipes, which are featured on CulinaryQuests for environmentally conscious food lovers.",meta_title:"Amit Joshi - Sustainable Cooking Advocate at CulinaryQuests",meta_description:"Join Amit Joshi in embracing sustainable cooking with his delicious Indian recipes that emphasize local sourcing and environmental consciousness at CulinaryQuests."},{name:"Meera Gupta",description:"Meera Gupta is a culinary writer and nutritionist who focuses on ancient Indian cooking techniques. Her expertise in healthy eating and nostalgia for traditional recipes merge seamlessly, offering a wealth of knowledge and tasty recipes on CulinaryQuests.",meta_title:"Meera Gupta - Ancient Techniques & Nutrition Expert at CulinaryQuests",meta_description:"Explore the world of ancient Indian cooking with Meera Gupta, a culinary writer and nutritionist sharing nutritious and traditional recipes on CulinaryQuests."},{name:"Nisha Priyadarshini",description:"Nisha Priyadarshini is a culinary expert and food blogger with over a decade of experience in Indian cuisine. Specializing in vegetarian dishes, she has contributed to multiple food magazines and has authored her own recipe book. Nisha’s passion for fusion cooking ensures that her recipes are both authentic and innovative.",meta_title:"Nisha Priyadarshini - Culinary Expert and Recipe Developer",meta_description:"Explore delicious vegetarian recipes and expert tips from Nisha Priyadarshini, an experienced food blogger and author specializing in Indian cuisine."},{name:"Rahul Mehta",description:"Rahul Mehta is a renowned chef and culinary educator, known for his expertise in Indian street food. With over 15 years of professional cooking experience, he shares his love for food through engaging articles that inspire home cooks to recreate traditional street food recipes. He also runs popular cooking workshops.",meta_title:"Rahul Mehta - Street Food Chef and Culinary Educator",meta_description:"Delve into the vibrant world of Indian street food with Rahul Mehta. Discover recipes, cooking tips, and the culture behind the cuisine."},{name:"Priya Deshmukh",description:"Priya Deshmukh is a food stylist and recipe creator, celebrated for her artistic presentation of Indian dishes. With her background in design and over 8 years of culinary experience, Priya crafts visually stunning recipes that are as delightful to the eyes as they are to the palate.",meta_title:"Priya Deshmukh - Food Stylist and Recipe Creator",meta_description:"Join Priya Deshmukh on a culinary journey where beauty meets flavor. Find stunning Indian recipes and presentation tips that impress."},{name:"Suresh Nair",description:"Suresh Nair is an award-winning chef and food writer specializing in Indian regional cuisines. With a passion for storytelling through food, he shares his 12 years of experience in cooking, writing, and blogging about the diverse flavors of Indian culinary traditions.",meta_title:"Suresh Nair - Award-Winning Chef and Food Writer",meta_description:"Learn about the rich diversity of Indian regional cuisines with Suresh Nair. Discover unique recipes and the stories behind them."},{name:"Anjana Kumar",description:"Anjana Kumar is a home cook and food enthusiast who shares authentic Indian recipes and cooking tips. With her simple and accessible cooking style, she has built a loyal following. Anjana believes in the power of home-cooked meals to bring families together.",meta_title:"Anjana Kumar - Home Cook and Food Enthusiast",meta_description:"Explore authentic Indian recipes from Anjana Kumar, a home cook passionate about sharing family-friendly meals to bring joy to your table."},{name:"Rina Chowdhury",description:"Rina Chowdhury is an accomplished food writer and recipe developer, focusing on Indian desserts and sweets. With over 9 years in the culinary space, she brings a rich understanding of traditional techniques while incorporating contemporary twists in her recipes.",meta_title:"Rina Chowdhury - Dessert Expert and Recipe Developer",meta_description:"Indulge in the sweet world of Indian desserts with Rina Chowdhury. Find delightful recipes and expert tips to satisfy your sweet tooth."},{name:"Vikram Bhatia",description:"Vikram Bhatia is a celebrity chef and author known for his expertise in Indian barbecue and grilling techniques. He has hosted numerous cooking shows and workshops, sharing his knowledge of how to elevate traditional Indian dishes with modern grilling methods.",meta_title:"Vikram Bhatia - Celebrity Chef and Barbecue Expert",meta_description:"Master the art of Indian barbecue with Vikram Bhatia. Discover recipes and techniques that bring your grilling to the next level."},{name:"Lina Mehta",description:"Lina Mehta is a passionate food blogger and cookbook author who specializes in healthy Indian recipes. With a focus on nutritious ingredients and wellness, she offers a modern take on traditional dishes, empowering readers to cook healthy meals with ease.",meta_title:"Lina Mehta - Healthy Indian Cuisine Advocate",meta_description:"Explore healthy Indian cooking with Lina Mehta. Discover nutritious recipes and wellness tips to make eating well enjoyable and delicious."},{name:"Jayesh Pandey",description:"Jayesh Pandey is a food historian and writer who explores the roots and nuances of Indian culinary traditions. Through his in-depth articles, he shares his 11 years of research, helping readers understand the significance of various dishes and the cultures they come from.",meta_title:"Jayesh Pandey - Food Historian and Culinary Writer",meta_description:"Uncover the rich history of Indian cuisine with Jayesh Pandey. Dive into insightful articles and recipes that celebrate the culture of food."},{name:"Nisha Sinha",description:"Nisha Sinha is a culinary expert and food blogger specializing in Indian vegetarian cuisine. With over 10 years of experience in recipe development and food writing, she shares her passion for cooking through her articles that celebrate the diverse flavors of Indian cooking.",meta_title:"Nisha Sinha - Indian Vegetarian Cuisine Expert | CulinaryQuests",meta_description:"Explore authentic Indian vegetarian recipes with Nisha Sinha, a seasoned culinary expert and food blogger. Discover her articles on CulinaryQuests for inspiration and tips."},{name:"Raj Patel",description:"Raj Patel is a professional chef and food stylist who brings a modern twist to traditional Indian recipes. With a culinary degree from Le Cordon Bleu and over 8 years of experience working in upscale restaurants, Raj shares his innovative recipes and cooking techniques on CulinaryQuests.",meta_title:"Raj Patel - Culinary Innovator & Chef | CulinaryQuests",meta_description:"Join Raj Patel on CulinaryQuests for innovative Indian recipes that blend tradition and modernity. Discover his expert tips for a creative culinary experience."},{name:"Anita Desai",description:"Anita Desai is a food writer and home cook known for her easy-to-follow recipes that emphasize the importance of home-cooked Indian meals. With her experience in food photography and storytelling, Anita's articles inspire readers to embrace the joy of cooking.",meta_title:"Anita Desai - Home Cook & Food Writer | CulinaryQuests",meta_description:"Dive into easy and delicious Indian recipes with Anita Desai, a passionate food writer and home cook. Her CulinaryQuests articles are perfect for home chefs of all levels."},{name:"Vikram Joshi",description:"Vikram Joshi is a nutritionist and chef dedicated to creating healthy Indian recipes without compromising on flavor. With over 5 years in the health and wellness industry, he passionately educates readers on nutritious cooking alternatives.",meta_title:"Vikram Joshi - Nutritionist & Healthy Cooking Expert | CulinaryQuests",meta_description:"Discover healthy Indian recipes with Vikram Joshi, a nutritionist and chef focused on nutritious cooking. Explore his articles on CulinaryQuests for delicious, health-conscious meals."},{name:"Priya Mehta",description:"Priya Mehta is a food blogger and culinary traveler who explores regional Indian cuisines. She shares her experiences and recipes inspired by her travels across India, enriching her readers' cooking repertoire.",meta_title:"Priya Mehta - Culinary Traveler & Food Blogger | CulinaryQuests",meta_description:"Join Priya Mehta on a culinary journey through India. Discover regional recipes and travel-inspired articles on CulinaryQuests for a taste of authentic Indian cooking."},{name:"Arjun Choudhury",description:"Arjun Choudhury is a chef and food consultant specializing in fusion cuisine. With a vibrant career in diverse culinary environments, he creates articles that combine flavors from different cultures with traditional Indian dishes.",meta_title:"Arjun Choudhury - Fusion Cuisine Expert & Chef | CulinaryQuests",meta_description:"Explore the world of fusion cuisine with Arjun Choudhury! His culinary insights and creative recipes on CulinaryQuests blend traditional Indian flavors with global influences."},{name:"Sana Kapoor",description:"Sana Kapoor is a passionate home chef and food enthusiast who enjoys experimenting with Indian desserts. With years of baking experience, she shares delightful recipes that highlight the sweetness of Indian traditions.",meta_title:"Sana Kapoor - Indian Dessert Specialist & Home Chef | CulinaryQuests",meta_description:"Satisfy your sweet tooth with Sana Kapoor's Indian dessert recipes. Discover her delightful articles on CulinaryQuests and experience the rich tradition of Indian sweets."},{name:"Aditi Sharma",description:"Aditi Sharma is a culinary educator with a focus on traditional Indian cooking methods. Her background in food science and teaching enables her to present complex recipes in understandable ways, empowering home cooks everywhere.",meta_title:"Aditi Sharma - Culinary Educator & Traditional Cooking Expert | CulinaryQuests",meta_description:"Learn traditional Indian cooking with Aditi Sharma, a culinary educator. Her insightful articles on CulinaryQuests provide tips and recipes for home cooks of all skill levels."},{name:"Karan Nair",description:"Karan Nair is a chef and restaurateur who specializes in street food from different Indian regions. Through his articles on CulinaryQuests, he brings the authentic taste and vibrant culture of Indian street food straight to your kitchen.",meta_title:"Karan Nair - Indian Street Food Specialist & Chef | CulinaryQuests",meta_description:"Experience the flavors of Indian street food with Karan Nair. Dive into his exciting recipes and culinary stories on CulinaryQuests for a true taste of India."},{name:"Ritika Sharma",description:"Ritika Sharma is a freelance food writer and cookbook author. With a love for food journalism, she shares her culinary adventures and recipes while exploring the intricate tapestry of Indian cuisine.",meta_title:"Ritika Sharma - Food Writer & Cookbook Author | CulinaryQuests",meta_description:"Explore the art of Indian cuisine with Ritika Sharma, a freelance food writer and cookbook author. Discover her culinary adventures and recipes on CulinaryQuests."},{name:"Chef Maria Gonzalez",description:"Chef Maria Gonzalez is a celebrated culinary expert from Spain, specializing in traditional Mediterranean recipes. With over 15 years of experience in both restaurant kitchens and food blogging, Maria has a passion for teaching others how to enjoy healthy and flavorful meals. Her dishes reflect her roots and highlight seasonal ingredients, bringing a taste of Spain to home kitchens worldwide.",meta_title:"Chef Maria Gonzalez - Mediterranean Culinary Expert",meta_description:"Explore the culinary journey of Chef Maria Gonzalez, a Spanish expert in Mediterranean recipes. Discover her unique cooking insights and delicious healthy dishes!"},{name:"James O’Connor",description:"James O'Connor, an Irish food writer and chef, has spent a decade exploring the intertwining cultures of cooking and writing. He has penned several cookbooks and is known for his focus on farm-to-table cooking. His articles often celebrate simple ingredients and rustic preparations, drawing inspiration from local farmers and artisanal producers.",meta_title:"James O'Connor - Irish Food Writer & Chef",meta_description:"Join James O'Connor on CulinaryQuests as he shares his passion for farm-to-table recipes and rustic cooking rooted in Irish tradition and local produce."},{name:"Aisha Khan",description:"Aisha Khan is a renowned Pakistani chef and culinary educator based in Karachi. With over 12 years of experience, Aisha focuses on traditional South Asian recipes, working tirelessly to keep cultural dishes alive. She also conducts workshops, inspiring others to explore the vibrant flavors of Pakistani cuisine.",meta_title:"Aisha Khan - South Asian Culinary Educator",meta_description:"Discover the rich flavors of South Asian cuisine with Aisha Khan on CulinaryQuests, where tradition meets culinary innovation through her exquisite recipes."},{name:"Tomi Kimura",description:"Tomi Kimura is a Japanese food stylist and chef known for her exquisite presentation styles and seasonal Japanese dishes. With a background in visual arts, Tomi combines her love for aesthetics and cooking to create captivating recipes. Her articles often focus on the beauty of food and its cultural significance.",meta_title:"Tomi Kimura - Japanese Food Stylist & Chef",meta_description:"Explore the art of Japanese cuisine with Tomi Kimura on CulinaryQuests, where culinary aesthetics meet cultural storytelling through beautiful recipes."},{name:"Sophia Rossi",description:"Sophia Rossi is an Italian culinary writer and chef based in Tuscany, with a focus on rustic Italian cooking and seasonal ingredients. Growing up in a family of chefs, she has a deep understanding of Italian traditions and the importance of fresh produce. Sophia's articles are filled with family stories, local history, and authentic recipes.",meta_title:"Sophia Rossi - Tuscan Culinary Writer & Chef",meta_description:"Join Sophia Rossi on CulinaryQuests for authentic Tuscan recipes and culinary stories, celebrating the heart of Italian cooking and family traditions."},{name:"Elena Voitko",description:"Elena Voitko is a Ukrainian chef and culinary journalist, bringing her rich heritage into the realm of modern recipes. With her extensive knowledge of Eastern European cuisine, Elena crafts articles that inspire home cooks to explore traditional dishes with a contemporary twist. Her work emphasizes the importance of seasonal ingredients.",meta_title:"Elena Voitko - Ukrainian Chef & Culinary Journalist",meta_description:"Experience the vibrant flavors of Eastern Europe with Elena Voitko on CulinaryQuests, blending tradition with modern culinary creativity in delightful recipes."},{name:"Liam Thompson",description:"Liam Thompson, a food scientist and chef from the United States, explores the science behind cooking. With a Ph.D. in food technology and years in professional kitchens, Liam combines his scientific background with culinary expertise, offering readers insight into why recipes work and how to innovate in the kitchen.",meta_title:"Liam Thompson - Food Scientist & Culinary Innovator",meta_description:"Unlock the secrets of cooking with Liam Thompson on CulinaryQuests, where food science meets creative recipes for culinary enthusiasts."},{name:"Fatima Zahra",description:"Fatima Zahra is a Moroccan food blogger and chef known for her aromatic and colorful dishes that highlight the rich culinary heritage of Morocco. With a focus on traditional spices and techniques, Fatima’s recipes bring the essence of Moroccan markets to home kitchens across the globe.",meta_title:"Fatima Zahra - Moroccan Chef & Food Blogger",meta_description:"Experience the richness of Moroccan cuisine with Fatima Zahra on CulinaryQuests, delivering vibrant recipes infused with tradition and culture."},{name:"Giovanni Ricci",description:"Giovanni Ricci is a pizza master and culinary instructor from Naples, Italy. With over 20 years in the industry, he is dedicated to perfecting the art of pizza-making. Giovanni shares his expertise via detailed articles and hands-on tutorials, inspiring others to create authentic Neapolitan pizza at home.",meta_title:"Giovanni Ricci - Neapolitan Pizza Master",meta_description:"Master the art of pizza-making with Giovanni Ricci on CulinaryQuests, where tradition meets technique for the ultimate Neapolitan pizza experience."},{name:"Gina Marie",description:"Gina Marie is a celebrated chef and culinary writer based in Italy. With over a decade of experience working in Michelin-starred kitchens, she brings authenticity and creativity to her recipes. Passionate about Italian cuisine, Gina shares traditional family recipes, along with modern twists that inspire home cooks worldwide.",meta_title:"Gina Marie - Italian Culinary Expert at CulinaryQuests",meta_description:"Explore the rich flavors of Italy with Gina Marie, a culinary expert sharing authentic recipes and innovative cooking tips at CulinaryQuests."},{name:"Raj Kapoor",description:"Raj Kapoor, hailing from New Delhi, India, is a food stylist and recipe developer. He specializes in Indian cuisine and has a knack for creating visually stunning dishes. A traveler at heart, Raj combines elements from different cultures to craft unique recipes that showcase traditional flavors in a modern context.",meta_title:"Raj Kapoor - Indian Cuisine Specialist at CulinaryQuests",meta_description:"Discover the vibrant world of Indian flavors with Raj Kapoor, a culinary artist and recipe developer here at CulinaryQuests."},{name:"Lina Xu",description:"Lina Xu is a food blogger and author from Shanghai, China, who focuses on both traditional and contemporary Chinese recipes. With her background in food science, Lina emphasizes healthy cooking while keeping her dishes accessible and delicious. Her unique take on seasonal ingredients inspires culinary creativity.",meta_title:"Lina Xu - Chinese Culinary Innovator at CulinaryQuests",meta_description:"Join Lina Xu at CulinaryQuests to explore a fusion of traditional and contemporary Chinese recipes crafted with love and science."},{name:"David Martinez",description:"David Martinez is a professional chef and passionate food writer from Mexico City. With years of experience in high-end restaurants, he is known for his bold flavors and artistic plating. David aims to bring the essence of Mexican gastronomy to everyday cooking with his simple yet impressive recipes.",meta_title:"David Martinez - Mexican Culinary Maestro at CulinaryQuests",meta_description:"Dive into the vibrant flavors of Mexico with David Martinez, your guide to authentic recipes and culinary inspiration at CulinaryQuests."},{name:"Fiona O'Reilly",description:"Fiona O'Reilly is a well-known food journalist and recipe developer from Dublin, Ireland. With a flair for storytelling through food, she focuses on rustic, hearty recipes that showcase seasonal, local ingredients. Fiona brings her experience from food festivals to CulinaryQuests, creating engaging narratives for each dish.",meta_title:"Fiona O'Reilly - Irish Culinary Storyteller at CulinaryQuests",meta_description:"Enjoy the rustic flavors of Ireland with Fiona O'Reilly, bringing local ingredients and heartfelt recipes to CulinaryQuests."},{name:"Yuki Tanaka",description:"Yuki Tanaka is a Japanese chef and food stylist known for her artistry in Japanese cuisine. Based in Tokyo, she blends traditional methods with innovative ideas to create visually stunning dishes. Yuki shares her passion for Japanese dishes, offering readers comprehensive guides and step-by-step recipes.",meta_title:"Yuki Tanaka - Japanese Culinary Artist at CulinaryQuests",meta_description:"Experience the beauty of Japanese cuisine with Yuki Tanaka, your guide to exquisite recipes and cooking techniques at CulinaryQuests."},{name:"Isabella Rivera",description:"Isabella Rivera is a professional chef and food writer from Buenos Aires, Argentina. Specializing in Latin American cuisine, she shares her passion through hearty, flavorful recipes inspired by her heritage. With a background in food science, Isabella promotes healthy eating while celebrating traditional cooking methods.",meta_title:"Isabella Rivera - Latin American Culinary Expert at CulinaryQuests",meta_description:"Explore the vibrant tastes of Latin America with Isabella Rivera at CulinaryQuests, where tradition meets health in every recipe."},{name:"Thomas Müller",description:"Thomas Müller, based in Berlin, Germany, is a culinary professional who specializes in contemporary European cuisine. With a passion for seasonal ingredients, Thomas creates sophisticated recipes that are perfect for home cooks. His background in gastronomy allows him to reinvent classic dishes with a modern twist.",meta_title:"Thomas Müller - European Culinary Innovator at CulinaryQuests",meta_description:"Discover modern European culinary delights with Thomas Müller, a culinary innovator sharing delightful recipes at CulinaryQuests."},{name:"Aisha Mohamed",description:"Aisha Mohamed is an emerging food writer from Nairobi, Kenya, specializing in East African cuisine. With a focus on traditional and fusion flavors, Aisha showcases the richness of her culture through easy-to-follow recipes that celebrate local ingredients and cooking techniques.",meta_title:"Aisha Mohamed - East African Culinary Advocate at CulinaryQuests",meta_description:"Step into the vibrant world of East African cuisine with Aisha Mohamed, sharing authentic recipes and cultural insights at CulinaryQuests."},{name:"Marcelo Pinto",description:"Marcelo Pinto is a Brazilian chef and culinary educator based in Rio de Janeiro. His love for street food and traditional Brazilian dishes reflects in his approachable recipe style. Marcelo aims to demystify Brazilian cooking and encourage readers to embrace the joy of preparing authentic, flavorful meals.",meta_title:"Marcelo Pinto - Brazilian Culinary Enthusiast at CulinaryQuests",meta_description:"Uncover the flavors of Brazil with Marcelo Pinto, a culinary educator dedicated to sharing accessible, authentic recipes at CulinaryQuests."}],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:#3e8009;--theme-color-8:#6ccb31;--theme-color-7:#a3e51b;--theme-color-6:#d3ea61;--theme-color-5:#d5eb83;--theme-color-3:#eaf8b4;--theme-color-2:#f1fdda;--color-bg-layout:#fff8e1;--color-bg-hover:#ffe0b2;--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";
@@ -0,0 +1,267 @@
1
+ export declare const dataStructure: {
2
+ quickMeals: {
3
+ title: string;
4
+ description: string;
5
+ slug: string;
6
+ children: {
7
+ onePotDishes: {
8
+ title: string;
9
+ description: string;
10
+ slug: string;
11
+ children: null;
12
+ };
13
+ mealPrepIdeas: {
14
+ title: string;
15
+ description: string;
16
+ slug: string;
17
+ children: null;
18
+ };
19
+ healthySnacks: {
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
+ globalCuisines: {
34
+ title: string;
35
+ description: string;
36
+ slug: string;
37
+ children: {
38
+ italianRecipes: {
39
+ title: string;
40
+ description: string;
41
+ slug: string;
42
+ children: null;
43
+ };
44
+ asianCuisine: {
45
+ title: string;
46
+ description: string;
47
+ slug: string;
48
+ children: null;
49
+ };
50
+ mexicanFlavors: {
51
+ title: string;
52
+ description: string;
53
+ slug: string;
54
+ children: null;
55
+ };
56
+ middleEasternDishes: {
57
+ title: string;
58
+ description: string;
59
+ slug: string;
60
+ children: null;
61
+ };
62
+ other: {
63
+ title: string;
64
+ description: string;
65
+ slug: string;
66
+ children: null;
67
+ };
68
+ };
69
+ };
70
+ dietaryOptions: {
71
+ title: string;
72
+ description: string;
73
+ slug: string;
74
+ children: {
75
+ veganRecipes: {
76
+ title: string;
77
+ description: string;
78
+ slug: string;
79
+ children: null;
80
+ };
81
+ glutenFreeMeals: {
82
+ title: string;
83
+ description: string;
84
+ slug: string;
85
+ children: null;
86
+ };
87
+ lowCarbDishes: {
88
+ title: string;
89
+ description: string;
90
+ slug: string;
91
+ children: null;
92
+ };
93
+ highProteinRecipes: {
94
+ title: string;
95
+ description: string;
96
+ slug: string;
97
+ children: null;
98
+ };
99
+ other: {
100
+ title: string;
101
+ description: string;
102
+ slug: string;
103
+ children: null;
104
+ };
105
+ };
106
+ };
107
+ cookingTechniques: {
108
+ title: string;
109
+ description: string;
110
+ slug: string;
111
+ children: {
112
+ bakingBasics: {
113
+ title: string;
114
+ description: string;
115
+ slug: string;
116
+ children: null;
117
+ };
118
+ grillingTips: {
119
+ title: string;
120
+ description: string;
121
+ slug: string;
122
+ children: null;
123
+ };
124
+ sousVideCooking: {
125
+ title: string;
126
+ description: string;
127
+ slug: string;
128
+ children: null;
129
+ };
130
+ fermentationMethods: {
131
+ title: string;
132
+ description: string;
133
+ slug: string;
134
+ children: null;
135
+ };
136
+ other: {
137
+ title: string;
138
+ description: string;
139
+ slug: string;
140
+ children: null;
141
+ };
142
+ };
143
+ };
144
+ ingredientSpotlights: {
145
+ title: string;
146
+ description: string;
147
+ slug: string;
148
+ children: {
149
+ seasonalProduce: {
150
+ title: string;
151
+ description: string;
152
+ slug: string;
153
+ children: null;
154
+ };
155
+ superfoods: {
156
+ title: string;
157
+ description: string;
158
+ slug: string;
159
+ children: null;
160
+ };
161
+ herbAndSpiceUsage: {
162
+ title: string;
163
+ description: string;
164
+ slug: string;
165
+ children: null;
166
+ };
167
+ proteinsAndMeats: {
168
+ title: string;
169
+ description: string;
170
+ slug: string;
171
+ children: null;
172
+ };
173
+ other: {
174
+ title: string;
175
+ description: string;
176
+ slug: string;
177
+ children: null;
178
+ };
179
+ };
180
+ };
181
+ familyFriendlyRecipes: {
182
+ title: string;
183
+ description: string;
184
+ slug: string;
185
+ children: {
186
+ kidApprovedDinners: {
187
+ title: string;
188
+ description: string;
189
+ slug: string;
190
+ children: null;
191
+ };
192
+ easyLunchBoxes: {
193
+ title: string;
194
+ description: string;
195
+ slug: string;
196
+ children: null;
197
+ };
198
+ creativeHealthySnacks: {
199
+ title: string;
200
+ description: string;
201
+ slug: string;
202
+ children: null;
203
+ };
204
+ familyBreakfastIdeas: {
205
+ title: string;
206
+ description: string;
207
+ slug: string;
208
+ children: null;
209
+ };
210
+ other: {
211
+ title: string;
212
+ description: string;
213
+ slug: string;
214
+ children: null;
215
+ };
216
+ };
217
+ };
218
+ eventSpecials: {
219
+ title: string;
220
+ description: string;
221
+ slug: string;
222
+ children: {
223
+ holidayFeasts: {
224
+ title: string;
225
+ description: string;
226
+ slug: string;
227
+ children: null;
228
+ };
229
+ partyAppetizers: {
230
+ title: string;
231
+ description: string;
232
+ slug: string;
233
+ children: null;
234
+ };
235
+ specialOccasionCakes: {
236
+ title: string;
237
+ description: string;
238
+ slug: string;
239
+ children: null;
240
+ };
241
+ potluckFavorites: {
242
+ title: string;
243
+ description: string;
244
+ slug: string;
245
+ children: null;
246
+ };
247
+ other: {
248
+ title: string;
249
+ description: string;
250
+ slug: string;
251
+ children: null;
252
+ };
253
+ };
254
+ };
255
+ };
256
+ export declare const authors: Record<string, string>;
257
+ export declare const authorsNames: string[];
258
+ export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83C\uDF7D\uFE0F\uD83D\uDC69\u200D\uD83C\uDF73\uD83D\uDCDA\uD83C\uDF1F";
259
+ export declare const categories: ("ingredientSpotlights" | "cookingTechniques" | "globalCuisines" | "quickMeals" | "familyFriendlyRecipes" | "dietaryOptions" | "eventSpecials")[];
260
+ export declare const subcategories: string[];
261
+ export declare const subsubcategories: string[];
262
+ export type Category = keyof typeof dataStructure;
263
+ export type CategoryNode = (typeof dataStructure)[Category];
264
+ export type SubcategoryKeyByCategory<T extends Category> = (typeof dataStructure)[T]['children'];
265
+ export declare const startDate = "2024-09-19T00:00:00Z";
266
+ export declare const devBucketName = "idn-feastfanatics-dev";
267
+ export declare const prodBucketName = "idn-feastfanatics";
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./seo.js");const i={quickMeals:{title:"Quick Meals: Delicious Recipes to Make in a Snap! 🍽️",description:"Explore quick meals with easy recipes, cooking tips, and creative ideas that suit your busy lifestyle! Perfect for speedy culinary adventures. 🔥",slug:"quick-meals",children:{onePotDishes:{title:"One-Pot Dishes: Minimal Cleanup, Maximum Flavor! 🍲",description:"Enjoy savory one-pot dishes that simplify cooking and cleanup while delivering delightful meals for you and your family! 🥘👌",slug:"one-pot-dishes",children:null},mealPrepIdeas:{title:"Meal Prep Ideas: Simplify Your Week with Flavor! 🥗",description:"Uncover meal prep ideas that ensure flavorful and nutritious meals throughout the week, freeing you from daily cooking stress! 🔪🍱",slug:"meal-prep-ideas",children:null},healthySnacks:{title:"Healthy Snacks: Wholesome Bites for Guilt-Free Indulgence! 🍎",description:"Explore healthy snacks that satisfy cravings while keeping you on track with your wellness goals. Quick and easy to prepare! 🌱🥙",slug:"healthy-snacks",children:null},other:{title:"Other Quick Meal Ideas for Every Craving! 🍽️",description:"Find a diverse collection of other quick meal ideas to satisfy all your culinary desires, from savory to sweet! 🍰🌍",slug:"other-quick-meal-ideas",children:null}}},globalCuisines:{title:"Explore Global Cuisines | Flavorful Recipes from Around the World 🍽️",description:"Dive into a world of flavors with our extensive collection of global recipes and culinary tips. Discover your favorite dishes today! 🌍",slug:"global-cuisines",children:{italianRecipes:{title:"Authentic Italian Recipes | Taste the Heart of Italy 🍝",description:"Savor the rich flavors of Italy with our authentic Italian recipes. From pasta to pizza, explore your culinary passion with us! 🇮🇹",slug:"italian-recipes",children:null},asianCuisine:{title:"Delicious Asian Cuisine | Explore Exotic Flavors 🍜",description:"Embark on a culinary journey through Asia. Discover delicious recipes featuring vibrant flavors and unique ingredients today! 🇨🇳🇯🇵",slug:"asian-cuisine",children:null},mexicanFlavors:{title:"Bold Mexican Flavors | Spice Up Your Cooking 🌮",description:"Add zest to your meals with our collection of bold Mexican recipes. Enjoy delicious dishes that bring the fiesta to your table! 🇲🇽",slug:"mexican-flavors",children:null},middleEasternDishes:{title:"Exquisite Middle Eastern Dishes | Taste the Rich Heritage 🥙",description:"Explore the exquisite and rich flavors of Middle Eastern cuisine with our delicious recipes that celebrate tradition and taste! 🌿",slug:"middle-eastern-dishes",children:null},other:{title:"Discover Global Cuisines | A World of Recipes Awaits 🌐",description:"Explore a variety of other global cuisines beyond the mainstream. Each recipe is a culinary adventure waiting for you! 🌏",slug:"other-global-cuisines",children:null}}},dietaryOptions:{title:"Healthy Dietary Options - Delicious Recipes for Everyone 🌱",description:"Explore a variety of healthy dietary options with flavorful recipes, cooking tips, and nutritional insights designed for every food lover! 🍽️",slug:"healthy-dietary-options",children:{veganRecipes:{title:"Plant-Based Vegan Recipes for Everyone 🌿",description:"Discover a collection of delicious vegan recipes that are easy to prepare, packed with flavor, and perfect for any meal of the day! 🥗",slug:"vegan-recipes",children:null},glutenFreeMeals:{title:"Tasty Gluten-Free Meals for Every Occasion 🍚",description:"Find satisfying gluten-free meals that everyone will enjoy! Dive into recipes bursting with flavor and no gluten in sight. 🌈",slug:"gluten-free-meals",children:null},lowCarbDishes:{title:"Flavorful Low-Carb Dishes You'll Love 🥩",description:"Savor mouthwatering low-carb dishes that keep your meals interesting while staying health-conscious! Perfect for anyone seeking balance. 🌟",slug:"low-carb-dishes",children:null},highProteinRecipes:{title:"High-Protein Recipes for a Healthy Lifestyle 💪",description:"Boost your meals with our high-protein recipes designed to fuel your day, ensuring you enjoy tasty and nutritious options! 🍳",slug:"high-protein-recipes",children:null},other:{title:"Diverse Other Dietary Options to Explore 🍽️",description:"Venture into a variety of other dietary options with unique recipes catering to different tastes and preferences. Explore new flavors! 🌍",slug:"other-dietary-options",children:null}}},cookingTechniques:{title:"Master Essential Cooking Techniques for Culinary Success",description:"Explore the art of cooking with essential techniques from baking to grilling! 🥘 Elevate your culinary skills and enhance your recipes today.",slug:"master-cooking-techniques",children:{bakingBasics:{title:"Baking Basics: Your Guide to Perfectly Crafted Breads and Pastries",description:"Learn baking essentials to create delicious breads and pastries! 🍞 Unleash your inner baker with our expert tips and easy recipes.",slug:"baking-basics",children:null},grillingTips:{title:"Grilling Tips: Savor the Flavor with Perfectly Grilled Meals",description:"Discover grilling tips for mouth-watering meals! 🔥 Master the grill with techniques and recipes that will impress everyone.",slug:"grilling-tips",children:null},sousVideCooking:{title:"Sous Vide Cooking: Elevate Your Cooking Game with Precision",description:"Learn sous vide cooking for restaurant-quality meals at home! 🥩 Achieve perfect results with this precise cooking technique.",slug:"sous-vide-cooking",children:null},fermentationMethods:{title:"Fermentation Methods: Discover the Magic of Fermented Foods",description:"Explore fermentation methods to create healthy, flavorful foods! 🥒 Dive into the world of probiotics and enhance your dishes.",slug:"fermentation-methods",children:null},other:{title:"Other Cooking Techniques: Explore Unique Culinary Methods",description:"Discover a variety of other cooking techniques to expand your culinary skills! 🍳 Enhance your meals with innovative methods.",slug:"other-cooking-techniques",children:null}}},ingredientSpotlights:{title:"Explore Seasonal Produce, Superfoods, and More!",description:"Dive into ingredient spotlights at FeastFanatics! Discover seasonal produce, superfoods, and cooking tips to elevate your culinary game. 🥦🍅",slug:"ingredient-spotlights",children:{seasonalProduce:{title:"Seasonal Produce: Fresh Ingredients for Every Meal 🌽",description:"Uncover the benefits of seasonal produce with our curated recipes. Enjoy fresh, flavorful ingredients that enhance your culinary creations! 🥕",slug:"seasonal-produce",children:null},superfoods:{title:"Superfoods: Nutrient-Rich Ingredients for Healthy Cooking 🍓",description:"Discover superfoods that enhance health and flavor in your cooking. Include these powerhouse ingredients in delicious recipes today! 🫐",slug:"superfoods",children:null},herbAndSpiceUsage:{title:"Herb and Spice Usage: Elevate Your Dishes with Flavor 🌿",description:"Learn how to use herbs and spices effectively in cooking. Transform ordinary meals into extraordinary dishes with our expert tips! 🌶️",slug:"herb-and-spice-usage",children:null},proteinsAndMeats:{title:"Proteins and Meats: Essential Ingredients for Meal Planning 🍗",description:"Explore the variety of proteins and meats for every diet. Find recipes that will help you create hearty, satisfying meals with ease! 🥩",slug:"proteins-and-meats",children:null},other:{title:"Other Ingredients: Discover Unique Culinary Gems 🌟",description:"Dive into unique ingredients that add flavor and inspiration to your cooking. Explore our articles for innovative culinary ideas! 🍄",slug:"other-ingredients",children:null}}},familyFriendlyRecipes:{title:"Delicious Family-Friendly Recipes for All Ages 🍽️",description:"Explore a variety of family-friendly recipes that cater to all tastes! From quick dinners to healthy snacks, discover culinary delights for every occasion! 👨‍👩‍👧‍👦",slug:"family-friendly-recipes",children:{kidApprovedDinners:{title:"Kid-Approved Dinners: Meals They'll Love! 🍕",description:"Find the perfect kid-approved dinners that are fun, tasty, and nutritious! These meals are sure to be a hit with your little ones! 🎉",slug:"kid-approved-dinners",children:null},easyLunchBoxes:{title:"Easy Lunch Boxes: Quick & Tasty Ideas! 🥗",description:"Discover easy lunch box recipes that are delicious and practical for busy families. Make lunchtime a breeze with these creative ideas! 🥙",slug:"easy-lunch-boxes",children:null},creativeHealthySnacks:{title:"Creative Healthy Snacks for Little Snackers 🍏",description:"Explore creative healthy snacks that keep kids nourished and satisfied. Perfect for after-school munching or playdates! 🍌",slug:"creative-healthy-snacks",children:null},familyBreakfastIdeas:{title:"Family Breakfast Ideas: Start Your Day Right! 🍳",description:"Kick start your family's day with nutritious breakfast ideas that everyone will enjoy. Easy to make and oh-so-delicious! 🌞",slug:"family-breakfast-ideas",children:null},other:{title:"Other Family-Friendly Recipes You’ll Love! 🌟",description:"Explore various other family-friendly recipes that cater to all occasions and tastes. From appetizers to desserts, there's something for everyone! 🍰",slug:"other-family-friendly-recipes",children:null}}},eventSpecials:{title:"Delicious Event Specials for Every Celebration 🎉 | FeastFanatics",description:"Explore a curated selection of event specials with delicious recipes for holidays, parties, and special occasions. Join us for culinary inspiration! 🍽️",slug:"event-specials",children:{holidayFeasts:{title:"Celebrate with Holiday Feasts: Festive Recipes for All 🦃",description:"Discover an array of delightful holiday feast recipes perfect for any celebration! Transform your gatherings with these culinary treats. 🎊",slug:"holiday-feasts",children:null},partyAppetizers:{title:"Party Appetizers: Tasty Bites to Wow Your Guests 🎉",description:"Impress your guests with quick and delicious party appetizers! Perfect for gatherings, these bites will elevate your celebrations. 🍢",slug:"party-appetizers",children:null},specialOccasionCakes:{title:"Special Occasion Cakes: A Slice of Heaven for Celebrations 🎂",description:"Explore our exquisite selection of special occasion cake recipes! Perfect for birthdays, anniversaries, and more sweet celebrations. 🍰",slug:"special-occasion-cakes",children:null},potluckFavorites:{title:"Potluck Favorites: Delicious Dishes Everyone Will Love 🍲",description:"Find the best potluck favorites to bring to your next gathering! These crowd-pleasers are sure to make your meal memorable. 🎉",slug:"potluck-favorites",children:null},other:{title:"Other Event Specials: Unique Recipes for Every Occasion 🌟",description:"Explore unique event special recipes that don’t fit the norm. Perfect for those seeking something different for their celebrations! 🎈",slug:"other-event-specials",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="🍽️👩‍🍳📚🌟",o=Object.keys(i),a=[],n=[];for(const e of o){const t=i[e];if(null==t?void 0:t.children){a.push(...Object.keys(t.children));for(const e of a){const i=t.children[e];(null==i?void 0:i.children)&&n.push(...Object.keys(i.children))}}}const l="2024-09-19T00:00:00Z",c="feastfanatics",u=`idn-${c}-dev`,d=`idn-${c}`;exports.DEFAULT_DESCRIPTION_EMOJIS=r,exports.authors=t,exports.authorsNames=s,exports.categories=o,exports.dataStructure=i,exports.devBucketName=u,exports.prodBucketName=d,exports.startDate=l,exports.subcategories=a,exports.subsubcategories=n;
@@ -0,0 +1,28 @@
1
+ export declare enum FiltersNames {
2
+ CulinaryEscapes = "Culinary Escapes",
3
+ MealTypeMagic = "Meal Type Magic",
4
+ DietaryAdventures = "Dietary Adventures",
5
+ PrepTimePreferences = "Prep Time Preferences",
6
+ CookingTechniques = "Cooking Techniques"
7
+ }
8
+ type CulinaryEscapesValues = 'Italian Delights' | 'Asian Fusion' | 'Mexican Marvels' | 'Mediterranean Magic' | 'Classic American';
9
+ type MealTypeMagicValues = 'Quick Weeknight Dinners' | 'Hearty Weekend Feasts' | 'Light and Healthy Lunches' | 'Dessert Indulgences';
10
+ type DietaryAdventuresValues = 'Vegan Wonders' | 'Gluten-Free Goodies' | 'Low-Carb Creations' | 'Paleo Pleasures';
11
+ type PrepTimePreferencesValues = 'Under 30 Minutes' | '30 to 60 Minutes' | '1 Hour or More' | 'Make-Ahead Meals';
12
+ type CookingTechniquesValues = 'Grilling Greats' | 'Baking Basics' | 'One-Pan Recipes' | 'Slow Cooker Specials';
13
+ export type ArticleFilters = {
14
+ [FiltersNames.CulinaryEscapes]: CulinaryEscapesValues[];
15
+ [FiltersNames.MealTypeMagic]: MealTypeMagicValues[];
16
+ [FiltersNames.DietaryAdventures]: DietaryAdventuresValues[];
17
+ [FiltersNames.PrepTimePreferences]: PrepTimePreferencesValues[];
18
+ [FiltersNames.CookingTechniques]: CookingTechniquesValues[];
19
+ };
20
+ export declare const culinaryEscapesValues: CulinaryEscapesValues[];
21
+ export declare const mealTypeMagicValues: MealTypeMagicValues[];
22
+ export declare const dietaryAdventuresValues: DietaryAdventuresValues[];
23
+ export declare const prepTimePreferencesValues: PrepTimePreferencesValues[];
24
+ export declare const cookingTechniquesValues: CookingTechniquesValues[];
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={})).CulinaryEscapes="Culinary Escapes",e.MealTypeMagic="Meal Type Magic",e.DietaryAdventures="Dietary Adventures",e.PrepTimePreferences="Prep Time Preferences",e.CookingTechniques="Cooking Techniques";const s=["Italian Delights","Asian Fusion","Mexican Marvels","Mediterranean Magic","Classic American"],r=["Quick Weeknight Dinners","Hearty Weekend Feasts","Light and Healthy Lunches","Dessert Indulgences"],i=["Vegan Wonders","Gluten-Free Goodies","Low-Carb Creations","Paleo Pleasures"],a=["Under 30 Minutes","30 to 60 Minutes","1 Hour or More","Make-Ahead Meals"],t=["Grilling Greats","Baking Basics","One-Pan Recipes","Slow Cooker Specials"],n={[exports.FiltersNames.CulinaryEscapes]:[],[exports.FiltersNames.MealTypeMagic]:[],[exports.FiltersNames.DietaryAdventures]:[],[exports.FiltersNames.PrepTimePreferences]:[],[exports.FiltersNames.CookingTechniques]:[]},l={[exports.FiltersNames.CulinaryEscapes]:s,[exports.FiltersNames.MealTypeMagic]:r,[exports.FiltersNames.DietaryAdventures]:i,[exports.FiltersNames.PrepTimePreferences]:a,[exports.FiltersNames.CookingTechniques]:t},o=()=>JSON.stringify(l,null,2);exports.cookingTechniquesValues=t,exports.culinaryEscapesValues=s,exports.dietaryAdventuresValues=i,exports.fullFilters=l,exports.getFiltersTypesJSON=o,exports.initialFilters=n,exports.mealTypeMagicValues=r,exports.prepTimePreferencesValues=a;
@@ -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.cookingTechniquesValues=t.cookingTechniquesValues,exports.culinaryEscapesValues=t.culinaryEscapesValues,exports.dietaryAdventuresValues=t.dietaryAdventuresValues,exports.fullFilters=t.fullFilters,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.initialFilters=t.initialFilters,exports.mealTypeMagicValues=t.mealTypeMagicValues,exports.prepTimePreferencesValues=t.prepTimePreferencesValues,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: FeastFanatics is an infotainment portal dedicated to the culinary arts, offering an extensive collection of recipes, cooking tips, and food-related content that caters to food lovers and aspiring chefs alike.\n - Detailed description: FeastFanatics serves as a vibrant hub for culinary enthusiasts seeking inspiration in the kitchen. With a wide array of recipes ranging from quick weeknight dinners to elaborate gourmet dishes, the portal encourages users to explore their culinary creativity. Each recipe is crafted with detailed instructions, accompanying images, and nutritional information to ensure a comprehensive cooking experience. Beyond recipes, FeastFanatics also offers insightful articles on food trends, ingredient spotlights, and cooking techniques. The user-friendly layout facilitates easy navigation, allowing visitors to seamlessly browse by categories such as cuisine type, dietary restrictions, or preparation time. The community aspect of FeastFanatics allows users to share their culinary adventures and tips, fostering an engaging environment where food lovers can connect and inspire one another.\n - Target audience: FeastFanatics targets a diverse audience of home cooks, food enthusiasts, and culinary learners of all skill levels. This includes busy professionals seeking quick and healthy meal options, families looking for kid-friendly recipes, and foodies eager to expand their cooking repertoire. Additionally, it appeals to individuals interested in exploring various global cuisines, as well as those with specific dietary needs such as vegan, gluten-free, or low-carb diets.\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 - Brief Summary of the Recipe\n - Key Ingredients and Tools Needed\n\n## Step-by-Step Instructions\n - Detailed Cooking Steps\n - Tips for Successful Execution\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: FeastFanatics is an infotainment portal dedicated to the culinary arts, offering an extensive collection of recipes, cooking tips, and food-related content that caters to food lovers and aspiring chefs alike.\n - Detailed description: FeastFanatics serves as a vibrant hub for culinary enthusiasts seeking inspiration in the kitchen. With a wide array of recipes ranging from quick weeknight dinners to elaborate gourmet dishes, the portal encourages users to explore their culinary creativity. Each recipe is crafted with detailed instructions, accompanying images, and nutritional information to ensure a comprehensive cooking experience. Beyond recipes, FeastFanatics also offers insightful articles on food trends, ingredient spotlights, and cooking techniques. The user-friendly layout facilitates easy navigation, allowing visitors to seamlessly browse by categories such as cuisine type, dietary restrictions, or preparation time. The community aspect of FeastFanatics allows users to share their culinary adventures and tips, fostering an engaging environment where food lovers can connect and inspire one another.\n - Target audience: FeastFanatics targets a diverse audience of home cooks, food enthusiasts, and culinary learners of all skill levels. This includes busy professionals seeking quick and healthy meal options, families looking for kid-friendly recipes, and foodies eager to expand their cooking repertoire. Additionally, it appeals to individuals interested in exploring various global cuisines, as well as those with specific dietary needs such as vegan, gluten-free, or low-carb diets.\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 - Brief Summary of the Recipe\n - Key Ingredients and Tools Needed\n\n## Step-by-Step Instructions\n - Detailed Cooking Steps\n - Tips for Successful Execution\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",a="synthesizing the information presented throughout",o="food lovers of all ages",s="any numbers, image, slug, step, seo, hand / hands, men, women, human, people, chief, preparing, process, cooking, mixing, serving, tasting, rolling",r=`That is TREMENDOUS important - if category doesn't match - return empty array for that category - []. For example if you don't find any match for $FILTERNAME, return for that category$FILTERNAME: []\nResponse in valid json, adhering strictly to json interface below, include every field present in it, but include values in array only suitable for article, all array values are optional!\n${require("../filters.js").getFiltersTypesJSON()}`;exports.END_STEP=a,exports.FILTERS_INFO=r,exports.IMAGES_PROHIBITED_WORDS=s,exports.START_STEP=n,exports.TARGET_AUDIENCE=o,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:"Meet Our Culinary Creators | FeastFanatics",description:"Explore the talented chefs and food enthusiasts behind your favorite recipes! 🍽️✨ Discover their stories and get inspired to create your own culinary masterpieces!"},[exports.PageNames.Home]:{title:"Delicious Recipes & Culinary Tips | FeastFanatics",description:"Welcome to FeastFanatics! 🍳🥗 Dive into a world of tantalizing recipes, cooking tips, and food inspiration. Join us on a flavorful journey!"},[exports.PageNames.NotFound]:{title:"Page Not Found | FeastFanatics",description:"Oops! 😩 The page you are looking for doesn't exist. But don't worry, head back to our delicious recipes or explore new culinary ideas!"},[exports.PageNames.AboutUs]:{title:"About FeastFanatics | Culinary Passion Unleashed",description:"Discover the heart and soul of FeastFanatics! ❤️ Our mission is to inspire your culinary adventures with recipes and tips you'll love. Join our foodie community!"},[exports.PageNames.PrivacyPolicy]:{title:"Privacy Policy | FeastFanatics",description:"Your privacy matters! 🔒 Read our Privacy Policy to understand how we protect your information while you explore delicious recipes at FeastFanatics."},[exports.PageNames.Terms]:{title:"Terms and Conditions | FeastFanatics",description:"Stay informed! 📜 Check out our Terms and Conditions for using FeastFanatics. We value transparency and want you to enjoy a safe culinary journey."},[exports.PageNames.Sitemap]:{title:"Explore Our Sitemap | FeastFanatics",description:"Navigate with ease! 🗺️ Our Sitemap helps you discover all our delicious recipes and culinary content. Let’s make cooking easier together!"}},a=[{name:"Sanjeev Kapoor",description:"Sanjeev Kapoor is a renowned Indian chef, television personality, and author with over 30 years of experience in Indian cuisine. He has hosted numerous cooking shows and written several best-selling cookbooks, making him a household name in India and beyond.",meta_title:"Sanjeev Kapoor - Renowned Indian Chef & Culinary Expert",meta_description:"Explore the culinary world with Sanjeev Kapoor, a celebrated Indian chef known for his exquisite recipes and engaging cooking shows. Discover tips and traditional Indian dishes at FeastFanatics."},{name:"Nisha Madhulika",description:"Nisha Madhulika is an esteemed food blogger and YouTube personality specializing in vegetarian Indian recipes. Through her engaging videos and blogs, she shares authentic recipes that resonate with millions of home cooks.",meta_title:"Nisha Madhulika - Indian Vegetarian Recipes Expert",meta_description:"Join Nisha Madhulika on FeastFanatics for authentic vegetarian Indian recipes and culinary tips. A trailblazer in food blogging, her approachable style makes cooking easy and enjoyable."},{name:"Vikas Khanna",description:"Vikas Khanna is an acclaimed chef, restaurateur, and author with multi-Michelin star recognition. His global culinary journey is complemented by his work in social causes, making him a revered figure in the culinary world.",meta_title:"Vikas Khanna - Multi-Michelin Star Chef & Philanthropist",meta_description:"Discover the culinary excellence of Vikas Khanna at FeastFanatics, a multi-Michelin star chef known for his gourmet recipes and culinary innovation. Join him as he shares his passion for food."},{name:"Tarla Dalal",description:"The late Tarla Dalal was a culinary icon in India, famous for her vegetarian recipes and cookbooks. With a career spanning over four decades, she inspired countless home cooks with her easy-to-follow recipes.",meta_title:"Tarla Dalal - Legendary Indian Vegetarian Chef",meta_description:"Celebrate the culinary legacy of Tarla Dalal at FeastFanatics, where you can explore her easy-to-follow vegetarian recipes and gain insights from one of India's most beloved chefs."},{name:"Manjula Jain",description:"Manjula Jain is a dedicated food blogger and YouTube chef known for her Indian vegetarian recipes. Her passion for cooking shines through her engaging content, making traditional recipes accessible to everyone.",meta_title:"Manjula Jain - Expert in Indian Vegetarian Cooking",meta_description:"Join Manjula Jain at FeastFanatics for delicious and authentic Indian vegetarian recipes. Her practical approach ensures that home cooks enjoy the art of cooking with ease."},{name:"Ritu Dalmia",description:"Ritu Dalmia is a celebrated chef and restaurateur known for her modern Italian and Indian fusion cuisine. She has received several accolades for her innovative cooking and is a voice for women in culinary arts.",meta_title:"Ritu Dalmia - Innovator in Indian and Italian Cuisine",meta_description:"Explore Ritu Dalmia's culinary creations at FeastFanatics, where she merges Indian and Italian flavors into innovative dishes. Taste the fusion of tradition and modernity in cooking."},{name:"Kunal Kapur",description:"Kunal Kapur is a well-respected chef and television presenter, known for his creative take on Indian cuisine. With numerous awards in his kit, he shares recipes that inspire both home cooks and aspiring chefs.",meta_title:"Kunal Kapur - Celebrated Indian Chef & Culinary Showman",meta_description:"Join Kunal Kapur at FeastFanatics and dive into the world of innovative Indian recipes. His culinary adventures will inspire you to explore the rich flavors and traditions of India."},{name:"Julie Sahni",description:"Julie Sahni is a pioneer of Indian cooking in the West. A renowned chef and author, she has published several books on Indian cuisine and conducts cooking classes, bridging cultures through food.",meta_title:"Julie Sahni - Pioneer of Indian Cooking in the West",meta_description:"Explore Indian culinary traditions with Julie Sahni at FeastFanatics, where she brings the flavors of India to the world through her celebrated recipes and cooking lessons."},{name:"Ajay Chopra",description:"Ajay Chopra is a talented chef, known for his innovative culinary techniques and expertise in modern Indian cuisine. With numerous accolades to his name, he encourages creativity in cooking through his recipes.",meta_title:"Ajay Chopra - Modern Indian Cuisine Innovator",meta_description:"Discover modern Indian cuisine with Ajay Chopra at FeastFanatics. His unique recipes and culinary insights will elevate your cooking experience to new heights."},{name:"Nandita Godbole",description:"Nandita Godbole is a food blogger and author passionate about Indian sweets and traditional recipes. Her innovative twists on classic dishes have made her a favorite among dessert lovers.",meta_title:"Nandita Godbole - Expert in Indian Sweets & Desserts",meta_description:"Satisfy your sweet tooth with Nandita Godbole's delightful Indian dessert recipes at FeastFanatics. Discover her unique takes on traditional sweets that celebrate Indian flavors."},{name:"Nisha Patel",description:"Nisha Patel is a Mumbai-born food writer and culinary expert with over 10 years of experience in the culinary world. After graduating from the Culinary Institute of America, she spent years exploring the diverse tastes of Indian cuisine and creating innovative recipes that blend tradition with modern flair. Nisha is passionate about sharing her love for spices and wholesome cooking through her articles at FeastFanatics.",meta_title:"Nisha Patel - Indian Culinary Expert | FeastFanatics",meta_description:"Discover delicious and innovative Indian recipes from Nisha Patel, an experienced food writer and culinary expert, exclusively at FeastFanatics."},{name:"Rohan Sharma",description:"Rohan Sharma is an acclaimed food blogger and chef from Delhi, known for his charming writing style and creativity in the kitchen. With a background in hotel management and years spent working alongside top chefs, Rohan has mastered the art of Indian cooking. He welcomes readers to FeastFanatics with easy-to-follow recipes and helpful cooking tips that elevate everyday meals.",meta_title:"Rohan Sharma - Award-winning Food Blogger | FeastFanatics",meta_description:"Explore delightful Indian recipes and culinary tips from Rohan Sharma, an award-winning food blogger, here at FeastFanatics."},{name:"Anjali Menon",description:"Anjali Menon, hailing from Kerala, is a passionate food enthusiast and writer who specializes in healthy Indian recipes. Her journey started after realizing the importance of mindful eating. With certifications in nutrition and culinary arts, Anjali focuses on creating dishes that are both nutritious and delicious. She shares her innovative recipes and healthy cooking advice at FeastFanatics.",meta_title:"Anjali Menon - Healthy Indian Cuisine Writer | FeastFanatics",meta_description:"Join Anjali Menon in her exploration of healthy Indian recipes that nourish the body and delight the senses, exclusively on FeastFanatics."},{name:"Vikram Sinha",description:"Vikram Sinha is a renowned Indian chef and cookbook author known for his skills in traditional and modern Indian cooking. Born in Kolkata, he has spent over 15 years in the culinary industry, working in prestigious restaurants across India and abroad. Vikram’s articles at FeastFanatics reflect his passion for quality ingredients and connecting with cultural roots through food.",meta_title:"Vikram Sinha - Renowned Indian Chef | FeastFanatics",meta_description:"Discover the secrets of traditional and modern Indian cooking with Vikram Sinha, a renowned Indian chef, at FeastFanatics."},{name:"Priya Kapoor",description:"Priya Kapoor is a Bangalore-based food stylist and recipe developer with a background in visual arts and culinary skills. Her unique approach to presenting food inspired her to become a culinary writer, allowing her to share creative Indian recipes through a visual medium. At FeastFanatics, Priya offers aesthetically pleasing dishes that are easy to recreate at home.",meta_title:"Priya Kapoor - Food Stylist and Culinary Writer | FeastFanatics",meta_description:"Delight in the art of food styling and discover creative Indian recipes with Priya Kapoor, exclusively on FeastFanatics."},{name:"Deepak Rao",description:"Deepak Rao is a gastronomist and culinary historian from Hyderabad who is passionate about uncovering the rich tapestry of Indian food heritage. With a degree in food science and years of travel experience, he brings a wealth of knowledge to his articles at FeastFanatics, exploring the origins and evolution of popular Indian dishes along with innovative recipes.",meta_title:"Deepak Rao - Culinary Historian and Writer | FeastFanatics",meta_description:"Explore the rich history and innovative recipes of Indian cuisine with Deepak Rao, a culinary historian, featured on FeastFanatics."},{name:"Sita Bhavna",description:"Sita Bhavna is a passionate home cook and food writer from Chennai, specializing in traditional family recipes passed down through generations. With a focus on authentic flavors and culinary techniques, Sita shares her home-cooked meals through her articles on FeastFanatics, inviting readers to experience the joys of home cooking.",meta_title:"Sita Bhavna - Traditional Indian Recipe Writer | FeastFanatics",meta_description:"Experience authentic Indian home-cooked recipes with Sita Bhavna, a passionate food writer, exclusively on FeastFanatics."},{name:"Arvind Desai",description:"Arvind Desai is a food innovator and chef from Pune, known for his modern twists on classic Indian dishes. After studying culinary arts in France, he has merged global cooking techniques with Indian flavors. At FeastFanatics, Arvind offers fresh and exciting recipes that cater to the modern palate while honoring traditional roots.",meta_title:"Arvind Desai - Innovative Indian Chef | FeastFanatics",meta_description:"Discover modern twists on Indian cuisine with Arvind Desai, an innovative chef, exclusively on FeastFanatics."},{name:"Meena Kapoor",description:"Meena Kapoor is a culinary artist and food photographer based in Ahmedabad, who specializes in vegetarian Indian recipes. With an eye for aesthetics and a deep love for Indian flavors, Meena combines her culinary knowledge and photography skills to create mouth-watering food content at FeastFanatics, showcasing the beauty of vegetarian cuisine.",meta_title:"Meena Kapoor - Vegetarian Indian Recipe Writer | FeastFanatics",meta_description:"Explore the beauty and flavors of vegetarian Indian cuisine with Meena Kapoor, a culinary artist and food photographer at FeastFanatics."},{name:"Rahul Verma",description:"Rahul Verma is a food critic and influencer from Jaipur, who enjoys exploring local markets and hidden culinary gems. With a degree in gastronomy, he provides insightful tips on how to appreciate Indian cuisine's diverse flavors and ingredients. At FeastFanatics, Rahul shares reviews, recipes, and his passion for food with readers.",meta_title:"Rahul Verma - Food Critic and Influencer | FeastFanatics",meta_description:"Join Rahul Verma's culinary adventures as he explores the diversity of Indian cuisine through recipes and reviews at FeastFanatics."},{name:"Nisha Sood",description:"Nisha Sood is a culinary enthusiast and food blogger specializing in Indian cuisine. With over a decade of experience, she has worked in various gourmet kitchens and is passionate about bringing traditional Indian recipes to the forefront in a modern way. Her recipes focus on using organic ingredients and preserving authentic flavors.",meta_title:"Nisha Sood - Expert in Authentic Indian Cuisine | FeastFanatics",meta_description:"Discover delectable Indian recipes curated by Nisha Sood, a seasoned culinary expert dedicated to presenting authentic flavors with organic ingredients."},{name:"Ravi Kumar",description:"Ravi Kumar is a professional chef and food writer with a love for Indian street food. He has spent years traveling through India, discovering the rich and diverse culinary heritage of the region. Ravi aims to share his unique food experiences through vivid storytelling and authentic recipes that inspire food lovers everywhere.",meta_title:"Ravi Kumar - Street Food Aficionado | FeastFanatics",meta_description:"Journey through the vibrant world of Indian street food with Ravi Kumar, a chef and storyteller sharing authentic recipes and experiences from across India."},{name:"Aditi Mehta",description:"Aditi Mehta is a self-taught home cook and food photographer based in Mumbai. She combines her love for photography and cooking to share her family recipes, capturing the essence of Indian culture. Aditi's recipes often include contemporary twists on traditional dishes, making them accessible and enjoyable for everyone.",meta_title:"Aditi Mehta - Culinary Artist & Food Photographer | FeastFanatics",meta_description:"Explore stunning Indian recipes with Aditi Mehta, a home cook and food photographer blending tradition and innovation in her culinary creations."},{name:"Vikram Singh",description:"Vikram Singh is a culinary consultant and food critic with a passion for fusion cuisine. He has contributed to top food publications and brings a wealth of knowledge on culinary trends. Vikram's articles guide readers on how to experiment with flavors while retaining Indian roots in their cooking.",meta_title:"Vikram Singh - Culinary Consultant & Fusion Food Expert | FeastFanatics",meta_description:"Learn about fusion cuisine from Vikram Singh, a culinary consultant and critic sharing innovative recipes and trends in the culinary world."},{name:"Priya Rao",description:"Priya Rao is a food scientist and chef with a focus on nutrition and wellness. She has over 8 years of experience in culinary research, emphasizing the importance of balanced meals. Priya's recipes are crafted to be healthy yet delicious, showcasing the beauty of Indian spices and ingredients.",meta_title:"Priya Rao - Nutritionist & Indian Cuisine Specialist | FeastFanatics",meta_description:"Discover nutritious and delicious Indian recipes with Priya Rao, a food scientist and chef dedicated to promoting wellness through Indian culinary traditions."},{name:"Ritika Bansal",description:"Ritika Bansal is a food stylist and cookbook author known for her vibrant Indian recipes. With a background in fine arts, she focuses on the visual aspect of food and how it can enhance the dining experience. Ritika shares tips on styling and plating, making her recipes not just tasty but also Instagram-worthy.",meta_title:"Ritika Bansal - Food Stylist & Cookbook Author | FeastFanatics",meta_description:"Elevate your culinary presentations with Ritika Bansal, a food stylist and author sharing Indian recipes that are as beautiful as they are delicious."},{name:"Karan Tiwari",description:"Karan Tiwari is a food blogger and home chef who specializes in quick and easy Indian recipes. Having developed a love for cooking during his college years, he now shares his easy-to-follow recipes designed for busy individuals who still want to enjoy homemade Indian meals. Karan's approach emphasizes simplicity without compromising taste.",meta_title:"Karan Tiwari - Quick & Easy Indian Meals Expert | FeastFanatics",meta_description:"Find quick and easy Indian recipes with Karan Tiwari, a passionate home chef sharing his love for simple yet flavorful cooking."},{name:"Ananya Iyer",description:"Ananya Iyer is a passionate food blogger who focuses on vegetarian Indian cuisine. With roots in traditional cooking, she creatively explores plant-based ingredients and spices to craft delectable dishes. Ananya aims to inspire others to discover the joys of vegetarian cooking while celebrating India’s culinary diversity.",meta_title:"Ananya Iyer - Vegetarian Indian Cuisine Innovator | FeastFanatics",meta_description:"Explore delicious vegetarian Indian recipes with Ananya Iyer, a food blogger dedicated to celebrating plant-based culinary traditions and flavors."},{name:"Sandeep Chatterjee",description:"Sandeep Chatterjee is a professional chef and culinary educator with a deep interest in Indian regional cuisines. With more than 15 years of experience in the culinary industry, he offers insights into the stories behind India's diverse dishes and their cultural significance through his writing.",meta_title:"Sandeep Chatterjee - Regional Indian Cuisine Specialist | FeastFanatics",meta_description:"Dive into the diverse world of Indian regional cuisines with Sandeep Chatterjee, a chef and educator sharing rich culinary stories and recipes."},{name:"Neha Bhattacharya",description:"Neha Bhattacharya is a chef and food historian specializing in the cuisine of Eastern India. With a master's degree in food studies, she shares not just recipes but the history and culture behind them. Neha is committed to preserving traditional cooking techniques while making them accessible for modern cooking.",meta_title:"Neha Bhattacharya - Eastern Indian Cuisine Historian | FeastFanatics",meta_description:"Learn about the rich history and cuisine of Eastern India with Neha Bhattacharya, a food historian sharing authentic recipes and traditions."},{name:"Sanjay Kapoor",description:"Sanjay Kapoor is a renowned chef and food writer with over 15 years of experience in the culinary world. He specializes in Indian cuisine and has contributed to several prestigious cookbooks. Sanjay’s passion for cooking began in his grandmother’s kitchen, and he now shares his expertise through his articles on authentic recipes and cooking techniques.",meta_title:"Sanjay Kapoor - Expert Indian Cuisine Chef and Food Writer",meta_description:"Explore mouth-watering Indian recipes and culinary tips from Sanjay Kapoor, a celebrated chef with over 15 years of experience in the food industry."},{name:"Rohan Sethi",description:"Rohan Sethi is a food columnist and chef with a focus on the fusion of traditional and modern Indian cooking. With over a decade of experience in various award-winning restaurants, Rohan has cultivated a unique cooking style reflected in his articles where he merges diverse culinary traditions with famed Indian recipes.",meta_title:"Rohan Sethi - Fusion Chef and Food Columnist",meta_description:"Join Rohan Sethi on a culinary journey as he blends traditional Indian recipes with modern cooking styles for innovative and delicious dishes."},{name:"Neha Bhatia",description:"Neha Bhatia is an Indian home chef and food blogger known for her approachable and family-friendly recipes. With extensive experience in catering and food writing, Neha shares her favorite comfort dishes that appeal to both seasoned cooks and beginners. Her articles often feature tips for meal planning and cooking for families.",meta_title:"Neha Bhatia - Home Chef and Family Recipes Advocate",meta_description:"Discover delightful and easy-to-follow family recipes with Neha Bhatia, a home chef sharing tips on meal planning and cooking for everyone."},{name:"Vikram Arora",description:"Vikram Arora is a food scientist and culinary consultant who focuses on the health and nutritional aspects of Indian cooking. With a Ph.D. in Food Science, Vikram writes articles that not only celebrate flavors but also promote healthier cooking methods and ingredients to inspire readers to make informed culinary choices.",meta_title:"Vikram Arora - Food Scientist and Culinary Consultant",meta_description:"Learn about health-conscious Indian cooking with Vikram Arora, a food scientist dedicated to delivering nutritious recipes and cooking insights."},{name:"Priya Nair",description:"Priya Nair is a celebrated chef and author specializing in South Indian cuisine. With roots in Kerala, Priya brings the rich traditions of her homeland to life with her articles, which explore regional specialties and authentic home-cooked meals. Her dedication to preserving culinary heritage makes her a respected voice in the food community.",meta_title:"Priya Nair - Specialist in South Indian Cuisine",meta_description:"Explore the rich flavors of South Indian cuisine with Priya Nair, a chef dedicated to sharing authentic recipes and culinary traditions from Kerala."},{name:"Anirudh Joshi",description:"Anirudh Joshi is a culinary artist and food stylist known for his visually stunning food presentations. With a background in culinary arts and photography, Anirudh combines the art of cooking with the aesthetics of food styling. His articles provide inspiration for dish presentation alongside delicious Indian recipes.",meta_title:"Anirudh Joshi - Culinary Artist and Food Stylist",meta_description:"Transform your cooking with Anirudh Joshi, a culinary artist sharing stunning food presentations and delectable Indian recipes for every occasion."},{name:"Ritika Sharma",description:"Ritika Sharma is a passionate food writer and recipe creator with a fascination for vegetarian and vegan Indian dishes. She focuses on healthy ingredients and sustainable cooking practices in her articles, offering a fresh perspective on traditional recipes while promoting a plant-based lifestyle.",meta_title:"Ritika Sharma - Advocate of Vegetarian and Vegan Indian Cuisine",meta_description:"Delve into the world of vegetarian and vegan Indian recipes with Ritika Sharma, a food writer dedicated to healthy and sustainable cooking."},{name:"Kunal Desai",description:"Kunal Desai is an award-winning chef and culinary educator specializing in Indian street food. His articles highlight the vibrant flavors and aromas of traditional street snacks while providing easy-to-follow recipes that can be made at home. Kunal’s enthusiasm for street food brings the essence of India to your kitchen.",meta_title:"Kunal Desai - Street Food Chef and Culinary Educator",meta_description:"Explore the exciting world of Indian street food with Kunal Desai, a chef sharing authentic recipes and cooking tips for beloved street snacks."},{name:"Sanya Khanna",description:"Sanya Khanna is a young food journalist and recipe developer passionate about contemporary Indian cuisine. She writes articles that capture the essence of modern Indian cooking trends while honoring traditional flavors, offering readers innovative recipes suitable for both casual dining and special occasions.",meta_title:"Sanya Khanna - Modern Indian Cuisine Advocate",meta_description:"Discover modern twists on traditional Indian recipes with Sanya Khanna, a food journalist dedicated to celebrating innovative culinary trends."},{name:"Julia Martinez",description:"Julia Martinez is a passionate culinary expert and food blogger from Spain, specializing in Mediterranean cuisine. With over a decade of experience in the kitchen, she has traveled across Europe, gaining insights into traditional recipes and modern culinary techniques. Julia aims to bring a taste of her heritage to life through easy-to-follow recipes that inspire home cooks around the globe.",meta_title:"Julia Martinez - Mediterranean Cooking Expert at FeastFanatics",meta_description:"Discover delightful Mediterranean recipes from Julia Martinez, a seasoned culinary expert with over 10 years of experience. Explore her culinary journey at FeastFanatics."},{name:"Amir Khan",description:"Amir Khan is a chef and food writer from India who infuses his love for traditional Indian flavors with contemporary twists. With professional training from one of India's top culinary schools and years of experience working in renowned restaurants, Amir brings a wealth of knowledge to his recipes. He aims to make Indian cooking accessible to everyone at FeastFanatics.",meta_title:"Amir Khan - Indian Food Specialist at FeastFanatics",meta_description:"Join Amir Khan as he shares authentic Indian recipes with modern flair. A trained chef with a passion for culinary creativity, he makes Indian cooking approachable at FeastFanatics."},{name:"Sofia Rossi",description:"Sofia Rossi is an Italian chef and food stylist based in Rome, Italy. With a core belief that food should nourish both the body and soul, she shares her family recipes that have been passed down through generations. Her expertise in presentation and plating has made her a sought-after food stylist in the culinary world. Sofia offers delicious vegetarian and vegan options at FeastFanatics.",meta_title:"Sofia Rossi - Italian Culinary Artist at FeastFanatics",meta_description:"Explore Italian vegetarian and vegan recipes with Sofia Rossi, a talented chef and food stylist sharing her family heritage at FeastFanatics."},{name:"Liam O'Sullivan",description:"Liam O'Sullivan, an Irish foodie and travel writer, has a knack for combining local ingredients with international spices. Over the years, he has explored culinary traditions in various cultures, enhancing his recipes with stories from his travels. His mission is to encourage home chefs to experiment and enjoy cooking with fresh ingredients at FeastFanatics.",meta_title:"Liam O'Sullivan - Culinary Explorer and Recipe Creator at FeastFanatics",meta_description:"Join Liam O'Sullivan on a flavorful journey as he shares unique recipes combining local ingredients with global influences at FeastFanatics."},{name:"Haruto Takashi",description:"Haruto Takashi is a Japanese chef known for his dedication to traditional Japanese cooking techniques. With years of experience in sushi-making and other iconic dishes, he brings authenticity and a deep understanding of ingredients to his recipes. Haruto aims to introduce the beauty of Japanese cuisine to a wider audience through his engaging articles at FeastFanatics.",meta_title:"Haruto Takashi - Traditional Japanese Cuisine Expert at FeastFanatics",meta_description:"Discover authentic Japanese recipes from Haruto Takashi, a skilled chef sharing his passion for culinary traditions at FeastFanatics."},{name:"Maria Gonzalez",description:"Maria Gonzalez is a Cuban-American chef and recipe developer whose culinary journey bridges her Cuban roots and American contemporary cuisine. With a focus on bold flavors and healthy ingredients, her recipes celebrate the vibrant culture of Cuba. Maria's innovative approach to cooking makes her a valuable contributor to FeastFanatics.",meta_title:"Maria Gonzalez - Cuban-American Cuisine Innovator at FeastFanatics",meta_description:"Try delicious Cuban-inspired recipes from Maria Gonzalez, an innovative chef blending her roots with healthy culinary creations at FeastFanatics."},{name:"Omar El-Masri",description:"Omar El-Masri is a Syrian chef and food advocate specializing in Middle Eastern flavors. With a rich background in hospitality and culinary arts, he crafts recipes that not only satisfy the palate but also tell a story of cultural heritage. Omar is dedicated to promoting the rich culinary traditions of the Middle East at FeastFanatics.",meta_title:"Omar El-Masri - Middle Eastern Culinary Advocate at FeastFanatics",meta_description:"Experience the richness of Middle Eastern cuisine through Omar El-Masri's authentic recipes celebrating cultural heritage at FeastFanatics."},{name:"Freya Johnson",description:"Freya Johnson is a British nutritionist and food writer who believes in the power of healthy eating. She focuses on creating wholesome recipes that are both nutritious and delicious. With her extensive knowledge in nutrition, she inspires home cooks to prioritize health without sacrificing flavor in her articles at FeastFanatics.",meta_title:"Freya Johnson - Nutritionist and Healthy Recipe Developer at FeastFanatics",meta_description:"Discover nutritious and tasty recipes with Freya Johnson, a nutritionist dedicated to healthy eating without compromising on flavor at FeastFanatics."},{name:"Elias Mendez",description:"Elias Mendez is a Mexican chef who has a passion for traditional Mexican food as well as modern culinary techniques. He has honed his skills in some of the best kitchens across Mexico City and draws inspiration from local markets. His vibrant recipes aim to share the joy of Mexican culture and heritage at FeastFanatics.",meta_title:"Elias Mendez - Mexican Culinary Maestro at FeastFanatics",meta_description:"Explore the vibrant flavors of Mexico with Elias Mendez, a skilled chef sharing authentic Mexican recipes that celebrate culture at FeastFanatics."},{name:"Anya Petrov",description:"Anya Petrov is a Russian chef and culinary historian, deeply engaged in the exploration of Eastern European cuisine. With a background in food history and a passion for preserving traditional recipes, she brings stories and flavors from her homeland to life. Anya shares her unique culinary perspective at FeastFanatics.",meta_title:"Anya Petrov - Eastern European Cuisine Historian at FeastFanatics",meta_description:"Discover the rich history of Eastern European cuisine with Anya Petrov, a culinary historian sharing authentic recipes at FeastFanatics."},{name:"Laura Adams",description:"Laura Adams is a culinary expert based in London with over a decade of experience in recipe development and food photography. She has written for various culinary magazines and blogs, specializing in healthy and innovative dishes. Her passion for seasonal ingredients influences her approach, making her recipes both nutritious and delicious.",meta_title:"Laura Adams - FeastFanatics Culinary Expert",meta_description:"Discover Laura Adams, a London-based culinary expert with over a decade of experience in creating healthy, seasonal recipes. Join her on FeastFanatics for innovative cooking tips!"},{name:"Raúl Hernández",description:"Raúl Hernández is a renowned chef from Mexico City, celebrated for his authentic Mexican cuisine and vibrant flavors. With years of experience in top restaurants and as a culinary educator, he brings traditional recipes to life, sharing his knowledge of spices and techniques that define Mexican gastronomy.",meta_title:"Raúl Hernández - Authentic Mexican Cuisine on FeastFanatics",meta_description:"Explore authentic Mexican recipes with Raúl Hernández, a renowned chef and culinary educator from Mexico City. Join him on FeastFanatics for vibrant cooking experiences!"},{name:"Aisha Syed",description:"Aisha Syed is a food blogger and recipe developer from Dubai who focuses on Middle Eastern cuisine. Her culinary journey began with family recipes, and she now infuses modern twists into traditional dishes. Aisha's popular blog has attracted a loyal following, and she shares simple, flavorful recipes that celebrate her heritage.",meta_title:"Aisha Syed - Middle Eastern Cuisine on FeastFanatics",meta_description:"Join Aisha Syed on FeastFanatics as she shares her flavorful Middle Eastern recipes and modern twists on traditional cuisine from Dubai. Perfect for food enthusiasts!"},{name:"Oliver Brooks",description:"Oliver Brooks is a passionate food stylist and recipe developer from San Francisco. He has worked with several well-known brands and publications, creating visually stunning dishes that highlight seasonal produce. Oliver's commitment to sustainability and local ingredients inspires his recipes and cooking philosophy.",meta_title:"Oliver Brooks - Sustainable Recipes on FeastFanatics",meta_description:"Discover sustainable and visually stunning recipes with Oliver Brooks from San Francisco. Join him on FeastFanatics for creative cooking inspired by local ingredients!"},{name:"Sofia Patel",description:"Sofia Patel is a professional chef and culinary writer based in New Delhi, specializing in Indian cuisine. With years of experience in high-end restaurants and cooking schools, her recipes blend traditional flavors with modern techniques. Sofia's goal is to make Indian cooking accessible to everyone.",meta_title:"Sofia Patel - Indian Cuisine Expert on FeastFanatics",meta_description:"Learn the art of Indian cooking with Sofia Patel, a professional chef and culinary writer from New Delhi. Join her on FeastFanatics for accessible and delicious recipes!"},{name:"Maximilian Schmidt",description:"Maximilian Schmidt is a culinary historian and food blogger from Berlin. With a background in gastronomy and culture, he specializes in exploring the history of different cuisines and their evolution. His unique approach combines traditional recipes with fascinating stories that make every dish meaningful.",meta_title:"Maximilian Schmidt - Culinary History on FeastFanatics",meta_description:"Delve into culinary history with Maximilian Schmidt from Berlin. Join him on FeastFanatics for recipes that come to life with rich stories and cultural significance!"},{name:"Chloe Lee",description:"Chloe Lee is a vegan chef and food activist from Toronto, dedicated to promoting plant-based living. With her extensive culinary background, she creates innovative vegan recipes that are both healthy and indulgent. Chloe uses her platform to educate others about the benefits of a sustainable, cruelty-free lifestyle.",meta_title:"Chloe Lee - Vegan Chef on FeastFanatics",meta_description:"Explore vibrant and innovative vegan recipes with Chloe Lee, a Toronto-based chef and food activist. Join her on FeastFanatics for a delicious plant-based experience!"},{name:"Hannah Wong",description:"Hannah Wong is a food stylist and recipe creator from Sydney who focuses on Asian-Pacific cuisine. Her extensive travel has influenced her cooking, bringing diverse flavors and techniques to her kitchen. Hannah believes that food is not only nourishment but also a means of connecting people.",meta_title:"Hannah Wong - Asian-Pacific Cuisine on FeastFanatics",meta_description:"Join Hannah Wong on FeastFanatics for Asian-Pacific cuisine recipes that celebrate diverse flavors and fun cooking techniques. Discover the connection food brings!"},{name:"Daniela Rossi",description:"Daniela Rossi is an Italian chef residing in Florence, known for her expertise in traditional Italian recipes and seasonal cooking. She emphasizes the beauty of simplicity in her dishes and has a deep understanding of the local ingredients that Italy has to offer. Daniela aims to inspire simplicity and creativity in every kitchen.",meta_title:"Daniela Rossi - Italian Culinary Traditions on FeastFanatics",meta_description:"Experience the simplicity and beauty of Italian cuisine with Daniela Rossi from Florence. Join her on FeastFanatics for traditional recipes and cooking inspiration!"}],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:#8b1d32;--theme-color-8:#b32142;--theme-color-7:#c84d6f;--theme-color-6:#f1a7b4;--theme-color-5:#f3cedf;--theme-color-3:#e6b2c8;--theme-color-2:#fae3e5;--color-bg-layout:#ffffff;--color-bg-hover:#f7e6e8;--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";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tedo-publisher",
3
- "version": "1.3.278",
3
+ "version": "1.3.280",
4
4
  "description": "Package for config files and reusable code/components between projects",
5
5
  "main": "dist/index.js",
6
6
  "files": [