tedo-publisher 1.3.279 → 1.3.281

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. package/dist/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 +1 -1
  26. package/dist/kitchenkurrent/data.d.ts +266 -0
  27. package/dist/kitchenkurrent/data.js +1 -0
  28. package/dist/kitchenkurrent/filters.d.ts +28 -0
  29. package/dist/kitchenkurrent/filters.js +1 -0
  30. package/dist/kitchenkurrent/helpers.d.ts +3 -0
  31. package/dist/kitchenkurrent/helpers.js +1 -0
  32. package/dist/kitchenkurrent/index.d.ts +15 -0
  33. package/dist/kitchenkurrent/index.js +1 -0
  34. package/dist/kitchenkurrent/prompts/data.d.ts +7 -0
  35. package/dist/kitchenkurrent/prompts/data.js +1 -0
  36. package/dist/kitchenkurrent/prompts/gpt35turbo/articles.d.ts +6 -0
  37. package/dist/kitchenkurrent/prompts/gpt35turbo/articles.js +1 -0
  38. package/dist/kitchenkurrent/prompts/gpt4oMini/articles.d.ts +6 -0
  39. package/dist/kitchenkurrent/prompts/gpt4oMini/articles.js +1 -0
  40. package/dist/kitchenkurrent/prompts/images.d.ts +4 -0
  41. package/dist/kitchenkurrent/prompts/images.js +1 -0
  42. package/dist/kitchenkurrent/seo.d.ts +23 -0
  43. package/dist/kitchenkurrent/seo.js +1 -0
  44. package/dist/kitchenkurrent/styles/colors.css +1 -0
  45. package/dist/kitchenkurrent/styles/fonts.css +1 -0
  46. package/dist/kitchenkurrent/styles/global.css +1 -0
  47. package/dist/kitchenkurrent/styles/sizing.css +1 -0
  48. package/dist/kitchenkurrent/styles/theme.css +1 -0
  49. package/dist/kitchenkurrent/styles/vars.css +1 -0
  50. 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";
@@ -256,7 +256,7 @@ export declare const dataStructure: {
256
256
  export declare const authors: Record<string, string>;
257
257
  export declare const authorsNames: string[];
258
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" | "familyFriendlyRecipes" | "quickMeals" | "dietaryOptions" | "eventSpecials")[];
259
+ export declare const categories: ("ingredientSpotlights" | "cookingTechniques" | "globalCuisines" | "quickMeals" | "familyFriendlyRecipes" | "dietaryOptions" | "eventSpecials")[];
260
260
  export declare const subcategories: string[];
261
261
  export declare const subsubcategories: string[];
262
262
  export type Category = keyof typeof dataStructure;
@@ -0,0 +1,266 @@
1
+ export declare const dataStructure: {
2
+ easyToFollowRecipes: {
3
+ title: string;
4
+ description: string;
5
+ slug: string;
6
+ children: {
7
+ quickAndEasy: {
8
+ title: string;
9
+ description: string;
10
+ slug: string;
11
+ children: null;
12
+ };
13
+ onePotMeals: {
14
+ title: string;
15
+ description: string;
16
+ slug: string;
17
+ children: null;
18
+ };
19
+ slowCookerDishes: {
20
+ title: string;
21
+ description: string;
22
+ slug: string;
23
+ children: null;
24
+ };
25
+ familyFavorites: {
26
+ title: string;
27
+ description: string;
28
+ slug: string;
29
+ children: null;
30
+ };
31
+ other: {
32
+ title: string;
33
+ description: string;
34
+ slug: string;
35
+ children: null;
36
+ };
37
+ };
38
+ };
39
+ worldCuisines: {
40
+ title: string;
41
+ description: string;
42
+ slug: string;
43
+ children: {
44
+ italianCuisine: {
45
+ title: string;
46
+ description: string;
47
+ slug: string;
48
+ children: null;
49
+ };
50
+ mexicanCuisine: {
51
+ title: string;
52
+ description: string;
53
+ slug: string;
54
+ children: null;
55
+ };
56
+ japaneseCuisine: {
57
+ title: string;
58
+ description: string;
59
+ slug: string;
60
+ children: null;
61
+ };
62
+ indianCuisine: {
63
+ title: string;
64
+ description: string;
65
+ slug: string;
66
+ children: null;
67
+ };
68
+ mediterraneanCuisine: {
69
+ title: string;
70
+ description: string;
71
+ slug: string;
72
+ children: null;
73
+ };
74
+ other: {
75
+ title: string;
76
+ description: string;
77
+ slug: string;
78
+ children: null;
79
+ };
80
+ };
81
+ };
82
+ healthyEating: {
83
+ title: string;
84
+ description: string;
85
+ slug: string;
86
+ children: {
87
+ mealPrepIdeas: {
88
+ title: string;
89
+ description: string;
90
+ slug: string;
91
+ children: null;
92
+ };
93
+ lowCarbRecipes: {
94
+ title: string;
95
+ description: string;
96
+ slug: string;
97
+ children: null;
98
+ };
99
+ vegetarianOptions: {
100
+ title: string;
101
+ description: string;
102
+ slug: string;
103
+ children: null;
104
+ };
105
+ glutenFreeRecipes: {
106
+ title: string;
107
+ description: string;
108
+ slug: string;
109
+ children: null;
110
+ };
111
+ nutrientDenseMeals: {
112
+ title: string;
113
+ description: string;
114
+ slug: string;
115
+ children: null;
116
+ };
117
+ other: {
118
+ title: string;
119
+ description: string;
120
+ slug: string;
121
+ children: null;
122
+ };
123
+ };
124
+ };
125
+ cookingTechniques: {
126
+ title: string;
127
+ description: string;
128
+ slug: string;
129
+ children: {
130
+ bakingBasics: {
131
+ title: string;
132
+ description: string;
133
+ slug: string;
134
+ children: null;
135
+ };
136
+ grillingTips: {
137
+ title: string;
138
+ description: string;
139
+ slug: string;
140
+ children: null;
141
+ };
142
+ sauteingSecrets: {
143
+ title: string;
144
+ description: string;
145
+ slug: string;
146
+ children: null;
147
+ };
148
+ steamingMethods: {
149
+ title: string;
150
+ description: string;
151
+ slug: string;
152
+ children: null;
153
+ };
154
+ platingPresentation: {
155
+ title: string;
156
+ description: string;
157
+ slug: string;
158
+ children: null;
159
+ };
160
+ other: {
161
+ title: string;
162
+ description: string;
163
+ slug: string;
164
+ children: null;
165
+ };
166
+ };
167
+ };
168
+ ingredientFocus: {
169
+ title: string;
170
+ description: string;
171
+ slug: string;
172
+ children: {
173
+ seasonalProduce: {
174
+ title: string;
175
+ description: string;
176
+ slug: string;
177
+ children: null;
178
+ };
179
+ spicesAndHerbs: {
180
+ title: string;
181
+ description: string;
182
+ slug: string;
183
+ children: null;
184
+ };
185
+ proteinPowerhouses: {
186
+ title: string;
187
+ description: string;
188
+ slug: string;
189
+ children: null;
190
+ };
191
+ grainsAndLegumes: {
192
+ title: string;
193
+ description: string;
194
+ slug: string;
195
+ children: null;
196
+ };
197
+ condimentsAndDressings: {
198
+ title: string;
199
+ description: string;
200
+ slug: string;
201
+ children: null;
202
+ };
203
+ other: {
204
+ title: string;
205
+ description: string;
206
+ slug: string;
207
+ children: null;
208
+ };
209
+ };
210
+ };
211
+ mealPlanning: {
212
+ title: string;
213
+ description: string;
214
+ slug: string;
215
+ children: {
216
+ weeklyMealPrep: {
217
+ title: string;
218
+ description: string;
219
+ slug: string;
220
+ children: null;
221
+ };
222
+ budgetFriendlyMeals: {
223
+ title: string;
224
+ description: string;
225
+ slug: string;
226
+ children: null;
227
+ };
228
+ familyMealPlans: {
229
+ title: string;
230
+ description: string;
231
+ slug: string;
232
+ children: null;
233
+ };
234
+ specialOccasionMenus: {
235
+ title: string;
236
+ description: string;
237
+ slug: string;
238
+ children: null;
239
+ };
240
+ snackIdeas: {
241
+ title: string;
242
+ description: string;
243
+ slug: string;
244
+ children: null;
245
+ };
246
+ other: {
247
+ title: string;
248
+ description: string;
249
+ slug: string;
250
+ children: null;
251
+ };
252
+ };
253
+ };
254
+ };
255
+ export declare const authors: Record<string, string>;
256
+ export declare const authorsNames: string[];
257
+ export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83C\uDF7D\uFE0F\uD83D\uDC69\u200D\uD83C\uDF73\uD83E\uDD58\uD83D\uDCD6";
258
+ export declare const categories: ("cookingTechniques" | "mealPlanning" | "healthyEating" | "easyToFollowRecipes" | "worldCuisines" | "ingredientFocus")[];
259
+ export declare const subcategories: string[];
260
+ export declare const subsubcategories: string[];
261
+ export type Category = keyof typeof dataStructure;
262
+ export type CategoryNode = (typeof dataStructure)[Category];
263
+ export type SubcategoryKeyByCategory<T extends Category> = (typeof dataStructure)[T]['children'];
264
+ export declare const startDate = "2024-09-19T00:00:00Z";
265
+ export declare const devBucketName = "idn-kitchenkurrent-dev";
266
+ export declare const prodBucketName = "idn-kitchenkurrent";
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./seo.js");const i={easyToFollowRecipes:{title:"Easy To Follow Recipes for Every Culinary Enthusiast 🍽️",description:"Explore a diverse array of easy-to-follow recipes that cater to all skill levels. 🌟 Elevate your cooking game with KitchenKurrent today!",slug:"easy-to-follow-recipes",children:{quickAndEasy:{title:"Quick and Easy Recipes for Busy Cooks ⏱️",description:"Discover quick and easy recipes perfect for those busy days! From snacks to meals, enjoy deliciousness in a flash. 🍝",slug:"quick-and-easy",children:null},onePotMeals:{title:"One Pot Meals for Effortless Cooking 🍲",description:"Simplify your cooking with tasty one pot meals that make cleanup a breeze! Perfect for families and busy lives. 🥘",slug:"one-pot-meals",children:null},slowCookerDishes:{title:"Slow Cooker Dishes for Easy Meal Prep 🕒",description:"Explore hearty slow cooker dishes that require minimal effort for maximum flavor! Perfect for busy days and delicious leftovers. 🌿",slug:"slow-cooker-dishes",children:null},familyFavorites:{title:"Family Favorites Everyone Will Enjoy ❤️",description:"Cook up family favorites that bring everyone to the table! Discover cherished recipes that create memories and joy. 🍽️",slug:"family-favorites",children:null},other:{title:"Miscellaneous Recipes for All Tastes 🌍",description:"Dive into a variety of other delightful recipes for any craving you might have! Explore diverse tastes and ingredients. 🍴",slug:"other-recipes",children:null}}},worldCuisines:{title:"Explore Diverse World Cuisines 🌍 | KitchenKurrent",description:"Discover a variety of world cuisines at KitchenKurrent! Learn about unique recipes and culinary secrets to enhance your cooking experience. 🍽️",slug:"world-cuisines",children:{italianCuisine:{title:"Authentic Italian Cuisine Recipes 🍝 | KitchenKurrent",description:"Indulge in authentic Italian cuisine with easy recipes including pasta, pizza, and more! 🍕 Elevate your culinary skills today.",slug:"italian-cuisine",children:null},mexicanCuisine:{title:"Spicy and Flavorful Mexican Cuisine 🌮 | KitchenKurrent",description:"Dive into the vibrant flavors of Mexican cuisine! Discover easy recipes for tacos, enchiladas, and more! 🌶️ Get cooking now.",slug:"mexican-cuisine",children:null},japaneseCuisine:{title:"Delicious Japanese Cuisine Recipes 🍣 | KitchenKurrent",description:"Explore the art of Japanese cuisine with sushi, ramen, and traditional dishes! Discover authentic recipes and tips. 🍜",slug:"japanese-cuisine",children:null},indianCuisine:{title:"Rich and Aromatic Indian Cuisine 🥘 | KitchenKurrent",description:"Experience the rich flavors of Indian cuisine! From curries to biryanis, find easy recipes to explore culinary cultures. 🌿",slug:"indian-cuisine",children:null},mediterraneanCuisine:{title:"Fresh and Healthy Mediterranean Cuisine 🥗 | KitchenKurrent",description:"Embrace the fresh tastes of Mediterranean cuisine! Enjoy recipes packed with healthy ingredients and vibrant flavors. 🌿",slug:"mediterranean-cuisine",children:null},other:{title:"Explore Other World Cuisines 🌏 | KitchenKurrent",description:"Discover unique and diverse other world cuisines! Delve into recipes that explore delightful flavors from around the globe. 🍲",slug:"other-cuisines",children:null}}},healthyEating:{title:"Healthy Eating: Nourishing Recipes & Tips for Every Palate 🌱",description:"Explore a variety of healthy eating options with our meal prep ideas, low-carb recipes, and more. Elevate your culinary skills today! 🍽️",slug:"healthy-eating",children:{mealPrepIdeas:{title:"Meal Prep Ideas: Simplify Your Week with Delicious Recipes 🥗",description:"Discover innovative meal prep ideas that make planning nutritious meals easy. Save time and eat well with these quick recipes! ⏱️",slug:"meal-prep-ideas",children:null},lowCarbRecipes:{title:"Low Carb Recipes: Savor Flavorful Dishes Without the Carbs 🥑",description:"Dive into our collection of delicious low carb recipes that satisfy your cravings while keeping your diet on track. Enjoy guilt-free meals! 🍳",slug:"low-carb-recipes",children:null},vegetarianOptions:{title:"Vegetarian Options: Tasty Plant-Based Recipes for Everyone 🌽",description:"Explore a rich variety of vegetarian options that are both tasty and nutritious. Perfect for plant lovers and health enthusiasts alike! 🌿",slug:"vegetarian-options",children:null},glutenFreeRecipes:{title:"Gluten Free Recipes: Enjoy Delicious Meals Without Gluten 🍞",description:"Indulge in our flavorful gluten free recipes designed for everyone, whether you have dietary restrictions or just love great food! 🍲",slug:"gluten-free-recipes",children:null},nutrientDenseMeals:{title:"Nutrient Dense Meals: Cook Up Healthy, Wholesome Dishes 🍛",description:"Create nutrient dense meals that nourish your body and satisfy your taste buds. Learn to cook wholesome dishes with real ingredients! 🥣",slug:"nutrient-dense-meals",children:null},other:{title:"Other Healthy Eating Tips: Discover More About Nutrition 🌟",description:"Explore additional resources and tips for healthy eating beyond recipes. Get inspired to maintain a balanced lifestyle every day! 💡",slug:"other-healthy-eating-tips",children:null}}},cookingTechniques:{title:"Mastering Cooking Techniques: Enhance Your Culinary Skills 🔪",description:"Explore essential cooking techniques at KitchenKurrent. From baking to grilling, learn tips and tricks to elevate your culinary skills! 🍽️",slug:"cooking-techniques",children:{bakingBasics:{title:"Baking Basics: Essential Techniques for Perfect Pastries 🍰",description:"Discover the fundamentals of baking with our expert tips and techniques. Perfect your pastries and bread with ease! 🥐",slug:"baking-basics",children:null},grillingTips:{title:"Grilling Tips: Achieve Perfectly Cooked Meats and Veggies 🍖",description:"Unlock the secrets of grilling with our comprehensive tips. Grill like a pro and savor delicious meals all summer long! 🌽",slug:"grilling-tips",children:null},sauteingSecrets:{title:"Sauteing Secrets: Unlock Flavors in Every Dish 🍳",description:"Learn the art of sauteing to enhance flavors and textures in your dishes. Simple tips for amazing results every time! 🍝",slug:"sauteing-secrets",children:null},steamingMethods:{title:"Steaming Methods: Healthy Cooking for Delicious Dishes 🍲",description:"Elevate your meals with steaming methods that preserve nutrients. Explore our techniques for healthy cooking today! 🍱",slug:"steaming-methods",children:null},platingPresentation:{title:"Plating Presentation: Artfully Arrange Your Culinary Creations 🍽️",description:"Master the art of plating and impress your guests with visually stunning meals. Tips for beautiful presentations await! 🌟",slug:"plating-presentation",children:null},other:{title:"Other Cooking Techniques: Expand Your Culinary Knowledge 🌍",description:"Explore diverse cooking techniques beyond the basics and take your culinary skills to the next level! 🥘",slug:"other-techniques",children:null}}},ingredientFocus:{title:"Explore Culinary Ingredients for Delicious Recipes 🍽️",description:"Discover tips and recipes focused on seasonal produce, spices, proteins, grains, condiments, and more to enhance your cooking journey! 🌟",slug:"culinary-ingredients",children:{seasonalProduce:{title:"Seasonal Produce Guide: Fresh Ingredients for Every Season 🥕",description:"Find out how to select and cook with fresh seasonal produce that elevates your dishes, adds nutrition, and excites your palate. 🥗",slug:"seasonal-produce",children:null},spicesAndHerbs:{title:"Spices and Herbs: Flavor Boosters for Every Recipe 🌿",description:"Unlock the secrets to using spices and herbs in your cooking to create mouthwatering dishes bursting with vibrant flavors and aromas! 🌶️",slug:"spices-and-herbs",children:null},proteinPowerhouses:{title:"Protein Powerhouses: Nutrient-Dense Ingredients for Healthy Meals 🍗",description:"Explore a range of protein-rich ingredients designed to fuel your body and enhance your culinary creations with taste and nutrition. 🍳",slug:"protein-powerhouses",children:null},grainsAndLegumes:{title:"Wholesome Grains and Legumes: Foundations for Delicious Meals 🍚",description:"Discover nutritious grains and legumes that can serve as hearty bases for your meals while delivering essential nutrients and flavors. 🥙",slug:"grains-and-legumes",children:null},condimentsAndDressings:{title:"Condiments and Dressings: Enhance Your Dishes with Flavor 🎉",description:"Learn how to expertly use condiments and dressings to elevate your meals, add zest, and compliment any culinary creation effortlessly. 🍋",slug:"condiments-and-dressings",children:null},other:{title:"Other Essential Ingredients: A Culinary Exploration 🥑",description:"Dive into varied ingredients beyond the basics to explore how they can enhance your cooking experience and inspire creativity in dishes. 🍽️",slug:"other-ingredients",children:null}}},mealPlanning:{title:"Meal Planning: Perfect Strategies for Every Cook 🍽️",description:"Discover the best meal planning tips and recipes that cater to your needs, from weekly meal prep to budget-friendly ideas. Start your culinary journey today! 🌟",slug:"meal-planning",children:{weeklyMealPrep:{title:"Weekly Meal Prep Made Simple: Recipes & Tips 🙌",description:"Effortlessly plan your week with our easy meal prep ideas. Discover delicious recipes that save time and enhance your culinary skills! 🍳",slug:"weekly-meal-prep",children:null},budgetFriendlyMeals:{title:"Budget-Friendly Meals: Delicious & Affordable Recipes 💰",description:"Explore a collection of budget-friendly meal ideas that are both delicious and nourishing, perfect for any home cook on a budget! 🍜",slug:"budget-friendly-meals",children:null},familyMealPlans:{title:"Family Meal Plans: Nourishing Recipes for Everyone 👨‍👩‍👦",description:"Craft meal plans that the whole family will love! Find easy and tasty recipes that cater to all ages and preferences. 🥘",slug:"family-meal-plans",children:null},specialOccasionMenus:{title:"Special Occasion Menus: Elevate Your Celebration 🎉",description:"Create memorable meals for your special occasions with our curated menus. Impress guests with delightful recipes for every event! 🍰",slug:"special-occasion-menus",children:null},snackIdeas:{title:"Snack Ideas: Quick & Tasty Treats for Everyone 🍿",description:"Explore an array of quick and easy snack ideas perfect for any time of day. Stay energized with delicious and healthy options! 🌭",slug:"snack-ideas",children:null},other:{title:"Other Meal Planning Tips: Creative Culinary Insights 🤔",description:"Delve into diverse meal planning strategies and tips that don't fit the usual categories. Get inspired to cook outside the box! 🥗",slug:"other-meal-planning-tips",children:null}}}},s=e.AUTHORS_INFO.reduce(((e,i)=>Object.assign(Object.assign({},e),{[i.name]:[i.description]})),{}),n=e.AUTHORS_INFO.map((e=>e.name)),t="🍽️👩‍🍳🥘📖",r=Object.keys(i),a=[],l=[];for(const e of r){const s=i[e];if(null==s?void 0:s.children){a.push(...Object.keys(s.children));for(const e of a){const i=s.children[e];(null==i?void 0:i.children)&&l.push(...Object.keys(i.children))}}}const o="2024-09-19T00:00:00Z",c="kitchenkurrent",u=`idn-${c}-dev`,d=`idn-${c}`;exports.DEFAULT_DESCRIPTION_EMOJIS=t,exports.authors=s,exports.authorsNames=n,exports.categories=r,exports.dataStructure=i,exports.devBucketName=u,exports.prodBucketName=d,exports.startDate=o,exports.subcategories=a,exports.subsubcategories=l;
@@ -0,0 +1,28 @@
1
+ export declare enum FiltersNames {
2
+ CulinaryQuest = "Culinary Quest",
3
+ SkillLevel = "Skill Level",
4
+ MealType = "Meal Type",
5
+ CuisineAdventure = "Cuisine Adventure",
6
+ SpecialDietaryNeeds = "Special Dietary Needs"
7
+ }
8
+ type CulinaryQuestValues = 'Traditional Classics' | 'Global Flavors' | 'Health-Conscious' | 'Experimental Creations';
9
+ type SkillLevelValues = 'Beginner-Friendly' | 'Intermediate Techniques' | 'Advanced Culinary Skills' | "Chef's Secrets";
10
+ type MealTypeValues = 'Quick Fixes' | 'Family Dinners' | 'Gourmet Treats' | 'Meal Prep Essentials';
11
+ type CuisineAdventureValues = 'Italian Indulgence' | 'Asian Wonders' | 'Mexican Fiesta' | 'Mediterranean Bliss';
12
+ type SpecialDietaryNeedsValues = 'Gluten-Free Goodies' | 'Vegan Delights' | 'Keto-Friendly Creations' | 'Paleo Pleasures';
13
+ export type ArticleFilters = {
14
+ [FiltersNames.CulinaryQuest]: CulinaryQuestValues[];
15
+ [FiltersNames.SkillLevel]: SkillLevelValues[];
16
+ [FiltersNames.MealType]: MealTypeValues[];
17
+ [FiltersNames.CuisineAdventure]: CuisineAdventureValues[];
18
+ [FiltersNames.SpecialDietaryNeeds]: SpecialDietaryNeedsValues[];
19
+ };
20
+ export declare const culinaryQuestValues: CulinaryQuestValues[];
21
+ export declare const skillLevelValues: SkillLevelValues[];
22
+ export declare const mealTypeValues: MealTypeValues[];
23
+ export declare const cuisineAdventureValues: CuisineAdventureValues[];
24
+ export declare const specialDietaryNeedsValues: SpecialDietaryNeedsValues[];
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={})).CulinaryQuest="Culinary Quest",e.SkillLevel="Skill Level",e.MealType="Meal Type",e.CuisineAdventure="Cuisine Adventure",e.SpecialDietaryNeeds="Special Dietary Needs";const s=["Traditional Classics","Global Flavors","Health-Conscious","Experimental Creations"],i=["Beginner-Friendly","Intermediate Techniques","Advanced Culinary Skills","Chef's Secrets"],l=["Quick Fixes","Family Dinners","Gourmet Treats","Meal Prep Essentials"],r=["Italian Indulgence","Asian Wonders","Mexican Fiesta","Mediterranean Bliss"],t=["Gluten-Free Goodies","Vegan Delights","Keto-Friendly Creations","Paleo Pleasures"],a={[exports.FiltersNames.CulinaryQuest]:[],[exports.FiltersNames.SkillLevel]:[],[exports.FiltersNames.MealType]:[],[exports.FiltersNames.CuisineAdventure]:[],[exports.FiltersNames.SpecialDietaryNeeds]:[]},n={[exports.FiltersNames.CulinaryQuest]:s,[exports.FiltersNames.SkillLevel]:i,[exports.FiltersNames.MealType]:l,[exports.FiltersNames.CuisineAdventure]:r,[exports.FiltersNames.SpecialDietaryNeeds]:t},o=()=>JSON.stringify(n,null,2);exports.cuisineAdventureValues=r,exports.culinaryQuestValues=s,exports.fullFilters=n,exports.getFiltersTypesJSON=o,exports.initialFilters=a,exports.mealTypeValues=l,exports.skillLevelValues=i,exports.specialDietaryNeedsValues=t;
@@ -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.cuisineAdventureValues=t.cuisineAdventureValues,exports.culinaryQuestValues=t.culinaryQuestValues,exports.fullFilters=t.fullFilters,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.initialFilters=t.initialFilters,exports.mealTypeValues=t.mealTypeValues,exports.skillLevelValues=t.skillLevelValues,exports.specialDietaryNeedsValues=t.specialDietaryNeedsValues,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: KitchenKurrent is an infotainment portal dedicated to culinary enthusiasts, offering a rich collection of recipes and culinary tips. It serves as a go-to resource for anyone eager to enhance their cooking skills and explore diverse cuisines.\n - Detailed description: KitchenKurrent is an online platform designed for food lovers, home cooks, and aspiring chefs looking to enrich their culinary experience. The portal features a comprehensive archive of easy-to-follow recipes spanning various cuisines and dietary preferences, from traditional family dishes to modern experimental creations. It also provides insightful articles on cooking techniques, meal planning, ingredient pairing, and food presentation, ensuring readers have all the information they need to elevate their cooking. The user-friendly interface allows for easy navigation, enabling users to search for recipes by category, cuisine, or specific ingredients. Whether you're cooking for yourself, entertaining guests, or exploring new flavors, KitchenKurrent is dedicated to making culinary exploration enjoyable and accessible.\n - Target audience: The target audience for KitchenKurrent includes food enthusiasts of all skill levels, ranging from beginners who want to learn the basics of cooking to experienced home cooks seeking new recipes and advanced techniques. The portal also appeals to busy professionals and families in search of quick, nutritious meal ideas, as well as health-conscious individuals looking for recipes tailored to specific dietary needs. Additionally, culinary students and hobbyists who desire to stay updated on culinary trends and techniques also form a significant part of the audience.\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 - Key Ingredients\n\n## Preparation Guidelines\n - Step-by-Step Instructions\n - Preparation Tips and Tricks\n\nYou can change the headers and topics to make a them more coherent with the description of the article.\nStart text with first Heading H2 - Recipe Overview, IF it's applicable to the theme of the article.\n";
3
+ export declare const START_STEP = "highlighting the key points that will be discussed and the relevance of the topic";
4
+ export declare const END_STEP = "synthesizing the information presented throughout";
5
+ export declare const TARGET_AUDIENCE = "food lovers of all ages";
6
+ export declare const IMAGES_PROHIBITED_WORDS = "any numbers, image, slug, step, seo, hand / hands, men, women, human, people, chief, preparing, process, cooking, mixing, serving, tasting, rolling";
7
+ export declare const FILTERS_INFO: string;
@@ -0,0 +1 @@
1
+ "use strict";var e;const i="The article is written for the web portal.I will give you important information regarding the web portal:\n - Brief description: KitchenKurrent is an infotainment portal dedicated to culinary enthusiasts, offering a rich collection of recipes and culinary tips. It serves as a go-to resource for anyone eager to enhance their cooking skills and explore diverse cuisines.\n - Detailed description: KitchenKurrent is an online platform designed for food lovers, home cooks, and aspiring chefs looking to enrich their culinary experience. The portal features a comprehensive archive of easy-to-follow recipes spanning various cuisines and dietary preferences, from traditional family dishes to modern experimental creations. It also provides insightful articles on cooking techniques, meal planning, ingredient pairing, and food presentation, ensuring readers have all the information they need to elevate their cooking. The user-friendly interface allows for easy navigation, enabling users to search for recipes by category, cuisine, or specific ingredients. Whether you're cooking for yourself, entertaining guests, or exploring new flavors, KitchenKurrent is dedicated to making culinary exploration enjoyable and accessible.\n - Target audience: The target audience for KitchenKurrent includes food enthusiasts of all skill levels, ranging from beginners who want to learn the basics of cooking to experienced home cooks seeking new recipes and advanced techniques. The portal also appeals to busy professionals and families in search of quick, nutritious meal ideas, as well as health-conscious individuals looking for recipes tailored to specific dietary needs. Additionally, culinary students and hobbyists who desire to stay updated on culinary trends and techniques also form a significant part of the audience.\n\n",n="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 - Key Ingredients\n\n## Preparation Guidelines\n - Step-by-Step Instructions\n - Preparation Tips and Tricks\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",t="highlighting the key points that will be discussed and the relevance of the topic",o="synthesizing the information presented throughout",r="food lovers of all ages",a="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=a,exports.START_STEP=t,exports.TARGET_AUDIENCE=r,exports.ZERO_SECTION=n,exports.portalInfo=i;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt35turbo/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),p=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),i=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=i,exports.getFiltersPrompt=p,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt4oMini/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),i=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),p=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=p,exports.getFiltersPrompt=i,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,4 @@
1
+ import { GetOpenAiBasedImagePrompt, GetStableDiffusionImagePrompt } from 'src/common/types';
2
+ export declare const getStableDiffusionImagePrompt: GetStableDiffusionImagePrompt;
3
+ export declare const getOpenAiBasedImagePrompt: GetOpenAiBasedImagePrompt;
4
+ export declare const getOpenAiBasedImagePromptDalle2: GetOpenAiBasedImagePrompt;
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../common/prompts/images.js");const o=({title:o,alt:a,articleTitle:r})=>({prompt:`Award-winning hyper-real cinematic photo of a ${o}, ${a}, for an article ${r} from professional food photograph for a glossy recipe magazine, food style photography, glossy recipe magazine, photorealistic, ultra realistic, maximum detail, highly detailed, commercial photography, foreground focus, delish.com, allrecipes.com, foodnetwork.com, epicurious, instagram, 4K, 8K, volumetric light, cinematic, octane render, uplight, no blur, depth of field, dof, film, bokeh, foreground focus, 35mm photograph`,negativePrompt:e.SD_NEGATIVE_PROMPT}),a=({title:e,alt:o,articleTitle:a})=>`I NEED a hyper-real illustration of a ${e} at food style photography, ${o}, for an article ${a} for a glossy recipe magazine, photorealistic, ultra realistic, maximum detail, highly detailed, food style, food style photography, professional food photography, commercial photography, foreground focus, recipes.com, delish.com, epicurious, instagram, 4K, 8K, volumetric light, octane render, uplight, no blur, depth of field, dof, bokeh, foreground focus. Please exclude any: Photocamera, videocamera, Spotlight, soffit, ramp, scanners, strobe, soffit truss, film props, radio, cooking timer, watches, clocks, men, woman, people, hand, nands, leg, legs, font, username, error, words, letters, digits, autograph, trademark, name, easy-negative, cartoon, worst quality, low quality, blind, bad eyes, ugly eyes, dead eyes, greyscale, monochrome, vignette, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, censored, rabs, muscular, rib, blurry, blur, grainy, teeth, low resolution, lowres, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bw, bad photo, bad photography, bad art, morbid, ugly, asymmetrical, mutated malformed, mutilated, poorly lit, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, duplicate, airbrushed,, anime, semi-realistic, cgi, render, 3D, blender, digital art, manga, amateur, 3D, 3D Game, 3D Game Scene, 3D Character, bad hands, , bad body, bad face, bad teeth, bad arms, bad legs, deformities, drawing, deformed iris, deformed pupils, deformed, painting, crayon, sketch, graphite, impressionist, noisy, poorly drawn hands, poorly drawn face, poorly drawn eyes, mutation, bad proportions, cloned face, disfigured, gross proportions, malformed limbs, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck, incoherent from this hyper-real illustration of a ${e}`,r=({title:e})=>`\n\tPhotorealistic highly detailed image of ingredients for ${e}, arranged professionally as if for a food photography shoot. image should showcase maximum detail realism, with a focus on foreground, emulating the style of a high-definition, 8k resolution professional food photograph. lighting should be volumetric and uplit, with a depth of field and bokeh effect, avoiding any blur for clarity. overall aesthetic should be reminiscent of the Kodak Portrait 800 style.\n\tNegative Prompt:\n\teasy-negative, cartoon, worst quality, low quality, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, blurry, blur, grainy, teeth, low resolution, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, airbrushed, anime, semi-realistic, cgi, render, 3D, blender, manga, amateur, 3D, 3D Game, drawing, sketch\n`;exports.getOpenAiBasedImagePrompt=a,exports.getOpenAiBasedImagePromptDalle2=r,exports.getStableDiffusionImagePrompt=o;
@@ -0,0 +1,23 @@
1
+ export interface PageSeoData {
2
+ title: string;
3
+ description: string;
4
+ }
5
+ export declare enum PageNames {
6
+ Authors = "authors",
7
+ Home = "home",
8
+ NotFound = "not-found",
9
+ AboutUs = "about-us",
10
+ PrivacyPolicy = "privacy-policy",
11
+ Terms = "terms",
12
+ Sitemap = "sitemap"
13
+ }
14
+ export type PagesSeo = Record<PageNames, PageSeoData>;
15
+ export interface AuthorInfo {
16
+ name: string;
17
+ description: string;
18
+ meta_title: string;
19
+ meta_description: string;
20
+ }
21
+ export declare const PAGES_SEO: PagesSeo;
22
+ export declare const AUTHORS_INFO: AuthorInfo[];
23
+ export declare const AUTHORS_META: Record<string, PageSeoData>;
@@ -0,0 +1 @@
1
+ "use strict";var e;exports.PageNames=void 0,(e=exports.PageNames||(exports.PageNames={})).Authors="authors",e.Home="home",e.NotFound="not-found",e.AboutUs="about-us",e.PrivacyPolicy="privacy-policy",e.Terms="terms",e.Sitemap="sitemap";const i={[exports.PageNames.Authors]:{title:"Meet the Culinary Creators | KitchenKurrent",description:"Discover the talented chefs and food enthusiasts behind KitchenKurrent! Explore their favorite recipes and culinary adventures. 👩‍🍳🌟"},[exports.PageNames.Home]:{title:"Delicious Recipes & Culinary Tips | KitchenKurrent",description:"Welcome to KitchenKurrent! Dive into a world of mouth-watering recipes and culinary insights. Get inspired to cook scrumptious meals! 🍽️✨"},[exports.PageNames.NotFound]:{title:"Page Not Found | KitchenKurrent",description:"Oops! The page you're looking for doesn't exist. Let’s get you back on track to discover delicious recipes! 🚫🍲"},[exports.PageNames.AboutUs]:{title:"About KitchenKurrent | Your Culinary Companion",description:"Learn more about KitchenKurrent and our passion for food! Join us on a flavorful journey of recipes, tips, and culinary delights. 🌍❤️"},[exports.PageNames.PrivacyPolicy]:{title:"Privacy Policy | KitchenKurrent",description:"Your privacy matters to us! Read our Privacy Policy to see how we protect your information while you explore delicious recipes. 🔒📜"},[exports.PageNames.Terms]:{title:"Terms of Service | KitchenKurrent",description:"Stay informed! Check out our Terms of Service to know the guidelines and rules as you enjoy the rich flavors of KitchenKurrent. 📋⚖️"},[exports.PageNames.Sitemap]:{title:"Sitemap | KitchenKurrent",description:"Navigate easily! Our Sitemap helps you find your favorite recipes and culinary content quickly. 🍽️🗺️"}},a=[{name:"Vikram Chandra",description:"Vikram Chandra is a culinary expert and food writer from Mumbai, India. With over a decade of experience in the culinary world, Vikram specializes in Indian cuisine and fusion recipes. He has contributed to several renowned food magazines and has a passion for sharing authentic and innovative recipes on his blog.",meta_title:"Vikram Chandra - Culinary Expert and Recipe Creator | KitchenKurrent",meta_description:"Explore the delicious Indian and fusion recipes by Vikram Chandra, a culinary expert with over 10 years of experience. Discover authentic cooking methods and tips at KitchenKurrent."},{name:"Anjali Gupta",description:"Anjali Gupta is a food enthusiast and recipe developer based in New Delhi. With her background in nutrition and culinary arts, Anjali focuses on healthy, wholesome recipes that celebrate vibrant Indian flavors. She is an advocate for clean eating and sustainable cooking practices.",meta_title:"Anjali Gupta - Health-Conscious Recipe Developer | KitchenKurrent",meta_description:"Join Anjali Gupta for healthy and flavorful recipes that highlight the best of Indian cuisine. Discover nutritious cooking tips and wholesome ingredients at KitchenKurrent."},{name:"Rajesh Mehta",description:"Rajesh Mehta is an experienced food blogger and chef hailing from Bengaluru. With a unique flair for traditional Indian dishes and modern cooking techniques, Rajesh brings a fresh perspective to Indian culinary arts. His recipes have been featured in various cookbooks and food blogs.",meta_title:"Rajesh Mehta - Innovative Chef and Food Blogger | KitchenKurrent",meta_description:"Discover innovative Indian recipes and culinary inspiration from Rajesh Mehta, a talented chef from Bengaluru. Cook authentic dishes with a modern twist at KitchenKurrent."},{name:"Priya Sharma",description:"Priya Sharma is a passionate home cook and food writer based in Kolkata. With roots in Bengali cuisine, Priya shares traditional recipes infused with contemporary elements. She believes in the importance of food as a means of cultural expression and loves to showcase regional Indian delicacies.",meta_title:"Priya Sharma - Bengali Cuisine Aficionado | KitchenKurrent",meta_description:"Explore the rich flavors of Bengali cuisine with Priya Sharma. Discover unique recipes and cultural stories that bring Indian culinary traditions to life at KitchenKurrent."},{name:"Aditi Singh",description:"Aditi Singh is a seasoned Indian chef and cookbook author residing in Chennai. With extensive experience in both home and professional kitchens, Aditi specializes in South Indian cooking. Her recipes are not only delicious but also emphasize the use of fresh, local ingredients.",meta_title:"Aditi Singh - South Indian Culinary Expert | KitchenKurrent",meta_description:"Dive into the flavors of South Indian cuisine with Aditi Singh. Enjoy traditional recipes that celebrate local ingredients and cooking techniques at KitchenKurrent."},{name:"Rahul Nambiar",description:"Rahul Nambiar is a food stylist and recipe creator from Hyderabad. With a keen eye for aesthetics and a passion for cooking, Rahul crafts visually stunning dishes that taste as good as they look. He shares his creative process and culinary tips through his recipes.",meta_title:"Rahul Nambiar - Food Stylist and Recipe Aficionado | KitchenKurrent",meta_description:"Discover visually stunning and delicious recipes with Rahul Nambiar, a food stylist from Hyderabad. Elevate your culinary presentations with his expert tips at KitchenKurrent."},{name:"Simran Kaur",description:"Simran Kaur is a food journalist and recipe developer from Chandigarh. With a background in food photography, she combines her love for visuals and cooking to create compelling content. Simran highlights traditional Punjabi recipes along with modern adaptations.",meta_title:"Simran Kaur - Punjabi Recipe Developer and Food Journalist | KitchenKurrent",meta_description:"Savor authentic Punjabi recipes and modern adaptations with Simran Kaur. Enjoy her unique culinary perspective and stunning food photography at KitchenKurrent."},{name:"Meera Desai",description:"Meera Desai is a professional chef and culinary instructor based in Pune. With a background in hospitality and a wealth of knowledge in Indian and international cuisines, Meera shares her culinary expertise through a variety of recipes and cooking techniques.",meta_title:"Meera Desai - Culinary Instructor and Professional Chef | KitchenKurrent",meta_description:"Learn from Meera Desai, a professional chef and culinary instructor from Pune. Explore diverse recipes and cooking techniques tailored for all skill levels at KitchenKurrent."},{name:"Arjun Bhatia",description:"Arjun Bhatia is a food researcher and recipe creator from Jaipur. Specializing in Rajasthan's rich culinary heritage, Arjun shares recipes that are steeped in tradition yet accessible to modern cooks. His dedication to preserving the regional culinary arts makes him a valuable contributor to KitchenKurrent.",meta_title:"Arjun Bhatia - Rajasthani Cuisine Specialist | KitchenKurrent",meta_description:"Explore the vibrant flavors of Rajasthani cuisine with Arjun Bhatia. Discover traditional recipes and cooking methods that celebrate India's rich culinary heritage at KitchenKurrent."},{name:"Neha Sethi",description:"Neha Sethi is a young and dynamic food blogger from Surat, known for her innovative take on Indian street food. With a background in culinary arts, Neha experiments with bold flavors and shares her creations that inspire home cooks to recreate their favorite street food dishes.",meta_title:"Neha Sethi - Street Food Innovator and Recipe Creator | KitchenKurrent",meta_description:"Indulge in innovative street food recipes with Neha Sethi, a talented food blogger from Surat. Transform everyday ingredients into delightful street food masterpieces at KitchenKurrent."},{name:"Priya Krishna",description:"Priya Krishna is a talented Indian-American food writer and cookbook author known for her creative recipes that blend traditional Indian spices with modern culinary techniques. With a degree from the University of New York, she has contributed to various food publications and is passionate about making Indian cuisine accessible to everyone.",meta_title:"Priya Krishna - Indian-American Culinary Expert",meta_description:"Explore delicious and creative recipes by Priya Krishna, an expert in blending traditional Indian flavors with contemporary cooking techniques."},{name:"Sanjana Patel",description:"Sanjana Patel is a passionate food blogger of Indian origin who specializes in vegetarian and vegan recipes. With years of culinary experience, she enjoys experimenting with flavors and introducing healthy twists to classic dishes. Her blog has garnered a significant following for its vibrant photography and easy-to-follow recipes.",meta_title:"Sanjana Patel - Vegetarian Culinary Aficionado",meta_description:"Discover vegetarian and vegan recipes from Sanjana Patel, a culinary expert known for her creative twists on classic Indian dishes."},{name:"Karan Kaur",description:"Karan Kaur is a professional chef and culinary educator with roots in Indian cuisine. Having trained in top culinary schools in India and abroad, Karan specializes in Indian street food and traditional recipes, aiming to share the rich history of Indian gastronomy with food enthusiasts around the world.",meta_title:"Karan Kaur - Indian Culinary Educator and Chef",meta_description:"Learn about Indian street food and traditional recipes with Karan Kaur, a talented chef dedicated to educating food lovers on Indian gastronomy."},{name:"Aishwarya Sharma",description:"Aishwarya Sharma is an experienced food stylist and recipe developer from India. With a background in food science, she combines her knowledge of flavors with artistic presentation to create visually stunning recipes. Aishwarya aims to inspire home cooks to make their meals look as good as they taste.",meta_title:"Aishwarya Sharma - Food Stylist and Recipe Developer",meta_description:"Explore visually stunning recipes and learn the art of food styling with Aishwarya Sharma, an expert in combining flavors with aesthetics."},{name:"Deepak Sethi",description:"Deepak Sethi is a gourmet chef with a passion for fusion cooking, blending Indian and international cuisines. With over a decade of culinary experience, he has worked in numerous prestigious restaurants and is now focused on sharing his innovative recipes through his articles and cookbooks.",meta_title:"Deepak Sethi - Fusion Culinary Innovator",meta_description:"Experience innovative fusion recipes from Deepak Sethi, a gourmet chef blending Indian and international flavors for culinary excellence."},{name:"Neha Desai",description:"Neha Desai is a freelance food writer and cooking instructor with a love for traditional Indian cooking. With a strong emphasis on family recipes, Neha shares the stories behind her dishes, encouraging readers to connect with their culinary heritage.",meta_title:"Neha Desai - Traditional Indian Culinary Writer",meta_description:"Connect with your culinary heritage through traditional Indian recipes by Neha Desai, a passionate food writer sharing family stories and flavors."},{name:"Arjun Bansal",description:"Arjun Bansal is a food enthusiast and home cook of Indian descent, known for his delicious curries and regional specialties. His approachable recipes focus on authenticity and simplicity, making it easy for anyone to enjoy Indian cooking at home.",meta_title:"Arjun Bansal - Home Cook and Indian Curry Specialist",meta_description:"Enjoy authentic Indian cooking with Arjun Bansal, a home cook specializing in delicious curries and regional delicacies, perfect for every kitchen."},{name:"Riya Choudhury",description:"Riya Choudhury is a vibrant food blogger and Indian culinary artist, focusing on healthy recipes that highlight local ingredients. With a knack for seasonal cooking, Riya's articles provide readers with sustainable ways to enjoy Indian cuisine while caring for the environment.",meta_title:"Riya Choudhury - Sustainable Indian Food Blogger",meta_description:"Discover healthy and sustainable Indian recipes with Riya Choudhury, a food blogger who emphasizes local ingredients and seasonal cooking."},{name:"Vikram Joshi",description:"Vikram Joshi is a knowledgeable chef with a specialization in Ayurvedic cooking. His holistic approach combines ancient Indian practices with modern culinary techniques, providing articles that promote wellness and the nutritional benefits of Indian cuisine.",meta_title:"Vikram Joshi - Ayurvedic Cooking Expert",meta_description:"Explore holistic and nutritious Indian recipes with Vikram Joshi, an expert in Ayurvedic cooking promoting wellness through culinary art."},{name:"Fatima Mehta",description:"Fatima Mehta is a talented food writer and recipe creator known for her innovative takes on classic Indian desserts. With a background in pastry arts, Fatima shares her sweet creations, tips, and techniques for baking and crafting delightful Indian sweets.",meta_title:"Fatima Mehta - Indian Dessert Specialist",meta_description:"Indulge in delectable Indian desserts with Fatima Mehta, a pastry art expert sharing innovative recipes and tips for sweet culinary delights."},{name:"Sana Ahmed",description:"Sana Ahmed is a passionate food writer and chef with over a decade of experience in Indian cuisine. She draws from her upbringing in a traditional Indian household to create authentic recipes that celebrate the richness of Indian flavors. Her culinary articles often incorporate personal anecdotes, making her recipes accessible and enjoyable for home cooks of all levels.",meta_title:"Sana Ahmed - Indian Cuisine Expert | KitchenKurrent",meta_description:"Discover authentic Indian recipes and culinary insights from Sana Ahmed, a seasoned food writer and chef dedicated to sharing the richness of Indian cuisine."},{name:"Ravi Sharma",description:"Ravi Sharma is a culinary enthusiast and food blogger known for his innovative twists on classic Indian recipes. With a formal culinary education and extensive experience working in various kitchens across India, he aims to elevate home cooking by introducing modern techniques while staying true to traditional flavors.",meta_title:"Ravi Sharma - Culinary Innovator | KitchenKurrent",meta_description:"Explore innovative recipes and cooking tips from Ravi Sharma, a culinary enthusiast with a passion for modernizing traditional Indian cuisine at KitchenKurrent."},{name:"Arjun Malhotra",description:"Arjun Malhotra is a food writer and cultural historian who explores the intersection of food and heritage. With years of experience in food journalism, his articles delve into traditional Indian dishes and their historical significance, providing readers with a deeper understanding of the culinary landscape of India.",meta_title:"Arjun Malhotra - Food Writer & Historian | KitchenKurrent",meta_description:"Dive into the cultural and historical significance of Indian cuisine with Arjun Malhotra, our expert food writer at KitchenKurrent."},{name:"Nisha Patel",description:"Nisha Patel is a home cook and recipe developer who specializes in fusion cuisine. Drawing inspiration from her Indian roots and global travel, Nisha creates unique recipes that blend Indian flavors with international culinary trends. Her engaging writing style inspires readers to experiment in their own kitchens.",meta_title:"Nisha Patel - Fusion Cuisine Creator | KitchenKurrent",meta_description:"Discover unique fusion recipes that blend Indian flavors with global cuisine, crafted by Nisha Patel, a passionate recipe developer at KitchenKurrent."},{name:"Karan Singh",description:"Karan Singh is a cookbook author and food critic with a flair for reviving forgotten Indian recipes. His journey as a chef has taken him through various regions of India, and he focuses on regional specialties. Karan's articles not only feature recipes but also highlight the stories behind them, bringing readers closer to India's culinary traditions.",meta_title:"Karan Singh - Cookbook Author & Food Critic | KitchenKurrent",meta_description:"Revive forgotten Indian recipes with Karan Singh, a cookbook author and food critic dedicated to preserving culinary traditions at KitchenKurrent."},{name:"Leela Iyer",description:"Leela Iyer is a nutritionist and food blogger committed to healthy cooking. With a focus on Indian cuisine, her recipes are designed to promote wellness without sacrificing flavor. Leela's articles often include nutritional insights and tips for healthier meal preparation, making her a trusted voice in the health food space.",meta_title:"Leela Iyer - Nutritionist & Healthy Food Blogger | KitchenKurrent",meta_description:"Embrace healthier cooking with Leela Iyer, a nutritionist and food blogger sharing nutritious Indian recipes at KitchenKurrent."},{name:"Anita Chawla",description:"Anita Chawla is an expert in regional Indian cooking and a food photographer. With over eight years of experience, she shares her love for regional spices and techniques through her recipes, inspiring readers to explore the diverse flavors of Indian cuisine.",meta_title:"Anita Chawla - Regional Indian Cooking Expert | KitchenKurrent",meta_description:"Explore the diverse flavors of Indian cuisine with Anita Chawla, an expert in regional cooking and captivating food photography at KitchenKurrent."},{name:"Neelam Verma",description:"Neelam Verma is an experienced food stylist and recipe developer famous for her vegetarian Indian recipes. With a background in culinary arts and a passion for creating beautiful dishes, she combines traditional recipes with contemporary aesthetics, making every meal a visual delight.",meta_title:"Neelam Verma - Food Stylist & Recipe Developer | KitchenKurrent",meta_description:"Create visually stunning vegetarian Indian dishes with Neelam Verma, a talented food stylist and recipe developer at KitchenKurrent."},{name:"Mira Kapoor",description:"Mira Kapoor is a seasoned culinary expert with over 15 years of experience in traditional Indian cooking. Born in Mumbai and now residing in California, she blends authentic recipes with modern twists that cater to diverse palates. She has authored several cookbooks and runs a popular blog where she shares her passion for food and culture.",meta_title:"Mira Kapoor - Culinary Expert at KitchenKurrent",meta_description:"Discover the exquisite recipes and culinary insights from Mira Kapoor, an experienced Indian cuisine expert and author. Join her on a flavorful journey at KitchenKurrent."},{name:"Ravi Singh",description:"Ravi Singh is a professional chef turned food writer with a passion for exploring Indian cuisine's regional diversity. With a culinary degree from a reputed institute in Delhi, he combines traditional techniques with innovative approaches to create engaging recipes. Ravi is dedicated to making cooking accessible and enjoyable for everyone.",meta_title:"Ravi Singh - Indian Cuisine Aficionado at KitchenKurrent",meta_description:"Explore Ravi Singh's flavorful recipes and culinary tips, celebrating the diversity of Indian cuisine. Join him at KitchenKurrent for delightful culinary experiences."},{name:"Anjali Menon",description:"Anjali Menon is a food blogger and nutritionist who focuses on healthy Indian recipes. With a background in dietetics, she emphasizes wholesome, nutritious cooking using traditional ingredients. Based in Bangalore, Anjali aims to inspire others to embrace healthy eating without compromising on taste.",meta_title:"Anjali Menon - Nutritionist and Recipe Creator at KitchenKurrent",meta_description:"Delve into healthy and delicious Indian recipes with Anjali Menon, a nutritionist and food blogger at KitchenKurrent. Transform your culinary habits today!"},{name:"Harisha Rao",description:"Harisha Rao, a home chef and culinary educator, specializes in creating authentic Indian home-cooked meals. With her rich upbringing in a traditional family in Hyderabad, she emphasizes the importance of heritage in cooking. Harisha runs cooking classes and shares her secrets to perfecting Indian dishes on her culinary platform.",meta_title:"Harisha Rao - Home Chef and Culinary Educator at KitchenKurrent",meta_description:"Join Harisha Rao on KitchenKurrent to learn authentic Indian home-cooked recipes. Embrace the art of Indian cooking with her expert guidance and tips."},{name:"Sunil Mehta",description:"Sunil Mehta is a food stylist and photographer from Delhi. He merges his love for food with visual storytelling, crafting beautiful dishes that appeal to the eyes and taste buds. Sunil shares his creative recipes and styling tips, making cuisine an art form at KitchenKurrent.",meta_title:"Sunil Mehta - Food Stylist and Photographer at KitchenKurrent",meta_description:"Explore the intersection of art and cuisine with Sunil Mehta at KitchenKurrent. Discover visually stunning recipes and styling inspiration from a food stylist."},{name:"Poonam Sethi",description:"Poonam Sethi is a passionate food writer and recipe developer, known for her flavorful vegetarian Indian dishes. Raised in a vegetarian family in Punjab, she brings traditional recipes to life while incorporating global ingredients. Poonam encourages sustainable cooking practices through her writing.",meta_title:"Poonam Sethi - Vegetarian Recipe Developer at KitchenKurrent",meta_description:"Discover delicious vegetarian Indian recipes with Poonam Sethi at KitchenKurrent. Embrace sustainable cooking and flavor-packed dishes like never before!"},{name:"Amit Chatterjee",description:"Amit Chatterjee is a food critic and culinary historian who dives deep into the rich history of Indian cuisine. His articles explore the origins and evolution of traditional recipes, merging storytelling with cooking. Amit is dedicated to preserving India’s culinary heritage and sharing it with a global audience.",meta_title:"Amit Chatterjee - Culinary Historian at KitchenKurrent",meta_description:"Join Amit Chatterjee at KitchenKurrent as he explores the rich history of Indian cuisine through insightful articles and delicious recipes. Perfect for food lovers!"},{name:"Neeta Agarwal",description:"Neeta Agarwal is a dessert enthusiast and cookbook author known for her innovative Indian sweets. From her early days in Kolkata, she has dedicated her life to mastering traditional confections and reinventing them for modern tastes. Neeta shares her passion for sweets with readers at KitchenKurrent.",meta_title:"Neeta Agarwal - Dessert Expert at KitchenKurrent",meta_description:"Indulge your sweet tooth with delightful desserts from Neeta Agarwal at KitchenKurrent. Explore innovative Indian sweets and dessert recipes today!"},{name:"Karan Joshi",description:"Karan Joshi is a barbecue and grilling expert from Mumbai, specializing in grilling Indian-inspired dishes. With years of experience in culinary arts and outdoor cooking, he shares recipes that marry traditional flavors with grilling techniques. Karan fuels the passion for smoky delights at KitchenKurrent.",meta_title:"Karan Joshi - Grilling Expert at KitchenKurrent",meta_description:"Join Karan Joshi at KitchenKurrent for delicious Indian grilling recipes and tips. Discover the savory world of barbecue like never before!"},{name:"Sonal Bansal",description:"Sonal Bansal is a travel and food writer who explores the intersection between culinary tourism and Indian food. Traveling across India, she documents her gastronomic adventures, sharing recipes and stories that reflect the vibrant culture. Sonal inspires readers to explore food beyond just the kitchen.",meta_title:"Sonal Bansal - Travel and Food Writer at KitchenKurrent",meta_description:"Explore India’s rich culinary landscape with Sonal Bansal at KitchenKurrent. Discover regional recipes and stories that celebrate food and culture!"},{name:"Emily Chen",description:"Emily Chen is a renowned food stylist and culinary writer hailing from Shanghai, China. With over a decade of experience in the food industry, she combines her passion for traditional Chinese cuisine with modern culinary techniques. She has contributed to numerous international food publications and has a popular cooking channel that showcases her exquisite recipes.",meta_title:"Emily Chen | Culinary Expert & Recipe Developer at KitchenKurrent",meta_description:"Discover the delicious world of traditional Chinese cuisine with Emily Chen, a culinary expert at KitchenKurrent. Explore her unique recipes and cooking tips!"},{name:"Liam O'Sullivan",description:"Liam O'Sullivan, an Irish chef and food writer, is known for his hearty and rustic recipes that celebrate the essence of home cooking. With five years of professional culinary experience and a love for fresh, local ingredients, Liam shares his journey through food in his engaging articles.",meta_title:"Liam O'Sullivan | Irish Chef & Rustic Recipe Specialist at KitchenKurrent",meta_description:"Join Liam O'Sullivan on a culinary journey through wholesome Irish recipes at KitchenKurrent. Experience his authentic cooking style today!"},{name:"Sofia Rossi",description:"Sofia Rossi is a celebrated Italian food blogger and chef based in Rome. With her family’s culinary traditions as her foundation, she has spent over 12 years perfecting the art of Italian cooking and sharing her insights through her written works, workshops, and cooking classes.",meta_title:"Sofia Rossi | Italian Culinary Writer & Recipe Curator at KitchenKurrent",meta_description:"Experience the richness of Italian cuisine with Sofia Rossi at KitchenKurrent. Discover authentic recipes and secrets to Italian cooking!"},{name:"Rajesh Sharma",description:"Rajesh Sharma is a well-respected Indian chef and culinary author known for his innovative take on traditional Indian dishes. With over 15 years in the culinary world, he brings diversity and a global perspective to his recipes, making them accessible and exciting for all home cooks.",meta_title:"Rajesh Sharma | Indian Cuisine Expert & Recipe Innovator at KitchenKurrent",meta_description:"Explore vibrant Indian flavors with Rajesh Sharma at KitchenKurrent. Uncover his unique recipes and cultural insights today!"},{name:"Aiko Tanaka",description:"Aiko Tanaka is a Japanese culinary expert and food writer based in Tokyo. With extensive training in traditional Japanese cooking and an innovative approach to sushi and ramen, Aiko shares her passion for Japanese flavors through her writing, captivating readers worldwide.",meta_title:"Aiko Tanaka | Japanese Culinary Writer & Flavor Specialist at KitchenKurrent",meta_description:"Dive into the art of Japanese cooking with Aiko Tanaka at KitchenKurrent. Explore her authentic recipes and culinary insights now!"},{name:"Carlos Mendes",description:"Carlos Mendes is a Brazilian chef and food journalist specializing in Latin American cuisine. With a background in food science and over 8 years of experience in renowned kitchens, Carlos helps readers explore the diverse flavors and techniques found throughout Brazil and beyond.",meta_title:"Carlos Mendes | Latin Cuisine Writer & Flavor Enthusiast at KitchenKurrent",meta_description:"Experience the flavors of Latin America with Carlos Mendes at KitchenKurrent. Discover his unique recipes and culinary adventures!"},{name:"Tara Williams",description:"Tara Williams is a passionate American baker and recipe developer known for her delightful dessert creations. With over 10 years of baking experience and a strong focus on organic ingredients, Tara shares her sweet treats alongside helpful baking tips and tricks.",meta_title:"Tara Williams | American Baker & Dessert Specialist at KitchenKurrent",meta_description:"Indulge in scrumptious desserts with Tara Williams at KitchenKurrent. Explore her delightful recipes and baking tips to sweeten your day!"},{name:"Anya Petrov",description:"Anya Petrov is a Russian culinary writer and expert in Eastern European cuisine. With rich heritage and years spent perfecting her grandmother's recipes, Anya's articles offer a glimpse into traditional Russian cooking, combined with modern adaptations.",meta_title:"Anya Petrov | Eastern European Cuisine Writer & Recipe Specialist at KitchenKurrent",meta_description:"Discover the heart of Russian cuisine with Anya Petrov at KitchenKurrent. Enjoy her authentic recipes and cultural stories!"},{name:"Nadia Khoury",description:"Nadia Khoury is a Lebanese chef and food critic based in Beirut, specializing in Mediterranean cuisine. With more than 10 years of experience in culinary arts and a knack for blending spices, Nadia brings traditional Middle Eastern flavors into contemporary home cooking.",meta_title:"Nadia Khoury | Mediterranean Cuisine Expert & Recipe Writer at KitchenKurrent",meta_description:"Savor the tastes of Lebanon and beyond with Nadia Khoury at KitchenKurrent. Discover her spice-infused recipes and culinary insights!"},{name:"Lucas Meyer",description:"Lucas Meyer is a contemporary Australian chef and food enthusiast widely recognized for his focus on sustainable and seasonal cooking. After years of working in award-winning restaurants, he now shares his expertise and love for fresh ingredients through well-crafted articles.",meta_title:"Lucas Meyer | Australian Culinary Innovator & Recipe Writer at KitchenKurrent",meta_description:"Explore sustainable cooking with Lucas Meyer at KitchenKurrent. Unearth his delicious recipes inspired by fresh Australian ingredients!"},{name:"Hannah Lee",description:"Hannah Lee is a culinary expert with over 10 years of experience in the food industry. Born in Seoul and now based in New York City, she specializes in Asian fusion recipes that bring traditional flavors to modern dining. Hannah has contributed articles to several food magazines and blogs, sharing her passion for cooking.",meta_title:"Hannah Lee - Asian Fusion Recipes at KitchenKurrent",meta_description:"Discover delicious Asian fusion recipes by Hannah Lee, a culinary expert with over 10 years of experience. Explore her unique take on traditional flavors at KitchenKurrent."},{name:"Luca Rossi",description:"Luca Rossi, an Italian chef, has spent the last 15 years perfecting the art of Italian cooking. With a culinary degree from the Culinary Institute of Florence, he shares authentic recipes and cooking techniques that celebrate the richness of Italian heritage. His articles are a feast for the eyes and the palate.",meta_title:"Luca Rossi - Authentic Italian Recipes at KitchenKurrent",meta_description:"Explore the authentic Italian recipes of Luca Rossi, a chef with 15 years of experience. Dive into the rich culinary traditions of Italy at KitchenKurrent."},{name:"Fatima El-Amin",description:"Fatima El-Amin is a passionate food writer and home chef specializing in Middle Eastern cuisine. With roots in Egypt, she brings vibrant flavors and health-conscious meals to her audience. Fatima's articles educate and inspire readers to embrace the art of cooking with fresh herbs and spices.",meta_title:"Fatima El-Amin - Middle Eastern Culinary Delights at KitchenKurrent",meta_description:"Delve into the vibrant world of Middle Eastern cuisine with Fatima El-Amin. Discover fresh and flavorful recipes at KitchenKurrent."},{name:"Oliver Thompson",description:"Oliver Thompson is a food stylist and personal chef from Canada. With a background in nutrition and food science, he focuses on healthy, sustainable recipes that cater to all dietary preferences. His writing blends creativity with practicality, making cooking accessible and enjoyable for everyone.",meta_title:"Oliver Thompson - Health-Conscious Recipes at KitchenKurrent",meta_description:"Join Oliver Thompson on a journey to healthy, delicious cooking. Discover sustainable recipes that cater to all dietary needs at KitchenKurrent."},{name:"Sophie Martínez",description:"Sophie Martínez is a food writer and culinary artist from Mexico. With over 8 years of experience, her expertise lies in Mexican street food and traditional recipes. Sophie’s articles bring the flavors and stories of her homeland right to your kitchen.",meta_title:"Sophie Martínez - Mexican Street Food Recipes at KitchenKurrent",meta_description:"Experience the vibrant flavors of Mexico with Sophie Martínez. Discover traditional street food recipes at KitchenKurrent."},{name:"Jamal Burns",description:"Jamal Burns is a renowned BBQ pitmaster and food blogger from the southern United States. With over 12 years in the grilling business, he is dedicated to sharing his passion for smoked meats and traditional BBQ techniques. Jamal's recipes are perfect for both novices and seasoned grillers.",meta_title:"Jamal Burns - BBQ Mastery and Recipes at KitchenKurrent",meta_description:"Master the art of BBQ with Jamal Burns. Find delicious grilling recipes and tips for perfect smoked meats at KitchenKurrent."},{name:"Aisha Khan",description:"Aisha Khan is a culinary influencer and food stylist from India who specializes in vegetarian and vegan recipes. With a degree in Food Technology, Aisha is passionate about health and sustainability, creating innovative dishes that are full of flavor and nutrition.",meta_title:"Aisha Khan - Creative Vegetarian Recipes at KitchenKurrent",meta_description:"Explore creative vegetarian and vegan treats with Aisha Khan. Embrace healthy and sustainable cooking at KitchenKurrent."},{name:"Marcus O’Brien",description:"Marcus O’Brien is an Irish chef with a penchant for comfort food that tells a story. For over a decade, he has worked in renowned restaurants around Europe, bringing traditional Irish recipes to contemporary tables. His writing reflects a love for storytelling through food.",meta_title:"Marcus O’Brien - Comfort Food from Ireland at KitchenKurrent",meta_description:"Discover comforting Irish recipes with Marcus O’Brien. Experience the warmth and tradition of Ireland at KitchenKurrent."},{name:"Naomi Yoshida",description:"Naomi Yoshida is a Japanese food photographer and blogger with a deep appreciation for the art of Japanese cooking. Her extensive knowledge of traditional techniques and seasonal ingredients allows her to create stunning dishes and share their cultural significance through her writing.",meta_title:"Naomi Yoshida - Japanese Culinary Art at KitchenKurrent",meta_description:"Dive into the art of Japanese cooking with Naomi Yoshida. Discover traditional recipes and their cultural significance at KitchenKurrent."},{name:"Carlos Mendez",description:"Carlos Mendez is a Colombian chef who brings the vibrant flavors of South America to life. With 15 years of professional cooking experience, he specializes in Colombian traditional dishes, showcasing the diversity and richness of Latina cuisine in an approachable way.",meta_title:"Carlos Mendez - South American Recipes at KitchenKurrent",meta_description:"Experience the vibrant flavors of Colombia with Carlos Mendez. Discover traditional South American recipes at KitchenKurrent."}],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:#4b8c2c;--theme-color-8:#7fbf5e;--theme-color-7:#a3d9bf;--theme-color-6:#e1f5c4;--theme-color-5:#d1e6a8;--theme-color-3:#f0f4ea;--theme-color-2:#f9f9f9;--color-bg-layout:#fafafa;--color-bg-hover:#e8e8e8;--article-border-radius:25px;--btn-border-radius:15px;--category-border-radius:25px;}
@@ -0,0 +1 @@
1
+ @import "sizing.css";@import "colors.css";@import "fonts.css";@import "theme.css";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tedo-publisher",
3
- "version": "1.3.279",
3
+ "version": "1.3.281",
4
4
  "description": "Package for config files and reusable code/components between projects",
5
5
  "main": "dist/index.js",
6
6
  "files": [