tedo-publisher 1.3.280 → 1.3.282

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. package/dist/kitchenkurrent/data.d.ts +266 -0
  2. package/dist/kitchenkurrent/data.js +1 -0
  3. package/dist/kitchenkurrent/filters.d.ts +28 -0
  4. package/dist/kitchenkurrent/filters.js +1 -0
  5. package/dist/kitchenkurrent/helpers.d.ts +3 -0
  6. package/dist/kitchenkurrent/helpers.js +1 -0
  7. package/dist/kitchenkurrent/index.d.ts +15 -0
  8. package/dist/kitchenkurrent/index.js +1 -0
  9. package/dist/kitchenkurrent/prompts/data.d.ts +7 -0
  10. package/dist/kitchenkurrent/prompts/data.js +1 -0
  11. package/dist/kitchenkurrent/prompts/gpt35turbo/articles.d.ts +6 -0
  12. package/dist/kitchenkurrent/prompts/gpt35turbo/articles.js +1 -0
  13. package/dist/kitchenkurrent/prompts/gpt4oMini/articles.d.ts +6 -0
  14. package/dist/kitchenkurrent/prompts/gpt4oMini/articles.js +1 -0
  15. package/dist/kitchenkurrent/prompts/images.d.ts +4 -0
  16. package/dist/kitchenkurrent/prompts/images.js +1 -0
  17. package/dist/kitchenkurrent/seo.d.ts +23 -0
  18. package/dist/kitchenkurrent/seo.js +1 -0
  19. package/dist/kitchenkurrent/styles/colors.css +1 -0
  20. package/dist/kitchenkurrent/styles/fonts.css +1 -0
  21. package/dist/kitchenkurrent/styles/global.css +1 -0
  22. package/dist/kitchenkurrent/styles/sizing.css +1 -0
  23. package/dist/kitchenkurrent/styles/theme.css +1 -0
  24. package/dist/kitchenkurrent/styles/vars.css +1 -0
  25. package/dist/luminousnook/data.d.ts +138 -0
  26. package/dist/luminousnook/data.js +1 -0
  27. package/dist/luminousnook/filters.d.ts +28 -0
  28. package/dist/luminousnook/filters.js +1 -0
  29. package/dist/luminousnook/helpers.d.ts +3 -0
  30. package/dist/luminousnook/helpers.js +1 -0
  31. package/dist/luminousnook/index.d.ts +15 -0
  32. package/dist/luminousnook/index.js +1 -0
  33. package/dist/luminousnook/prompts/data.d.ts +7 -0
  34. package/dist/luminousnook/prompts/data.js +1 -0
  35. package/dist/luminousnook/prompts/gpt35turbo/articles.d.ts +6 -0
  36. package/dist/luminousnook/prompts/gpt35turbo/articles.js +1 -0
  37. package/dist/luminousnook/prompts/gpt4oMini/articles.d.ts +6 -0
  38. package/dist/luminousnook/prompts/gpt4oMini/articles.js +1 -0
  39. package/dist/luminousnook/prompts/images.d.ts +4 -0
  40. package/dist/luminousnook/prompts/images.js +1 -0
  41. package/dist/luminousnook/seo.d.ts +23 -0
  42. package/dist/luminousnook/seo.js +1 -0
  43. package/dist/luminousnook/styles/colors.css +1 -0
  44. package/dist/luminousnook/styles/fonts.css +1 -0
  45. package/dist/luminousnook/styles/global.css +1 -0
  46. package/dist/luminousnook/styles/sizing.css +1 -0
  47. package/dist/luminousnook/styles/theme.css +1 -0
  48. package/dist/luminousnook/styles/vars.css +1 -0
  49. package/package.json +1 -1
@@ -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";
@@ -0,0 +1,138 @@
1
+ export declare const dataStructure: {
2
+ beautifulHomes: {
3
+ title: string;
4
+ description: string;
5
+ slug: string;
6
+ children: {
7
+ modernArchitecture: {
8
+ title: string;
9
+ description: string;
10
+ slug: string;
11
+ children: null;
12
+ };
13
+ cozyInteriors: {
14
+ title: string;
15
+ description: string;
16
+ slug: string;
17
+ children: null;
18
+ };
19
+ ecoFriendlyDesign: {
20
+ title: string;
21
+ description: string;
22
+ slug: string;
23
+ children: null;
24
+ };
25
+ other: {
26
+ title: string;
27
+ description: string;
28
+ slug: string;
29
+ children: null;
30
+ };
31
+ };
32
+ };
33
+ stunningLocations: {
34
+ title: string;
35
+ description: string;
36
+ slug: string;
37
+ children: {
38
+ hiddenGems: {
39
+ title: string;
40
+ description: string;
41
+ slug: string;
42
+ children: null;
43
+ };
44
+ iconicLandmarks: {
45
+ title: string;
46
+ description: string;
47
+ slug: string;
48
+ children: null;
49
+ };
50
+ naturalWonders: {
51
+ title: string;
52
+ description: string;
53
+ slug: string;
54
+ children: null;
55
+ };
56
+ other: {
57
+ title: string;
58
+ description: string;
59
+ slug: string;
60
+ children: null;
61
+ };
62
+ };
63
+ };
64
+ designInspiration: {
65
+ title: string;
66
+ description: string;
67
+ slug: string;
68
+ children: {
69
+ colorPalettes: {
70
+ title: string;
71
+ description: string;
72
+ slug: string;
73
+ children: null;
74
+ };
75
+ furnitureTrends: {
76
+ title: string;
77
+ description: string;
78
+ slug: string;
79
+ children: null;
80
+ };
81
+ decorIdeas: {
82
+ title: string;
83
+ description: string;
84
+ slug: string;
85
+ children: null;
86
+ };
87
+ other: {
88
+ title: string;
89
+ description: string;
90
+ slug: string;
91
+ children: null;
92
+ };
93
+ };
94
+ };
95
+ lifestyleEnhancements: {
96
+ title: string;
97
+ description: string;
98
+ slug: string;
99
+ children: {
100
+ outdoorLiving: {
101
+ title: string;
102
+ description: string;
103
+ slug: string;
104
+ children: null;
105
+ };
106
+ smartHomeTechnologies: {
107
+ title: string;
108
+ description: string;
109
+ slug: string;
110
+ children: null;
111
+ };
112
+ minimalistLiving: {
113
+ title: string;
114
+ description: string;
115
+ slug: string;
116
+ children: null;
117
+ };
118
+ other: {
119
+ title: string;
120
+ description: string;
121
+ slug: string;
122
+ children: null;
123
+ };
124
+ };
125
+ };
126
+ };
127
+ export declare const authors: Record<string, string>;
128
+ export declare const authorsNames: string[];
129
+ export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83C\uDFE1\uD83C\uDF05\uD83C\uDF33\u2728";
130
+ export declare const categories: ("designInspiration" | "beautifulHomes" | "stunningLocations" | "lifestyleEnhancements")[];
131
+ export declare const subcategories: string[];
132
+ export declare const subsubcategories: string[];
133
+ export type Category = keyof typeof dataStructure;
134
+ export type CategoryNode = (typeof dataStructure)[Category];
135
+ export type SubcategoryKeyByCategory<T extends Category> = (typeof dataStructure)[T]['children'];
136
+ export declare const startDate = "2024-09-19T00:00:00Z";
137
+ export declare const devBucketName = "idn-luminousnook-dev";
138
+ export declare const prodBucketName = "idn-luminousnook";
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./seo.js");const i={beautifulHomes:{title:"Discover Beautiful Homes and Incredible Locations 🌏",description:"Explore breathtaking homes and stunning locales that inspire. Find innovative designs and remarkable environments for your dream space. 🏡✨",slug:"beautiful-homes",children:{modernArchitecture:{title:"Modern Architecture Designs to Inspire Your Space 🏠",description:"Dive into modern architecture with sleek lines and innovative designs. Explore stunning homes that redefine contemporary living. 🖤✨",slug:"modern-architecture",children:null},cozyInteriors:{title:"Cozy Interiors: Create Your Dream Sanctuary 🛋️",description:"Discover cozy interior designs that create warmth and comfort in your home. Find inspiration for inviting spaces that reflect your style. 🕯️💖",slug:"cozy-interiors",children:null},ecoFriendlyDesign:{title:"Eco-Friendly Design: Sustainable Homes for a Greener Future 🌱",description:"Explore eco-friendly designs that harmonize with nature while offering comfort and style. Inspire sustainable living with beautiful homes. 🌍♻️",slug:"eco-friendly-design",children:null},other:{title:"Discover Unique Home Styles and Designs 🏡✨",description:"Uncover a variety of unique home styles that defy conventions. Find inspiration in innovative designs and exceptional architecture. 🔑🌈",slug:"other",children:null}}},stunningLocations:{title:"Explore Stunning Locations: Hidden Gems, Iconic Landmarks & More 🌍",description:"Discover extraordinary locations, from hidden gems to iconic landmarks. These stunning places inspire awe and wanderlust. 🌟",slug:"stunning-locations",children:{hiddenGems:{title:"Hidden Gems: Uncover the World's Best Kept Secrets 🗝️",description:"Delve into beautiful hidden gems across the globe, revealing unique locations that offer breathtaking beauty and tranquility. 🌿",slug:"hidden-gems",children:null},iconicLandmarks:{title:"Iconic Landmarks: Timeless Wonders of the World 🌐",description:"Explore famous architectural marvels and landmarks that define cultures and history. These iconic sites are a must-see! 🏛️",slug:"iconic-landmarks",children:null},naturalWonders:{title:"Natural Wonders: Marvels of Nature's Masterpiece 🎇",description:"Experience breathtaking natural wonders, from majestic mountains to serene lakes. Discover nature's awe-inspiring beauty! 🌊",slug:"natural-wonders",children:null},other:{title:"Other Stunning Locations: Diverse Beauty Awaits 🏞️",description:"Uncover a variety of stunning locations that don't fit into traditional categories. Discover the beauty in diversity! 🌸",slug:"other-stunning-locations",children:null}}},designInspiration:{title:"Explore Stunning Home Designs and Decor Ideas for Your Space 🏡✨",description:"Discover captivating design inspirations, from beautiful homes to incredible locations. Unleash your creativity and transform your living spaces! 💡🌍",slug:"design-inspiration",children:{colorPalettes:{title:"Vibrant Color Palettes to Refresh Your Home’s Aura 🎨🌈",description:"Dive into inspiring color palettes that transform any space into a masterpiece. Enhance the mood of your home with perfect hues! 🌟🏡",slug:"color-palettes",children:null},furnitureTrends:{title:"Latest Furniture Trends for Modern Living Spaces 🛋️🛠️",description:"Stay ahead in your home interior game with the latest furniture trends. Discover innovative designs that optimize comfort and style! ✨🏠",slug:"furniture-trends",children:null},decorIdeas:{title:"Creative Decor Ideas to Elevate Your Home 🌿🖼️",description:"Explore unique decor ideas that add character and style to your home. Transform your environment with easy and impactful changes! 🎉🏡",slug:"decor-ideas",children:null},other:{title:"Unique Design Inspirations Beyond the Ordinary 🌟✨",description:"Discover unique design inspirations that go beyond traditional aesthetics. Unveil new ideas and trends that redefine home beauty! 💖🏡",slug:"unique-design-inspirations",children:null}}},lifestyleEnhancements:{title:"Elevate Your Living Space: Outdoor & Smart Home Ideas 🏡✨",description:"Discover how to enhance your lifestyle with innovative outdoor living, smart technologies, and minimalist designs that inspire elegant living. 🌿🚀",slug:"lifestyle-enhancements",children:{outdoorLiving:{title:"Transform Your Outdoors: Beautiful Living Spaces 🏞️🌺",description:"Explore stunning outdoor living ideas that beautify your home and enhance your quality of life. Discover gardens, patios, and more! 🌻🌴",slug:"outdoor-living",children:null},smartHomeTechnologies:{title:"Smart Home Solutions for Modern Living 🏠💡",description:"Unlock the potential of your home with innovative smart technologies that enhance convenience, security, and energy efficiency. 🔒⚡",slug:"smart-home-technologies",children:null},minimalistLiving:{title:"Embrace Minimalist Living: Simplicity & Elegance 🕊️📦",description:"Delve into the world of minimalist living, focusing on decluttering, clean designs, and serene environments that inspire tranquility. 🌑🏡",slug:"minimalist-living",children:null},other:{title:"Explore Unique Lifestyle Enhancements 🌟✨",description:"Discover a variety of lifestyle enhancement ideas beyond traditional concepts, perfect for every taste and personality. Dive into creativity! 🎨🏡",slug:"other",children:null}}}},n=e.AUTHORS_INFO.reduce(((e,i)=>Object.assign(Object.assign({},e),{[i.name]:[i.description]})),{}),t=e.AUTHORS_INFO.map((e=>e.name)),r="🏡🌅🌳✨",o=Object.keys(i),s=[],a=[];for(const e of o){const n=i[e];if(null==n?void 0:n.children){s.push(...Object.keys(n.children));for(const e of s){const i=n.children[e];(null==i?void 0:i.children)&&a.push(...Object.keys(i.children))}}}const l="2024-09-19T00:00:00Z",c="luminousnook",d=`idn-${c}-dev`,u=`idn-${c}`;exports.DEFAULT_DESCRIPTION_EMOJIS=r,exports.authors=n,exports.authorsNames=t,exports.categories=o,exports.dataStructure=i,exports.devBucketName=d,exports.prodBucketName=u,exports.startDate=l,exports.subcategories=s,exports.subsubcategories=a;
@@ -0,0 +1,28 @@
1
+ export declare enum FiltersNames {
2
+ HomeInspirations = "Home Inspirations",
3
+ LocationWonders = "Location Wonders",
4
+ ArchitecturalStyles = "Architectural Styles",
5
+ TravelInsights = "Travel Insights",
6
+ DesignTrends = "Design Trends"
7
+ }
8
+ type HomeInspirationsValues = 'Modern Minimalism' | 'Chic Rustic' | 'Coastal Bliss' | 'Luxury Living' | 'Eco-Friendly Designs';
9
+ type LocationWondersValues = 'Urban Escapes' | 'Secluded Retreats' | 'Scenic Countryside' | 'Desert Paradises' | 'Tropical Hideaways';
10
+ type ArchitecturalStylesValues = 'Contemporary Marvels' | 'Victorian Elegance' | 'Mid-Century Modern' | 'Industrial Chic' | 'Classic Mediterranean';
11
+ type TravelInsightsValues = 'Hidden Gem Destinations' | 'Cultural Hotspots' | 'Adventure Travel' | 'Luxury Getaways' | 'Family-Friendly Vacations';
12
+ type DesignTrendsValues = 'Sustainable Living' | 'Smart Home Technologies' | 'Bold Color Palettes' | 'Vintage Revival' | 'Biophilic Design';
13
+ export type ArticleFilters = {
14
+ [FiltersNames.HomeInspirations]: HomeInspirationsValues[];
15
+ [FiltersNames.LocationWonders]: LocationWondersValues[];
16
+ [FiltersNames.ArchitecturalStyles]: ArchitecturalStylesValues[];
17
+ [FiltersNames.TravelInsights]: TravelInsightsValues[];
18
+ [FiltersNames.DesignTrends]: DesignTrendsValues[];
19
+ };
20
+ export declare const homeInspirationsValues: HomeInspirationsValues[];
21
+ export declare const locationWondersValues: LocationWondersValues[];
22
+ export declare const architecturalStylesValues: ArchitecturalStylesValues[];
23
+ export declare const travelInsightsValues: TravelInsightsValues[];
24
+ export declare const designTrendsValues: DesignTrendsValues[];
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={})).HomeInspirations="Home Inspirations",e.LocationWonders="Location Wonders",e.ArchitecturalStyles="Architectural Styles",e.TravelInsights="Travel Insights",e.DesignTrends="Design Trends";const s=["Modern Minimalism","Chic Rustic","Coastal Bliss","Luxury Living","Eco-Friendly Designs"],t=["Urban Escapes","Secluded Retreats","Scenic Countryside","Desert Paradises","Tropical Hideaways"],r=["Contemporary Marvels","Victorian Elegance","Mid-Century Modern","Industrial Chic","Classic Mediterranean"],i=["Hidden Gem Destinations","Cultural Hotspots","Adventure Travel","Luxury Getaways","Family-Friendly Vacations"],a=["Sustainable Living","Smart Home Technologies","Bold Color Palettes","Vintage Revival","Biophilic Design"],o={[exports.FiltersNames.HomeInspirations]:[],[exports.FiltersNames.LocationWonders]:[],[exports.FiltersNames.ArchitecturalStyles]:[],[exports.FiltersNames.TravelInsights]:[],[exports.FiltersNames.DesignTrends]:[]},n={[exports.FiltersNames.HomeInspirations]:s,[exports.FiltersNames.LocationWonders]:t,[exports.FiltersNames.ArchitecturalStyles]:r,[exports.FiltersNames.TravelInsights]:i,[exports.FiltersNames.DesignTrends]:a},l=()=>JSON.stringify(n,null,2);exports.architecturalStylesValues=r,exports.designTrendsValues=a,exports.fullFilters=n,exports.getFiltersTypesJSON=l,exports.homeInspirationsValues=s,exports.initialFilters=o,exports.locationWondersValues=t,exports.travelInsightsValues=i;
@@ -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.architecturalStylesValues=t.architecturalStylesValues,exports.designTrendsValues=t.designTrendsValues,exports.fullFilters=t.fullFilters,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.homeInspirationsValues=t.homeInspirationsValues,exports.initialFilters=t.initialFilters,exports.locationWondersValues=t.locationWondersValues,exports.travelInsightsValues=t.travelInsightsValues,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: LuminousNook is an infotainment articles portal dedicated to showcasing beautiful homes and incredible locations, offering readers inspiration and insights into stunning architecture and breathtaking environments.\n - Detailed description: LuminousNook serves as a top-tier online destination for enthusiasts of exquisite living spaces and remarkable destinations. The portal features a curated collection of articles that delve into the intricacies of beautiful home designs, innovative decor ideas, and captivating locales across the globe. From exploring iconic architectural styles to unveiling hidden gems tucked away in nature, LuminousNook stands out as a creative hub for those looking to enhance their living experiences and wanderlust. The content is crafted not only to inform but also to inspire readers, providing them with practical tips, design strategies, and travel insights that elevate their appreciation for aesthetic and functional living.\n - Target audience: LuminousNook primarily targets homeowners, aspiring homebuyers, interior design enthusiasts, travelers, and individuals who seek inspiration for home aesthetics and extraordinary locales. The audience ranges from young adults to seasoned homeowners, including families looking to improve their living spaces and professionals in the design and real estate industries.\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## Featured Homes\n - Architectural Highlights\n - Interior Design Themes\n\n## Location Spotlights\n - Cultural Significance\n - Natural Wonders\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 - Featured Homes, 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 = "real estate enthusiasts, travel lovers, interior design aficionados";
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: LuminousNook is an infotainment articles portal dedicated to showcasing beautiful homes and incredible locations, offering readers inspiration and insights into stunning architecture and breathtaking environments.\n - Detailed description: LuminousNook serves as a top-tier online destination for enthusiasts of exquisite living spaces and remarkable destinations. The portal features a curated collection of articles that delve into the intricacies of beautiful home designs, innovative decor ideas, and captivating locales across the globe. From exploring iconic architectural styles to unveiling hidden gems tucked away in nature, LuminousNook stands out as a creative hub for those looking to enhance their living experiences and wanderlust. The content is crafted not only to inform but also to inspire readers, providing them with practical tips, design strategies, and travel insights that elevate their appreciation for aesthetic and functional living.\n - Target audience: LuminousNook primarily targets homeowners, aspiring homebuyers, interior design enthusiasts, travelers, and individuals who seek inspiration for home aesthetics and extraordinary locales. The audience ranges from young adults to seasoned homeowners, including families looking to improve their living spaces and professionals in the design and real estate industries.\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## Featured Homes\n - Architectural Highlights\n - Interior Design Themes\n\n## Location Spotlights\n - Cultural Significance\n - Natural Wonders\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 - Featured Homes, IF it's applicable to the theme of the article.\n",n="highlighting the key points that will be discussed and the relevance of the topic",a="synthesizing the information presented throughout",o="real estate enthusiasts, travel lovers, interior design aficionados",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\n$FILTERNAME: []\nResponse in valid json, adhering strictly to json interface below, include every field present in it, but include values in array only suitable for article, all array values are optional!\n${require("../filters.js").getFiltersTypesJSON()}`;exports.END_STEP=a,exports.FILTERS_INFO=s,exports.IMAGES_PROHIBITED_WORDS=r,exports.START_STEP=n,exports.TARGET_AUDIENCE=o,exports.ZERO_SECTION=i,exports.portalInfo=t;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt35turbo/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),p=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),i=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=i,exports.getFiltersPrompt=p,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt4oMini/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),i=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),p=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=p,exports.getFiltersPrompt=i,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,4 @@
1
+ import { GetOpenAiBasedImagePrompt, GetStableDiffusionImagePrompt } from 'src/common/types';
2
+ export declare const getStableDiffusionImagePrompt: GetStableDiffusionImagePrompt;
3
+ export declare const getOpenAiBasedImagePrompt: GetOpenAiBasedImagePrompt;
4
+ export declare const getOpenAiBasedImagePromptDalle2: GetOpenAiBasedImagePrompt;
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../common/prompts/images.js");const a=({title:a,alt:o,articleTitle:r})=>({prompt:`Award-winning hyper-real cinematic photo of a ${a}, ${o}, for an article ${r} from professional architecture photograph for a glossy beautiful homes magazine, nature style photography, glossy incredible locations magazine, photorealistic, ultra realistic, maximum detail, highly detailed, commercial photography, foreground focus, 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}),o=({title:e,alt:a,articleTitle:o})=>`I NEED a hyper-real illustration of a ${e} at food style photography, ${a}, for an article ${o} for a glossy recipe magazine, photorealistic, ultra realistic, maximum detail, highly detailed, food style, food style photography, professional food photography, commercial photography, foreground focus, recipes.com, delish.com, epicurious, instagram, 4K, 8K, volumetric light, octane render, uplight, no blur, depth of field, dof, bokeh, foreground focus. Please exclude any: Photocamera, videocamera, Spotlight, soffit, ramp, scanners, strobe, soffit truss, film props, radio, cooking timer, watches, clocks, men, woman, people, hand, nands, leg, legs, font, username, error, words, letters, digits, autograph, trademark, name, easy-negative, cartoon, worst quality, low quality, blind, bad eyes, ugly eyes, dead eyes, greyscale, monochrome, vignette, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, censored, rabs, muscular, rib, blurry, blur, grainy, teeth, low resolution, lowres, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bw, bad photo, bad photography, bad art, morbid, ugly, asymmetrical, mutated malformed, mutilated, poorly lit, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, duplicate, airbrushed,, anime, semi-realistic, cgi, render, 3D, blender, digital art, manga, amateur, 3D, 3D Game, 3D Game Scene, 3D Character, bad hands, , bad body, bad face, bad teeth, bad arms, bad legs, deformities, drawing, deformed iris, deformed pupils, deformed, painting, crayon, sketch, graphite, impressionist, noisy, poorly drawn hands, poorly drawn face, poorly drawn eyes, mutation, bad proportions, cloned face, disfigured, gross proportions, malformed limbs, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck, incoherent from this hyper-real illustration of a ${e}`,r=({title:e})=>`\n\tPhotorealistic highly detailed image of ingredients for ${e}, arranged professionally as if for a food photography shoot. image should showcase maximum detail realism, with a focus on foreground, emulating the style of a high-definition, 8k resolution professional food photograph. lighting should be volumetric and uplit, with a depth of field and bokeh effect, avoiding any blur for clarity. overall aesthetic should be reminiscent of the Kodak Portrait 800 style.\n\tNegative Prompt:\n\teasy-negative, cartoon, worst quality, low quality, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, blurry, blur, grainy, teeth, low resolution, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, airbrushed, anime, semi-realistic, cgi, render, 3D, blender, manga, amateur, 3D, 3D Game, drawing, sketch\n`;exports.getOpenAiBasedImagePrompt=o,exports.getOpenAiBasedImagePromptDalle2=r,exports.getStableDiffusionImagePrompt=a;
@@ -0,0 +1,23 @@
1
+ export interface PageSeoData {
2
+ title: string;
3
+ description: string;
4
+ }
5
+ export declare enum PageNames {
6
+ Authors = "authors",
7
+ Home = "home",
8
+ NotFound = "not-found",
9
+ AboutUs = "about-us",
10
+ PrivacyPolicy = "privacy-policy",
11
+ Terms = "terms",
12
+ Sitemap = "sitemap"
13
+ }
14
+ export type PagesSeo = Record<PageNames, PageSeoData>;
15
+ export interface AuthorInfo {
16
+ name: string;
17
+ description: string;
18
+ meta_title: string;
19
+ meta_description: string;
20
+ }
21
+ export declare const PAGES_SEO: PagesSeo;
22
+ export declare const AUTHORS_INFO: AuthorInfo[];
23
+ export declare const AUTHORS_META: Record<string, PageSeoData>;
@@ -0,0 +1 @@
1
+ "use strict";var e;exports.PageNames=void 0,(e=exports.PageNames||(exports.PageNames={})).Authors="authors",e.Home="home",e.NotFound="not-found",e.AboutUs="about-us",e.PrivacyPolicy="privacy-policy",e.Terms="terms",e.Sitemap="sitemap";const i={[exports.PageNames.Authors]:{title:"Meet Our Inspiring Authors | LuminousNook 🌟",description:"Discover the talented minds behind LuminousNook. Dive into beautiful homes and incredible locations with our expert authors! 🏡✈️"},[exports.PageNames.Home]:{title:"Welcome to LuminousNook | Beautiful Homes & Incredible Locations 🏠✨",description:"Explore stunning homes and breathtaking places. Join us at LuminousNook for your daily dose of inspiration! 🌅🌍"},[exports.PageNames.NotFound]:{title:"Oops! Page Not Found | LuminousNook 🚫",description:"Sorry, we couldn't find that page. But don't worry, explore beautiful homes and incredible locations elsewhere on LuminousNook! 🏡💔"},[exports.PageNames.AboutUs]:{title:"About LuminousNook | Your Source for Inspiration 📝💖",description:"Learn more about LuminousNook, where we bring you beautiful homes and incredible locations from around the world! 🌍✨"},[exports.PageNames.PrivacyPolicy]:{title:"Privacy Policy | LuminousNook 🔒",description:"Your privacy matters! Read our Privacy Policy to learn how LuminousNook protects your information while you explore beautiful homes and places. 🏡🔍"},[exports.PageNames.Terms]:{title:"Terms of Use | LuminousNook 📜",description:"Understand the rules of engagement on LuminousNook. Dive into our Terms of Use and enjoy your journey through beautiful homes and locations! 🏠✨"},[exports.PageNames.Sitemap]:{title:"Sitemap | Navigate LuminousNook 🌐",description:"Find your way around LuminousNook with our Sitemap. Discover beautiful homes and incredible locations with ease! 🏡🗺️"}},a=[{name:"Riya Sharma",description:"Riya Sharma is a seasoned lifestyle writer specializing in home decor and travel. With over 7 years of experience, she has worked with several renowned magazines and blogs, sharing her insights on beautiful homes and breathtaking locations around the world. Riya's passion for exploring diverse cultures and aesthetics enriches her writing, making her a valuable contributor to LuminousNook.",meta_title:"Riya Sharma - Lifestyle Writer at LuminousNook",meta_description:"Explore the works of Riya Sharma, a seasoned lifestyle writer at LuminousNook with over 7 years of experience in home decor and travel writing."},{name:"Arjun Mehta",description:"Arjun Mehta is an architect and travel enthusiast who avidly writes about architecture, design, and exquisite travel spots. With a degree from the Indian Institute of Technology (IIT), he merges his technical knowledge with a creative flair. His articles on LuminousNook offer readers a unique perspective on beautiful locations and the artistry behind homes worldwide.",meta_title:"Arjun Mehta - Architect and Writer at LuminousNook",meta_description:"Discover the unique insights of Arjun Mehta, an architect and travel writer at LuminousNook, blending design expertise with travel narratives."},{name:"Anita Gupta",description:"Anita Gupta is a passionate interior designer and writer with over 10 years in the field. Known for her innovative designs and eye for detail, she has contributed to numerous design publications. At LuminousNook, Anita shares her expertise on creating beautiful homes and provides inspiration for location-based living.",meta_title:"Anita Gupta - Interior Designer and Contributor at LuminousNook",meta_description:"Join Anita Gupta at LuminousNook for innovative insights into interior design and inspiring home decor ideas from a seasoned designer."},{name:"Karan Singh",description:"Karan Singh is a travel blogger and photographer who focuses on lesser-known scenic locations across India and beyond. With a flair for storytelling, he captures the beauty of each destination and the homes within them. His vibrant articles and stunning visuals make him a perfect fit for the LuminousNook community.",meta_title:"Karan Singh - Travel Blogger at LuminousNook",meta_description:"Explore the tales and stunning visuals by Karan Singh, a travel blogger and photographer, as he uncovers hidden beauty for LuminousNook."},{name:"Sita Rao",description:"Sita Rao is a journalist with a keen interest in sustainable living and architecture. She has written for several eco-conscious publications and brings her expertise to LuminousNook, focusing on eco-friendly homes and responsible travel destinations. Sita's commitment to sustainability enriches the content she provides.",meta_title:"Sita Rao - Sustainable Living Advocate at LuminousNook",meta_description:"Learn about sustainable living from Sita Rao at LuminousNook, as she combines eco-conscious architecture with responsible travel."},{name:"Rajesh Kumar",description:"Rajesh Kumar is a cultural historian and writer who specializes in exploring the historical context of homes and their locations. With years of research experience and published works, Rajesh contributes rich narratives to LuminousNook, linking past and present in the realms of architecture and location.",meta_title:"Rajesh Kumar - Cultural Historian at LuminousNook",meta_description:"Dive into history with Rajesh Kumar at LuminousNook, a cultural historian connecting the past of homes and locations in his insightful writings."},{name:"Deepa Nair",description:"Deepa Nair is a passionate writer and culinary expert who intertwines food culture with beautiful locations. Her writings at LuminousNook explore how local cuisine and homes reflect cultural identity, providing readers with a deeper understanding of the places they explore.",meta_title:"Deepa Nair - Culinary and Travel Writer at LuminousNook",meta_description:"Join Deepa Nair at LuminousNook in exploring the rich connection between food culture, homes, and incredible travel locations."},{name:"Vikram Patil",description:"Vikram Patil is a landscape designer and travel enthusiast who shares his journey through beautiful gardens and serene locations. With a focus on botanical aesthetics, his articles at LuminousNook inspire readers to appreciate the beauty of nature in residential spaces and travel locales.",meta_title:"Vikram Patil - Landscape Designer and Writer at LuminousNook",meta_description:"Explore nature's beauty with Vikram Patil at LuminousNook, where landscape design meets travel inspiration in stunning locales."},{name:"Neha Bhatia",description:"Neha Bhatia is a writer and urban explorer who investigates urban living and its effect on communities and homes. She uses her voice to advocate for better urban designs and shares her experiences through LuminousNook, highlighting beautiful yet functional urban homes.",meta_title:"Neha Bhatia - Urban Explorer and Writer at LuminousNook",meta_description:"Discover urban living insights and functional home designs with Neha Bhatia at LuminousNook, your portal to community-focused articles."},{name:"Manish Desai",description:"Manish Desai is a renowned photographer and travel writer whose breathtaking images capture the essence of beautiful homes and incredible locations. He travels extensively and shares his visual storytelling at LuminousNook, making each article a feast for the eyes.",meta_title:"Manish Desai - Photographer and Travel Writer at LuminousNook",meta_description:"Experience stunning visuals and compelling narratives by Manish Desai at LuminousNook, where photography meets travel writing."},{name:"Rohit Sharma",description:"Rohit Sharma is an experienced travel writer and home décor enthusiast with over a decade of exploring India's diverse locations. He combines his passion for architecture with a love for nature, sharing insights on beautiful homes nestled in scenic locales.",meta_title:"Rohit Sharma - Travel Writer & Home Décor Expert | LuminousNook",meta_description:"Explore the world of beautiful homes and incredible locations with Rohit Sharma, travel writer at LuminousNook. Discover tips, inspiration, and curated travel experiences."},{name:"Anika Verma",description:"Anika Verma is an award-winning journalist and content creator who specializes in lifestyle and travel articles. Her writings often reflect her deep understanding of culture and heritage, focusing on the unique architecture found in various regions of India.",meta_title:"Anika Verma - Lifestyle & Travel Journalist | LuminousNook",meta_description:"Join Anika Verma at LuminousNook as she explores the exquisite blend of lifestyle, history, and architecture in stunning Indian locations."},{name:"Vikram Singh",description:"Vikram Singh is a seasoned architect and design blogger with a keen eye for detail. With over 15 years in the field, he provides insights into sustainable and innovative home designs across India’s beautiful landscapes.",meta_title:"Vikram Singh - Architect & Design Blogger | LuminousNook",meta_description:"Discover the art of sustainable home design with Vikram Singh at LuminousNook. Explore incredible Indian locations through the lens of architecture."},{name:"Priya Mehta",description:"Priya Mehta is a travel photographer and writer dedicated to showcasing the beauty of Indian homes and locations. Her vibrant images and compelling narratives inspire readers to connect with the essence of each place.",meta_title:"Priya Mehta - Travel Photographer & Writer | LuminousNook",meta_description:"Explore stunning visuals and captivating stories with Priya Mehta at LuminousNook, highlighting incredible homes and breathtaking locations in India."},{name:"Sanjay Joshi",description:"Sanjay Joshi is a landscape designer and writer with a passion for blending nature and architecture. He has spent years creating beautiful outdoor spaces and sharing his experiences through articles on unique locations across India.",meta_title:"Sanjay Joshi - Landscape Designer & Travel Writer | LuminousNook",meta_description:"Join Sanjay Joshi at LuminousNook to discover the harmony between nature and architecture in some of India's most beautiful locations."},{name:"Nisha Kapoor",description:"Nisha Kapoor is a lifestyle blogger and home enthusiast with a focus on interiors and design trends. Her articles delve into the cultural significance of homes in various Indian locations.",meta_title:"Nisha Kapoor - Lifestyle Blogger & Home Enthusiast | LuminousNook",meta_description:"Explore home design and cultural insights with Nisha Kapoor at LuminousNook, inspiring readers to appreciate the beauty of Indian architecture."},{name:"Arjun Reddy",description:"Arjun Reddy is a cultural historian and author who writes extensively on India’s architectural heritage. His work emphasizes the stories behind beautiful homes and iconic locations.",meta_title:"Arjun Reddy - Cultural Historian & Author | LuminousNook",meta_description:"Discover the rich architectural heritage of India with Arjun Reddy at LuminousNook, exploring the stories of beautiful homes and captivating locations."},{name:"Sneha Desai",description:"Sneha Desai is a travel and lifestyle influencer who shares her experiences across India's hidden gems. Her articles inspire readers to seek out incredible homes and enchanting locations.",meta_title:"Sneha Desai - Travel Influencer & Lifestyle Writer | LuminousNook",meta_description:"Join Sneha Desai at LuminousNook as she uncovers hidden gems and extraordinary homes in India, inspiring your next adventure."},{name:"Amit Bansal",description:"Amit Bansal is an environmental photographer and writer focusing on sustainable living practices. His articles highlight eco-friendly homes in breathtaking locations throughout India.",meta_title:"Amit Bansal - Environmental Photographer & Writer | LuminousNook",meta_description:"Explore sustainable living and breathtaking landscapes with Amit Bansal at LuminousNook, highlighting eco-friendly homes and their locations."},{name:"Deepika Nair",description:"Deepika Nair is a travel writer and cultural explorer who unravels the stories behind beautiful homes and incredible locations in India. Her immersive narratives inspire a sense of wanderlust.",meta_title:"Deepika Nair - Travel Writer & Cultural Explorer | LuminousNook",meta_description:"Join Deepika Nair at LuminousNook as she shares captivating stories and insights into the beautiful homes and locations of India."},{name:"Priya Sen",description:"Priya Sen is a travel and lifestyle writer with a specialization in the art of home décor. Based in New Delhi, she has a knack for uncovering featured homes and hidden locations. With over eight years of experience, her articles are a blend of personal storytelling and cultural exploration that inspire readers to dream about their next getaway.",meta_title:"Priya Sen - Travel and Lifestyle Writer at LuminousNook",meta_description:"Join Priya Sen on her journey of exploration as she uncovers beautiful homes and incredible locations, sharing personal stories and travel tips."},{name:"Arun Sharma",description:"Arun Sharma is a celebrated photographer and feature writer who merges visuals with storytelling to paint vivid pictures of homes and places. With over 15 years in the industry, his photography has graced the pages of many leading magazines, and he currently focuses on creating compelling content that resonates with those passionate about homes and travel.",meta_title:"Arun Sharma - Photographer and Feature Writer at LuminousNook",meta_description:"Experience the beauty of homes and locations through the lens of Arun Sharma, a talented photographer and feature writer captivating readers worldwide."},{name:"Meera Desai",description:"Meera Desai is an acclaimed lifestyle blogger with a finger on the pulse of the latest home trends and travel hot spots. With her background in marketing and her love for design, she has merged her skills to help readers discover the charm of incredible locations and beautifully designed homes through her vibrant articles.",meta_title:"Meera Desai - Lifestyle Blogger at LuminousNook",meta_description:"Uncover the latest trends in home design and travel with Meera Desai, a lifestyle blogger dedicated to inspiring readers with incredible stories and locations."},{name:"Rahul Iyer",description:"Rahul Iyer is a passionate home chef and travel editor who shares his insights into beautiful homes and culinary experiences around the world. With years of experience in editorial management, he provides readers with tantalizing recipes and stunning home inspirations, blending flavors with locations that enhance the experience of living well.",meta_title:"Rahul Iyer - Chef and Travel Editor at LuminousNook",meta_description:"Join Rahul Iyer for delectable recipes and life-style travel explorations as he reveals beautiful homes and incredible locations around the globe."},{name:"Sanjana Rao",description:"Sanjana Rao is a writer and researcher focused on cultural heritage and the stories behind beautiful homes. She has a master's degree in history and has spent years exploring the relationship between architecture and community, emphasizing sustainable practices in home-building and travel in her insightful articles.",meta_title:"Sanjana Rao - Cultural Heritage Writer at LuminousNook",meta_description:"Explore the rich cultural heritage of homes and locations with Sanjana Rao, a dedicated researcher and writer weaving stories that celebrate our history."},{name:"Riya Jain",description:"Riya Jain is a travel enthusiast and home décor expert based in Chennai. With a rich background in advertising and a passion for visual storytelling, Riya crafts engaging articles that explore the intersection of beautiful homes and remarkable destinations, inspiring her readers to curate their dream lives.",meta_title:"Riya Jain - Travel Enthusiast and Home Décor Expert at LuminousNook",meta_description:"Join Riya Jain as she blends adventure and design, exploring beautiful homes and incredible destinations to inspire your next getaway."},{name:"Karan Patel",description:"Karan Patel is a creative writer and digital content strategist with a deep interest in architecture and travel. After studying at an esteemed art school, he has dedicated his career to capturing the essence of incredible locations and the stories behind beautiful homes. His articles blend humor and insight, making complex subjects approachable.",meta_title:"Karan Patel - Creative Writer and Digital Content Strategist at LuminousNook",meta_description:"Discover the essence of remarkable homes and locations through Karan Patel's insightful articles, combining humor and expertise for an engaging read."},{name:"Ananya Joshi",description:"Ananya Joshi is an accomplished interior designer and lifestyle writer based in Mumbai. With over a decade of experience in crafting aesthetically pleasing spaces, she has contributed to several renowned home magazines and websites. Ananya believes that each home tells a unique story and excels in capturing the essence of beautiful living through her words.",meta_title:"Ananya Joshi - Interior Designer & Lifestyle Writer",meta_description:"Discover the vibrant world of interior design and home aesthetics through Ananya Joshi's insights. A seasoned expert with over ten years of experience, she brings a unique perspective to creating beautiful homes."},{name:"Meera Singh",description:"Meera Singh is an award-winning architectural journalist and author specializing in sustainable housing trends. With a background in architecture and urban planning, she contributes her expertise to leading publications. Meera advocates for eco-friendly design and is passionate about creating homes that harmonize with their environment.",meta_title:"Meera Singh - Architectural Journalist & Sustainable Design Advocate",meta_description:"Explore sustainable design and architectural trends with Meera Singh, an award-winning journalist. With her expertise, she promotes eco-friendly practices in crafting beautiful homes."},{name:"Vikram Patel",description:"Vikram Patel is a home décor enthusiast and freelance writer based in Delhi. His articles focus on traditional Indian aesthetics and modern design concepts. With over five years of experience, Vikram helps readers blend cultural elements with contemporary styling for harmonious home interiors.",meta_title:"Vikram Patel - Home Décor Writer & Aesthetics Enthusiast",meta_description:"Discover the fusion of traditional and modern design with Vikram Patel. A passionate home décor writer, he shares insightful articles on creating aesthetically pleasing interiors."},{name:"Diya Mehta",description:"Diya Mehta is a lifestyle blogger and home chef known for her exquisite taste in both food and home decoration. Based in Bengaluru, she writes about beautifully curated spaces and the art of hosting. Diya has a knack for turning any gathering into a memorable experience and shares her tips on making homes inviting.",meta_title:"Diya Mehta - Lifestyle Blogger & Home Chef",meta_description:"Join Diya Mehta on a journey of exquisite home décor and delightful culinary experiences. Her expertise will inspire you to create inviting spaces and memorable gatherings."},{name:"Arjun Verma",description:"Arjun Verma is a celebrated landscape architect and writer who emphasizes the significance of nature in urban living. With a mission to integrate green spaces into residential areas, Arjun shares his experiences and insights on creating beautiful, living environments that promote sustainability.",meta_title:"Arjun Verma - Landscape Architect & Green Living Advocate",meta_description:"Explore the importance of nature in urban living with Arjun Verma, a landscape architect dedicated to cultivating beautiful green spaces in homes and communities."},{name:"Priya Desai",description:"Priya Desai is a skilled DIY expert and home improvement writer hailing from Chennai. With a passion for crafting and renovations, she shares innovative ideas for transforming spaces within a budget. With years of hands-on experience, Priya empowers her readers to embrace their creativity in home projects.",meta_title:"Priya Desai - DIY Home Improvement Writer & Crafting Expert",meta_description:"Unlock your creativity with Priya Desai's DIY home improvement tips. A passionate writer with a knack for crafting, she helps you transform your living spaces affordably and stylishly."},{name:"Nikhil Bansal",description:"Nikhil Bansal is a prominent real estate writer and consultant specializing in luxury properties. Based in Gurugram, he has over fifteen years of experience in the industry and shares valuable insights on market trends and investment opportunities. Nikhil aims to guide prospective buyers in finding their dream homes.",meta_title:"Nikhil Bansal - Real Estate Writer & Luxury Property Consultant",meta_description:"Discover the luxury real estate market with Nikhil Bansal. An expert consultant and writer, he provides valuable insights for those looking to invest in their dream homes."},{name:"Sanya Khanna",description:"Sanya Khanna is an eco-conscious home goods designer and writer. Residing in Jaipur, she focuses on sustainable living and handcrafted products that enhance home aesthetics while being environmentally friendly. With her experience in design and a commitment to green practices, she inspires others to adopt a sustainable lifestyle.",meta_title:"Sanya Khanna - Eco-Conscious Home Goods Designer & Writer",meta_description:"Embrace sustainable living with Sanya Khanna, an eco-conscious designer and writer. She shares insights on creating beautiful, environmentally friendly homes through handcrafted products."},{name:"Aarav Gupta",description:"Aarav Gupta is an interior architect specializing in small space solutions. Based in Pune, he has transformed numerous compact homes into functional and beautiful living areas. With a focus on maximizing space efficiency, Aarav's expertise is invaluable to anyone looking to make the most out of their interiors.",meta_title:"Aarav Gupta - Interior Architect Specializing in Small Space Solutions",meta_description:"Transform your compact spaces with Aarav Gupta's innovative interior design solutions. An expert in maximizing space, he provides insights for creating functional and stylish homes."},{name:"Ella Carter",description:"Ella Carter is an interior designer and freelance writer based in London. With over a decade of experience in home styling and spatial design, she has worked on numerous projects that emphasize beauty and functionality. Ella has a passion for blending contemporary designs with classic elements, inspiring readers to enhance their living spaces.",meta_title:"Ella Carter - Interior Designer & Writer at LuminousNook",meta_description:"Discover insights on beautiful home designs and incredible locations with Ella Carter, an experienced interior designer and freelance writer at LuminousNook."},{name:"Sanjay Desai",description:"Sanjay Desai, an architect and travel enthusiast from Mumbai, specializes in documenting unique homes and stunning landscapes across India. His work captures the intersection of architecture and nature, providing readers with an eye for detail and a love for exploration. With years of experience, Sanjay aims to inspire a deeper appreciation for beautiful locations.",meta_title:"Sanjay Desai - Architect & Travel Writer at LuminousNook",meta_description:"Join Sanjay Desai on a journey through extraordinary Indian homes and locations that blend culture and design. Explore his insights at LuminousNook."},{name:"Clara Schmidt",description:"Clara Schmidt is a German journalist and real estate expert with a focus on sustainable living and eco-friendly homes. With extensive research and writing experience, Clara shares valuable advice on creating environmentally-friendly spaces, promoting an airy and beautiful home environment. Her work emphasizes the importance of high-quality materials and sustainable practices.",meta_title:"Clara Schmidt - Eco-Friendly Home Expert at LuminousNook",meta_description:"Explore the art of sustainable living with Clara Schmidt, a real estate expert sharing eco-friendly home insights at LuminousNook."},{name:"Luis Fernández",description:"Based in Barcelona, Luis Fernández is a creative writer and urban exploration enthusiast who showcases beautiful homes and stunning architecture across Spain and beyond. With a degree in architecture and experience in creative writing, he combines technical knowledge with storytelling to capture the essence of each location.",meta_title:"Luis Fernández - Urban Explorer & Writer at LuminousNook",meta_description:"Discover the beauty of architecture and homes through the eyes of Luis Fernández, an urban exploration writer at LuminousNook."},{name:"Maya Thompson",description:"Maya Thompson is a lifestyle blogger and home decor specialist from New York City. With a focus on modern aesthetics and cozy living, she guides readers in creating inviting spaces through personal stories and expert advice. Maya's approachable writing style resonates with those looking to transform their homes beautifully.",meta_title:"Maya Thompson - Lifestyle Blogger & Decor Specialist at LuminousNook",meta_description:"Transform your living spaces with tips and tricks from Maya Thompson, a lifestyle blogger and decor specialist at LuminousNook."},{name:"Akira Tanaka",description:"Akira Tanaka is a renowned travel writer and cultural historian based in Tokyo. His fascination with architecture and landscape design drives him to explore Japan's stunning homes and scenic locations. Through his engaging articles, Akira bridges the gap between tradition and modernity, offering readers a glimpse into Japan’s incredible beauty.",meta_title:"Akira Tanaka - Travel Writer & Cultural Historian at LuminousNook",meta_description:"Explore the beauty of Japanese homes and cultural landscapes with Akira Tanaka, a travel writer at LuminousNook."},{name:"Fatima Al-Sayed",description:"Fatima Al-Sayed is a Middle Eastern lifestyle expert and designer based in Dubai. With a rich background in traditional crafts and modern design, she focuses on showcasing the exquisite flavors and styles of Arabian homes. Fatima's work is deeply rooted in her culture, providing an authentic lens through which readers can appreciate beautiful homes.",meta_title:"Fatima Al-Sayed - Lifestyle Expert & Designer at LuminousNook",meta_description:"Discover the elegance of Arabian homes with Fatima Al-Sayed, a lifestyle expert and designer sharing her insights at LuminousNook."},{name:"John R. Donovan",description:"John R. Donovan is a historian and real estate writer based in Vancouver. With a passion for heritage homes and historical locations, John explores the intricate narratives behind stunning properties. His articles celebrate the stories that define homes and locations, inviting readers to appreciate their historical significance.",meta_title:"John R. Donovan - Historical Writer & Real Estate Expert at LuminousNook",meta_description:"Uncover the stories behind beautiful heritage homes and locations with John R. Donovan, a historian and writer at LuminousNook."},{name:"Zara Hossain",description:"Zara Hossain is a travel enthusiast and graphic designer from Toronto, who beautifully blends her artistic vision with her passion for travel writing. Zara’s articles focus on chic urban homes and design trends around the world, offering readers inspiration to incorporate modern aesthetics into their environments.",meta_title:"Zara Hossain - Travel Writer & Graphic Designer at LuminousNook",meta_description:"Explore chic urban designs and travel experiences with Zara Hossain, a talented graphic designer and travel writer at LuminousNook."},{name:"Oliver Markham",description:"Oliver Markham is a contemporary art and home design curator based in Sydney. With a background in fine arts, he delves into the relationship between art and interior design, providing readers with rich, informative content that inspires beautiful and innovative home creations. His creative vision helps redefine modern living spaces.",meta_title:"Oliver Markham - Art Curator & Design Writer at LuminousNook",meta_description:"Redefine your living space with insights from Oliver Markham, a contemporary art curator and home design writer at LuminousNook."},{name:"Emma Thompson",description:"Emma Thompson is a seasoned travel writer and interior designer based in London. With over a decade of experience in writing about luxurious homes and breathtaking destinations, Emma's articles inspire readers to explore unique locations while appreciating aesthetic living spaces. Her work has been featured in multiple home and lifestyle magazines across the UK.",meta_title:"Emma Thompson - LuminousNook Author",meta_description:"Explore articles by Emma Thompson, a travel writer and interior designer, sharing insights on beautiful homes and incredible locations around the world."},{name:"Ravi Patel",description:"Ravi Patel is an acclaimed architect and writer from Mumbai, India. With a focus on sustainable architecture and design, he blends his expertise in construction with a passion for storytelling. His writings provide readers with a unique perspective on homes that harmonize with their surroundings, showcasing incredible locations in India and beyond.",meta_title:"Ravi Patel - LuminousNook Author",meta_description:"Discover the works of Ravi Patel, an architect and writer passionate about sustainable homes and stunning locations around the globe."},{name:"Sara Kim",description:"Sara Kim is a travel journalist and lifestyle blogger based in Seoul, South Korea. She has traveled extensively, documenting her experiences in various homes and destinations that evoke a sense of wonder. Sara's engaging writing style and eye for detail make her articles a delightful read for anyone seeking inspiration for beautiful living spaces.",meta_title:"Sara Kim - LuminousNook Author",meta_description:"Read articles by Sara Kim, a travel journalist and lifestyle blogger, sharing her adventures in beautiful homes and incredible locations worldwide."},{name:"Liam Johnson",description:"Liam Johnson is a cultural anthropologist and writer based in New York City. With a keen interest in exploring the relationship between lifestyle and architecture, Liam's features delve into the stories behind stunning homes and the cultures they represent. His unique voice brings a refreshing perspective to the topic of beautiful living spaces.",meta_title:"Liam Johnson - LuminousNook Author",meta_description:"Explore the thought-provoking writings of Liam Johnson, a cultural anthropologist sharing insights on homes and their cultural significance."},{name:"Carla Mendes",description:"Carla Mendes is a passionate home decor stylist and travel writer from Lisbon, Portugal. With years of experience in both fields, she combines her love for design and discovering new places to curate articles that showcase the beauty of homes in picturesque locations. Carla's work focuses on aesthetics, making her a valuable contributor to LuminousNook.",meta_title:"Carla Mendes - LuminousNook Author",meta_description:"Discover Carla Mendes's creative articles on home decor and stunning locations around the world, as she shares her passion for design and travel."},{name:"Nina Rossi",description:"Nina Rossi is an Italian writer and historian specializing in heritage homes and historical landmarks. Based in Florence, she provides insights into the stories behind some of the world's most beautiful architectural marvels. Through her writing, Nina aims to inspire preservation and appreciation for incredible locations steeped in history.",meta_title:"Nina Rossi - LuminousNook Author",meta_description:"Read Nina Rossi's engaging articles on heritage homes and historical landmarks, inspiring readers to appreciate the beauty of architecture and its stories."},{name:"James Wilson",description:"James Wilson is an environmental journalist and travel enthusiast from Sydney, Australia. His writings focus on eco-friendly homes and sustainable tourism, highlighting incredible locations that prioritize environmental responsibility. With years of experience, James advocates for responsible living and travel through compelling narratives.",meta_title:"James Wilson - LuminousNook Author",meta_description:"Explore James Wilson's articles on eco-friendly homes and sustainable tourism, as he shares his passion for responsible living and incredible locations."},{name:"Anya Petrov",description:"Anya Petrov is a Russian photographer and writer who captures the essence of beautiful homes in extraordinary locations. Based in St. Petersburg, Anya blends her skills in photography with eloquent writing, creating visually stunning articles that showcase architecture and nature. Her perspective brings a unique touch to LuminousNook.",meta_title:"Anya Petrov - LuminousNook Author",meta_description:"Join Anya Petrov on a visual journey through beautiful homes and remarkable locations, where photography meets storytelling."},{name:"David Chang",description:"David Chang is a lifestyle writer and urban planner based in Hong Kong. With a background in architecture and urban development, he provides insightful commentary on contemporary homes in vibrant cities. David's articles reflect his passion for thoughtful design and urban living, making him a key voice on LuminousNook.",meta_title:"David Chang - LuminousNook Author",meta_description:"Explore David Chang's insightful writings on contemporary homes and urban living, blending his expertise in architecture and lifestyle."},{name:"Carmen Smith",description:"Carmen Smith is a British-American interior designer and lifestyle blogger based in Los Angeles. With a knack for transforming spaces into cozy retreats, she shares her designs and inspirations through her articles. Carmen's vibrant personality and innovative designs make her a beloved contributor to LuminousNook.",meta_title:"Carmen Smith - LuminousNook Author",meta_description:"Get inspired by Carmen Smith's creative articles on interior design and lifestyle, showcasing beautiful homes and incredible locations."}],t=a.reduce(((e,i)=>Object.assign(Object.assign({},e),{[i.name]:{title:i.meta_title,description:i.meta_description}})),{});exports.AUTHORS_INFO=a,exports.AUTHORS_META=t,exports.PAGES_SEO=i;
@@ -0,0 +1 @@
1
+ :root{--gray-4-a:rgba(0,0,0,0.45);--text-secondary:rgba(0,0,0,0.65);--text-primary:rgba(0,0,0,0.88);--border-color-border-secondary:#F0F0F0;--background-color-bg-base:#FFF;}
@@ -0,0 +1 @@
1
+ :root{--font-size-xx-small:0.625rem;--font-size-x-small:0.75rem;--font-size-small:0.875rem;--font-size-medium:1rem;--font-size-large:1.25rem;--font-size-x-large:1.5rem;--font-size-xx-large:2rem;--h1-font-size:38px;--h1-line-height:46px;--h2-font-size:30px;--h2-line-height:38px;--h3-font-size:24px;--h3-line-height:32px;--h4-font-size:20px;--h4-line-height:28px;--h5-font-size:16px;--h5-line-height:24px;}
@@ -0,0 +1 @@
1
+ html,body,#root {height:100%;width:100%;}body {display:flex;flex-direction:column;align-items:center;margin:0;padding:0;background-color:var(--background-color-bg-base);}#___gatsby {width:100%;}.ant-app {height:100%;}.ant-dropdown-menu,.ant-select-dropdown,.ant-select-selector,.ant-popover-inner {border-radius:8px!important;}
@@ -0,0 +1 @@
1
+ :root{--gap-lg:24px;--gap-md:16px;--gap-sm:12px;--gap-xs:8px;--gap-xss:4px;--padding-lg:24px;--padding-md:16px;--padding-sm:12px;--padding-xs:8px;--padding-xss:4px;--margin-hg:36px;--margin-lg:24px;--margin-md:16px;--margin-sm:12px;--margin-xs:8px;--margin-xss:4px;}
@@ -0,0 +1 @@
1
+ :root {--theme-color-9:#2a2d34;--theme-color-8:#4d535b;--theme-color-7:#8d919b;--theme-color-6:#b7b8c1;--theme-color-5:#e0e1e5;--theme-color-3:#f5f5f7;--theme-color-2:#f3f4f6;--color-bg-layout:#ffffff;--color-bg-hover:#eaedef;--article-border-radius:25px;--btn-border-radius:6px;--category-border-radius:30px;}
@@ -0,0 +1 @@
1
+ @import "sizing.css";@import "colors.css";@import "fonts.css";@import "theme.css";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tedo-publisher",
3
- "version": "1.3.280",
3
+ "version": "1.3.282",
4
4
  "description": "Package for config files and reusable code/components between projects",
5
5
  "main": "dist/index.js",
6
6
  "files": [