tedo-publisher 1.3.276 → 1.3.278

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. package/dist/chopchopchronicles/data.d.ts +162 -0
  2. package/dist/chopchopchronicles/data.js +1 -0
  3. package/dist/chopchopchronicles/filters.d.ts +28 -0
  4. package/dist/chopchopchronicles/filters.js +1 -0
  5. package/dist/chopchopchronicles/helpers.d.ts +3 -0
  6. package/dist/chopchopchronicles/helpers.js +1 -0
  7. package/dist/chopchopchronicles/index.d.ts +15 -0
  8. package/dist/chopchopchronicles/index.js +1 -0
  9. package/dist/chopchopchronicles/prompts/data.d.ts +7 -0
  10. package/dist/chopchopchronicles/prompts/data.js +1 -0
  11. package/dist/chopchopchronicles/prompts/gpt35turbo/articles.d.ts +6 -0
  12. package/dist/chopchopchronicles/prompts/gpt35turbo/articles.js +1 -0
  13. package/dist/chopchopchronicles/prompts/gpt4oMini/articles.d.ts +6 -0
  14. package/dist/chopchopchronicles/prompts/gpt4oMini/articles.js +1 -0
  15. package/dist/chopchopchronicles/prompts/images.d.ts +4 -0
  16. package/dist/chopchopchronicles/prompts/images.js +1 -0
  17. package/dist/chopchopchronicles/seo.d.ts +23 -0
  18. package/dist/chopchopchronicles/seo.js +1 -0
  19. package/dist/chopchopchronicles/styles/colors.css +1 -0
  20. package/dist/chopchopchronicles/styles/fonts.css +1 -0
  21. package/dist/chopchopchronicles/styles/global.css +1 -0
  22. package/dist/chopchopchronicles/styles/sizing.css +1 -0
  23. package/dist/chopchopchronicles/styles/theme.css +1 -0
  24. package/dist/chopchopchronicles/styles/vars.css +1 -0
  25. package/dist/feastfrenzy/data.d.ts +1 -1
  26. package/dist/forkandfeasts/data.d.ts +193 -0
  27. package/dist/forkandfeasts/data.js +1 -0
  28. package/dist/forkandfeasts/filters.d.ts +28 -0
  29. package/dist/forkandfeasts/filters.js +1 -0
  30. package/dist/forkandfeasts/helpers.d.ts +3 -0
  31. package/dist/forkandfeasts/helpers.js +1 -0
  32. package/dist/forkandfeasts/index.d.ts +15 -0
  33. package/dist/forkandfeasts/index.js +1 -0
  34. package/dist/forkandfeasts/prompts/data.d.ts +7 -0
  35. package/dist/forkandfeasts/prompts/data.js +1 -0
  36. package/dist/forkandfeasts/prompts/gpt35turbo/articles.d.ts +6 -0
  37. package/dist/forkandfeasts/prompts/gpt35turbo/articles.js +1 -0
  38. package/dist/forkandfeasts/prompts/gpt4oMini/articles.d.ts +6 -0
  39. package/dist/forkandfeasts/prompts/gpt4oMini/articles.js +1 -0
  40. package/dist/forkandfeasts/prompts/images.d.ts +4 -0
  41. package/dist/forkandfeasts/prompts/images.js +1 -0
  42. package/dist/forkandfeasts/seo.d.ts +23 -0
  43. package/dist/forkandfeasts/seo.js +1 -0
  44. package/dist/forkandfeasts/styles/colors.css +1 -0
  45. package/dist/forkandfeasts/styles/fonts.css +1 -0
  46. package/dist/forkandfeasts/styles/global.css +1 -0
  47. package/dist/forkandfeasts/styles/sizing.css +1 -0
  48. package/dist/forkandfeasts/styles/theme.css +1 -0
  49. package/dist/forkandfeasts/styles/vars.css +1 -0
  50. package/dist/gigglyx/data.d.ts +1 -1
  51. package/dist/recipesrhapsody/data.d.ts +1 -1
  52. package/package.json +1 -1
@@ -0,0 +1,162 @@
1
+ export declare const dataStructure: {
2
+ recipes: {
3
+ title: string;
4
+ description: string;
5
+ slug: string;
6
+ children: {
7
+ quickAndEasyRecipes: {
8
+ title: string;
9
+ description: string;
10
+ slug: string;
11
+ children: null;
12
+ };
13
+ healthyRecipes: {
14
+ title: string;
15
+ description: string;
16
+ slug: string;
17
+ children: null;
18
+ };
19
+ internationalCuisine: {
20
+ title: string;
21
+ description: string;
22
+ slug: string;
23
+ children: null;
24
+ };
25
+ seasonalFavorites: {
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
+ cookingTechniques: {
40
+ title: string;
41
+ description: string;
42
+ slug: string;
43
+ children: {
44
+ bakingBasics: {
45
+ title: string;
46
+ description: string;
47
+ slug: string;
48
+ children: null;
49
+ };
50
+ grillingAndSmoking: {
51
+ title: string;
52
+ description: string;
53
+ slug: string;
54
+ children: null;
55
+ };
56
+ knifeSkills: {
57
+ title: string;
58
+ description: string;
59
+ slug: string;
60
+ children: null;
61
+ };
62
+ mealPrepTips: {
63
+ title: string;
64
+ description: string;
65
+ slug: string;
66
+ children: null;
67
+ };
68
+ other: {
69
+ title: string;
70
+ description: string;
71
+ slug: string;
72
+ children: null;
73
+ };
74
+ };
75
+ };
76
+ ingredientSpotlights: {
77
+ title: string;
78
+ description: string;
79
+ slug: string;
80
+ children: {
81
+ superfoods: {
82
+ title: string;
83
+ description: string;
84
+ slug: string;
85
+ children: null;
86
+ };
87
+ herbsAndSpices: {
88
+ title: string;
89
+ description: string;
90
+ slug: string;
91
+ children: null;
92
+ };
93
+ vegetableVariety: {
94
+ title: string;
95
+ description: string;
96
+ slug: string;
97
+ children: null;
98
+ };
99
+ meatAndSeafood: {
100
+ title: string;
101
+ description: string;
102
+ slug: string;
103
+ children: null;
104
+ };
105
+ other: {
106
+ title: string;
107
+ description: string;
108
+ slug: string;
109
+ children: null;
110
+ };
111
+ };
112
+ };
113
+ culinaryAdventures: {
114
+ title: string;
115
+ description: string;
116
+ slug: string;
117
+ children: {
118
+ exoticFlavors: {
119
+ title: string;
120
+ description: string;
121
+ slug: string;
122
+ children: null;
123
+ };
124
+ foodCulture: {
125
+ title: string;
126
+ description: string;
127
+ slug: string;
128
+ children: null;
129
+ };
130
+ traditionalDishExploration: {
131
+ title: string;
132
+ description: string;
133
+ slug: string;
134
+ children: null;
135
+ };
136
+ culinaryTravel: {
137
+ title: string;
138
+ description: string;
139
+ slug: string;
140
+ children: null;
141
+ };
142
+ other: {
143
+ title: string;
144
+ description: string;
145
+ slug: string;
146
+ children: null;
147
+ };
148
+ };
149
+ };
150
+ };
151
+ export declare const authors: Record<string, string>;
152
+ export declare const authorsNames: string[];
153
+ export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83C\uDF7D\uFE0F\uD83D\uDC69\u200D\uD83C\uDF73\uD83D\uDCD6\uD83E\uDD58";
154
+ export declare const categories: ("recipes" | "ingredientSpotlights" | "cookingTechniques" | "culinaryAdventures")[];
155
+ export declare const subcategories: string[];
156
+ export declare const subsubcategories: string[];
157
+ export type Category = keyof typeof dataStructure;
158
+ export type CategoryNode = (typeof dataStructure)[Category];
159
+ export type SubcategoryKeyByCategory<T extends Category> = (typeof dataStructure)[T]['children'];
160
+ export declare const startDate = "2024-09-19T00:00:00Z";
161
+ export declare const devBucketName = "idn-chopchopchronicles-dev";
162
+ export declare const prodBucketName = "idn-chopchopchronicles";
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./seo.js");const i={recipes:{title:"Delicious Recipes to Inspire Your Culinary Journey 🍳",description:"Explore ChopChopChronicles for a vast selection of culinary adventures, quick meals, healthy options, and international delights to inspire you! 🍽️",slug:"delicious-recipes-culinary-journey",children:{quickAndEasyRecipes:{title:"Quick and Easy Recipes for Busy Cooks ⏰",description:"Discover quick and easy recipes to whip up delicious meals in no time, perfect for busy lifestyles. Enhance your cooking experience with these dishes! 🍝",slug:"quick-and-easy-recipes",children:null},healthyRecipes:{title:"Healthy Recipes for a Wholesome Lifestyle 🌱",description:"Embrace a healthier lifestyle with our curated healthy recipes that prioritize nutritious ingredients while offering great taste. Indulge without guilt! 🥗",slug:"healthy-recipes",children:null},internationalCuisine:{title:"Explore International Cuisines from Around the World 🌍",description:"Travel the globe through flavors with our international cuisine recipes. Discover exotic ingredients and cooking techniques to expand your palate! 🍛",slug:"international-cuisine",children:null},seasonalFavorites:{title:"Seasonal Favorites for Every Palate ☀️❄️",description:"Celebrate the seasons with our favorite recipes that highlight seasonal ingredients and dishes, ensuring flavorful meals all year round! 🥘",slug:"seasonal-favorites",children:null},other:{title:"Other Unique Recipes to Spark Your Creativity 🔥",description:"Dive into a collection of unique and unconventional recipes that inspire creativity in the kitchen and offer fun cooking adventures! 🍰",slug:"other-unique-recipes",children:null}}},cookingTechniques:{title:"Mastering Cooking Techniques: Elevate Your Culinary Skills 🌟",description:"Explore essential cooking techniques that perfect your culinary prowess. Dive into baking, grilling, knife skills, meal prep, and more! 🍳",slug:"mastering-cooking-techniques",children:{bakingBasics:{title:"Baking Basics: The Foundation of Every Great Cook 🍞",description:"Uncover the essentials of baking with our comprehensive guide. Perfect your pastry skills and create delectable treats right at home! 🥧",slug:"baking-basics",children:null},grillingAndSmoking:{title:"Grilling and Smoking: Ignite Your Culinary Adventure! 🔥",description:"Discover the art of grilling and smoking to transform your meals. Learn techniques that make every barbecue a hit and tantalizing! 🍖",slug:"grilling-and-smoking",children:null},knifeSkills:{title:"Knife Skills: Cut Your Way to Culinary Excellence 🔪",description:"Master knife skills that will revolutionize your cooking experience. Learn precise techniques for efficient and safe food preparation! 🥗",slug:"knife-skills",children:null},mealPrepTips:{title:"Meal Prep Tips: Save Time & Elevate Your Dining Experience ⏰",description:"Streamline your cooking with effective meal prep tips. Discover strategies that save time while delivering delicious meals! 🍲",slug:"meal-prep-tips",children:null},other:{title:"Other Cooking Techniques: Explore Culinary Innovations 🌍",description:"Delve into diverse cooking techniques that break the mold. Expand your culinary repertoire with unexpected and exciting methods! 🍽️",slug:"other-cooking-techniques",children:null}}},ingredientSpotlights:{title:"Explore the World of Ingredients: Superfoods, Herbs, and More!",description:"Delve into our ingredient spotlights where we explore superfoods, herbs, and seafood to elevate your culinary skills and inspire delicious meals! 🍽️✨",slug:"ingredient-spotlights",children:{superfoods:{title:"Unleash the Power of Superfoods in Your Cooking! 💪",description:"Discover nutrient-dense superfoods to boost your health and culinary creativity. Elevate your meals with these powerhouse ingredients! 🥑🍓",slug:"superfoods",children:null},herbsAndSpices:{title:"Herbs and Spices: The Magic of Flavor in Every Dish! 🌿✨",description:"Explore the vibrant world of herbs and spices that transform simple recipes into extraordinary culinary experiences. Season your way to perfection! 🌶️🍃",slug:"herbs-and-spices",children:null},vegetableVariety:{title:"Celebrate the Rich Variety of Vegetables in Your Kitchen! 🥕🥦",description:"Uncover the diversity of vegetables that not only add flavor but also nutrition to your meals. Get inspired to create colorful dishes! 🌈🍽️",slug:"vegetable-variety",children:null},meatAndSeafood:{title:"Mastering Meat and Seafood: Culinary Techniques & Tips! 🥩🐟",description:"Elevate your cooking skills with premium meat and seafood tips. Learn techniques to prepare delectable dishes that satisfy your cravings! 🍤🍗",slug:"meat-and-seafood",children:null},other:{title:"Discover Unique Ingredients to Enrich Your Culinary Journey! 🌍🧄",description:"Explore a variety of unique ingredients that can add excitement to your cooking adventures. Step outside the ordinary! 🌰🍖",slug:"other",children:null}}},culinaryAdventures:{title:"Explore Diverse Culinary Adventures 🌍",description:"Dive into the world of culinary adventures! Discover recipes, exotic flavors, and food culture to inspire your cooking journey. 🥘✨",slug:"culinary-adventures",children:{exoticFlavors:{title:"Discover Exotic Flavors Around the World 🍽️",description:"Explore a variety of exotic flavors that tantalize your taste buds and elevate your culinary skills with unique recipes. 🌶️🥥",slug:"exotic-flavors",children:null},foodCulture:{title:"Unravel Food Culture from Different Countries 🍲",description:"Delve into the rich food culture of various regions, uncovering traditions, and recipes that define their culinary heritage. 🌏🥗",slug:"food-culture",children:null},traditionalDishExploration:{title:"Explore Traditional Dishes from Around the Globe 🍛",description:"Embark on a journey exploring traditional dishes that showcase cultural diversity and culinary art. Savor the tastes of nostalgia! 🥘🌍",slug:"traditional-dish-exploration",children:null},culinaryTravel:{title:"Culinary Travel: Tasting the World 🌎✈️",description:"Travel through tastes and experiences with culinary travel guides that inspire your journey to discover global cuisines. 🍽️🌏",slug:"culinary-travel",children:null},other:{title:"Other Culinary Adventures You Might Enjoy 🍴✨",description:"Explore a mix of articles about culinary fun and diverse adventures that contribute to an enriched cooking experience. 🍳🥙",slug:"other-culinary-adventures",children:null}}}},t=e.AUTHORS_INFO.reduce(((e,i)=>Object.assign(Object.assign({},e),{[i.name]:[i.description]})),{}),r=e.AUTHORS_INFO.map((e=>e.name)),n="🍽️👩‍🍳📖🥘",o=Object.keys(i),s=[],l=[];for(const e of o){const t=i[e];if(null==t?void 0:t.children){s.push(...Object.keys(t.children));for(const e of s){const i=t.children[e];(null==i?void 0:i.children)&&l.push(...Object.keys(i.children))}}}const a="2024-09-19T00:00:00Z",u="chopchopchronicles",c=`idn-${u}-dev`,d=`idn-${u}`;exports.DEFAULT_DESCRIPTION_EMOJIS=n,exports.authors=t,exports.authorsNames=r,exports.categories=o,exports.dataStructure=i,exports.devBucketName=c,exports.prodBucketName=d,exports.startDate=a,exports.subcategories=s,exports.subsubcategories=l;
@@ -0,0 +1,28 @@
1
+ export declare enum FiltersNames {
2
+ FlavorfulJourneys = "Flavorful Journeys",
3
+ CuisineCategories = "Cuisine Categories",
4
+ CookingTechniques = "Cooking Techniques",
5
+ SeasonalInspirations = "Seasonal Inspirations",
6
+ SkillLevel = "Skill Level"
7
+ }
8
+ type FlavorfulJourneysValues = 'Spicy' | 'Savory' | 'Sweet' | 'Umami' | 'Zesty';
9
+ type CuisineCategoriesValues = 'Italian' | 'Asian' | 'Mexican' | 'Mediterranean' | 'Vegetarian';
10
+ type CookingTechniquesValues = 'Grilling' | 'Baking' | 'Stir-frying' | 'Slow Cooking' | 'Sous Vide';
11
+ type SeasonalInspirationsValues = 'Spring Freshness' | 'Summer Grilling' | 'Autumn Harvest' | 'Winter Comfort Foods';
12
+ type SkillLevelValues = 'Beginner' | 'Intermediate' | 'Advanced' | 'Expert' | 'Culinary Enthusiast';
13
+ export type ArticleFilters = {
14
+ [FiltersNames.FlavorfulJourneys]: FlavorfulJourneysValues[];
15
+ [FiltersNames.CuisineCategories]: CuisineCategoriesValues[];
16
+ [FiltersNames.CookingTechniques]: CookingTechniquesValues[];
17
+ [FiltersNames.SeasonalInspirations]: SeasonalInspirationsValues[];
18
+ [FiltersNames.SkillLevel]: SkillLevelValues[];
19
+ };
20
+ export declare const flavorfulJourneysValues: FlavorfulJourneysValues[];
21
+ export declare const cuisineCategoriesValues: CuisineCategoriesValues[];
22
+ export declare const cookingTechniquesValues: CookingTechniquesValues[];
23
+ export declare const seasonalInspirationsValues: SeasonalInspirationsValues[];
24
+ export declare const skillLevelValues: SkillLevelValues[];
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={})).FlavorfulJourneys="Flavorful Journeys",e.CuisineCategories="Cuisine Categories",e.CookingTechniques="Cooking Techniques",e.SeasonalInspirations="Seasonal Inspirations",e.SkillLevel="Skill Level";const s=["Spicy","Savory","Sweet","Umami","Zesty"],i=["Italian","Asian","Mexican","Mediterranean","Vegetarian"],r=["Grilling","Baking","Stir-frying","Slow Cooking","Sous Vide"],t=["Spring Freshness","Summer Grilling","Autumn Harvest","Winter Comfort Foods"],o=["Beginner","Intermediate","Advanced","Expert","Culinary Enthusiast"],l={[exports.FiltersNames.FlavorfulJourneys]:[],[exports.FiltersNames.CuisineCategories]:[],[exports.FiltersNames.CookingTechniques]:[],[exports.FiltersNames.SeasonalInspirations]:[],[exports.FiltersNames.SkillLevel]:[]},a={[exports.FiltersNames.FlavorfulJourneys]:s,[exports.FiltersNames.CuisineCategories]:i,[exports.FiltersNames.CookingTechniques]:r,[exports.FiltersNames.SeasonalInspirations]:t,[exports.FiltersNames.SkillLevel]:o},n=()=>JSON.stringify(a,null,2);exports.cookingTechniquesValues=r,exports.cuisineCategoriesValues=i,exports.flavorfulJourneysValues=s,exports.fullFilters=a,exports.getFiltersTypesJSON=n,exports.initialFilters=l,exports.seasonalInspirationsValues=t,exports.skillLevelValues=o;
@@ -0,0 +1,3 @@
1
+ import { GetDefaultImagesFrontmatter } from 'src/common/types';
2
+ export declare const getDefaultImagesFrontmatter: GetDefaultImagesFrontmatter;
3
+ export declare const prohibitedWordsInAltTitle: RegExp;
@@ -0,0 +1 @@
1
+ "use strict";const e=(e,n)=>{const t=n(e),i=undefined,a=undefined,l=undefined,o=undefined;return[{alt:`${e} Introduction`,filename:`${t}-introduction.png`,title:`${e} Introduction`},{alt:`Magnificent ${e}`,filename:`Magnificent-${t}.png`,title:`Magnificent ${e}`},{alt:`Notable ${e}`,filename:`${t}-notable.png`,title:`Notable ${e}`},{alt:`${e} Summary`,filename:`${t}-summary.png`,title:`${e} Summary`}]},n=/\b(?:hands|men|women|human|people|chief|family|mixing|serving|tasting|rolling)\b/i;exports.getDefaultImagesFrontmatter=e,exports.prohibitedWordsInAltTitle=n;
@@ -0,0 +1,15 @@
1
+ export * from './data';
2
+ export * from './filters';
3
+ export * from './helpers';
4
+ export * from './prompts/images';
5
+ export * from './seo';
6
+ import './styles/colors.css';
7
+ import './styles/fonts.css';
8
+ import './styles/global.css';
9
+ import './styles/sizing.css';
10
+ import './styles/vars.css';
11
+ import './styles/theme.css';
12
+ import * as gpt35Articles from './prompts/gpt35turbo/articles';
13
+ import * as gpt4oMiniArticles from './prompts/gpt4oMini/articles';
14
+ export { gpt35Articles, gpt4oMiniArticles };
15
+ export * from './prompts/data';
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./data.js"),t=require("./filters.js"),s=require("./helpers.js"),r=require("./prompts/images.js"),o=require("./seo.js"),a=require("./prompts/gpt35turbo/articles.js"),i=require("./prompts/gpt4oMini/articles.js"),p=require("./prompts/data.js");exports.DEFAULT_DESCRIPTION_EMOJIS=e.DEFAULT_DESCRIPTION_EMOJIS,exports.authors=e.authors,exports.authorsNames=e.authorsNames,exports.categories=e.categories,exports.dataStructure=e.dataStructure,exports.devBucketName=e.devBucketName,exports.prodBucketName=e.prodBucketName,exports.startDate=e.startDate,exports.subcategories=e.subcategories,exports.subsubcategories=e.subsubcategories,Object.defineProperty(exports,"FiltersNames",{enumerable:!0,get:function(){return t.FiltersNames}}),exports.cookingTechniquesValues=t.cookingTechniquesValues,exports.cuisineCategoriesValues=t.cuisineCategoriesValues,exports.flavorfulJourneysValues=t.flavorfulJourneysValues,exports.fullFilters=t.fullFilters,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.initialFilters=t.initialFilters,exports.seasonalInspirationsValues=t.seasonalInspirationsValues,exports.skillLevelValues=t.skillLevelValues,exports.getDefaultImagesFrontmatter=s.getDefaultImagesFrontmatter,exports.prohibitedWordsInAltTitle=s.prohibitedWordsInAltTitle,exports.getOpenAiBasedImagePrompt=r.getOpenAiBasedImagePrompt,exports.getOpenAiBasedImagePromptDalle2=r.getOpenAiBasedImagePromptDalle2,exports.getStableDiffusionImagePrompt=r.getStableDiffusionImagePrompt,exports.AUTHORS_INFO=o.AUTHORS_INFO,exports.AUTHORS_META=o.AUTHORS_META,exports.PAGES_SEO=o.PAGES_SEO,Object.defineProperty(exports,"PageNames",{enumerable:!0,get:function(){return o.PageNames}}),exports.gpt35Articles=a,exports.gpt4oMiniArticles=i,exports.END_STEP=p.END_STEP,exports.FILTERS_INFO=p.FILTERS_INFO,exports.IMAGES_PROHIBITED_WORDS=p.IMAGES_PROHIBITED_WORDS,exports.START_STEP=p.START_STEP,exports.TARGET_AUDIENCE=p.TARGET_AUDIENCE,exports.ZERO_SECTION=p.ZERO_SECTION,exports.portalInfo=p.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: ChopChopChronicles is an infotainment articles portal that celebrates the delightful world of recipes and culinary adventures. It offers a variety of articles that delve into cooking techniques, unique recipes, and culinary tips designed to inspire both novice cooks and seasoned chefs alike.\n - Detailed description: ChopChopChronicles is a comprehensive online portal dedicated to food enthusiasts seeking to enrich their culinary experiences. With a diverse collection of articles, the platform covers a spectrum of topics from mouth-watering recipes and seasonal cooking guides to innovative kitchen hacks and ingredient spotlights. Each article is crafted to engage readers with rich, flavorful content that not only instructs but also entertains. Whether you're looking to explore exotic cuisines, master classic dishes, or simply whip up a quick meal, ChopChopChronicles offers valuable insights and creative inspirations that cater to all levels of cooking expertise.\n - Target audience: The target audience for ChopChopChronicles includes culinary enthusiasts, home cooks, and food lovers of all ages who seek to enhance their cooking skills and discover new recipes. The portal appeals to individuals looking for both practical culinary advice and inspiration for their next meal, ranging from beginners who are just starting to explore the kitchen to experienced chefs eager to try new techniques and flavors.\n\n";
2
+ export declare const ZERO_SECTION = "This is important to include the following headers to the section, ONLY if they are applicable to the title, abstract and description of the article:\n## Recipe Overview\n - Recipe Name\n - Cuisine Type\n\n## Ingredients\n - List of Ingredients with Measurements\n - Substitutions for Common Ingredients\n\nYou can change the headers and topics to make a them more coherent with the description of the article.\nStart text with first Heading H2 - Recipe Overview, IF it's applicable to the theme of the article.\n";
3
+ export declare const START_STEP = "highlighting the key points that will be discussed and the relevance of the topic";
4
+ export declare const END_STEP = "synthesizing the information presented throughout";
5
+ export declare const TARGET_AUDIENCE = "food lovers of all ages";
6
+ export declare const IMAGES_PROHIBITED_WORDS = "any numbers, image, slug, step, seo, hand / hands, men, women, human, people, chief, preparing, process, cooking, mixing, serving, tasting, rolling";
7
+ export declare const FILTERS_INFO: string;
@@ -0,0 +1 @@
1
+ "use strict";var e;const t="The article is written for the web portal.I will give you important information regarding the web portal:\n - Brief description: ChopChopChronicles is an infotainment articles portal that celebrates the delightful world of recipes and culinary adventures. It offers a variety of articles that delve into cooking techniques, unique recipes, and culinary tips designed to inspire both novice cooks and seasoned chefs alike.\n - Detailed description: ChopChopChronicles is a comprehensive online portal dedicated to food enthusiasts seeking to enrich their culinary experiences. With a diverse collection of articles, the platform covers a spectrum of topics from mouth-watering recipes and seasonal cooking guides to innovative kitchen hacks and ingredient spotlights. Each article is crafted to engage readers with rich, flavorful content that not only instructs but also entertains. Whether you're looking to explore exotic cuisines, master classic dishes, or simply whip up a quick meal, ChopChopChronicles offers valuable insights and creative inspirations that cater to all levels of cooking expertise.\n - Target audience: The target audience for ChopChopChronicles includes culinary enthusiasts, home cooks, and food lovers of all ages who seek to enhance their cooking skills and discover new recipes. The portal appeals to individuals looking for both practical culinary advice and inspiration for their next meal, ranging from beginners who are just starting to explore the kitchen to experienced chefs eager to try new techniques and flavors.\n\n",i="This is important to include the following headers to the section, ONLY if they are applicable to the title, abstract and description of the article:\n## Recipe Overview\n - Recipe Name\n - Cuisine Type\n\n## Ingredients\n - List of Ingredients with Measurements\n - Substitutions for Common Ingredients\n\nYou can change the headers and topics to make a them more coherent with the description of the article.\nStart text with first Heading H2 - Recipe Overview, IF it's applicable to the theme of the article.\n",o="highlighting the key points that will be discussed and the relevance of the topic",n="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=n,exports.FILTERS_INFO=s,exports.IMAGES_PROHIBITED_WORDS=a,exports.START_STEP=o,exports.TARGET_AUDIENCE=r,exports.ZERO_SECTION=i,exports.portalInfo=t;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt35turbo/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),p=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),i=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=i,exports.getFiltersPrompt=p,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt4oMini/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),i=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),p=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=p,exports.getFiltersPrompt=i,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,4 @@
1
+ import { GetOpenAiBasedImagePrompt, GetStableDiffusionImagePrompt } from 'src/common/types';
2
+ export declare const getStableDiffusionImagePrompt: GetStableDiffusionImagePrompt;
3
+ export declare const getOpenAiBasedImagePrompt: GetOpenAiBasedImagePrompt;
4
+ export declare const getOpenAiBasedImagePromptDalle2: GetOpenAiBasedImagePrompt;
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../common/prompts/images.js");const o=({title:o,alt:a,articleTitle:r})=>({prompt:`Award-winning hyper-real cinematic photo of a ${o}, ${a}, for an article ${r} from professional food photograph for a glossy recipe magazine, food style photography, glossy recipe magazine, photorealistic, ultra realistic, maximum detail, highly detailed, commercial photography, foreground focus, delish.com, allrecipes.com, foodnetwork.com, epicurious, instagram, 4K, 8K, volumetric light, cinematic, octane render, uplight, no blur, depth of field, dof, film, bokeh, foreground focus, 35mm photograph`,negativePrompt:e.SD_NEGATIVE_PROMPT}),a=({title:e,alt:o,articleTitle:a})=>`I NEED a hyper-real illustration of a ${e} at food style photography, ${o}, for an article ${a} for a glossy recipe magazine, photorealistic, ultra realistic, maximum detail, highly detailed, food style, food style photography, professional food photography, commercial photography, foreground focus, recipes.com, delish.com, epicurious, instagram, 4K, 8K, volumetric light, octane render, uplight, no blur, depth of field, dof, bokeh, foreground focus. Please exclude any: Photocamera, videocamera, Spotlight, soffit, ramp, scanners, strobe, soffit truss, film props, radio, cooking timer, watches, clocks, men, woman, people, hand, nands, leg, legs, font, username, error, words, letters, digits, autograph, trademark, name, easy-negative, cartoon, worst quality, low quality, blind, bad eyes, ugly eyes, dead eyes, greyscale, monochrome, vignette, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, censored, rabs, muscular, rib, blurry, blur, grainy, teeth, low resolution, lowres, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bw, bad photo, bad photography, bad art, morbid, ugly, asymmetrical, mutated malformed, mutilated, poorly lit, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, duplicate, airbrushed,, anime, semi-realistic, cgi, render, 3D, blender, digital art, manga, amateur, 3D, 3D Game, 3D Game Scene, 3D Character, bad hands, , bad body, bad face, bad teeth, bad arms, bad legs, deformities, drawing, deformed iris, deformed pupils, deformed, painting, crayon, sketch, graphite, impressionist, noisy, poorly drawn hands, poorly drawn face, poorly drawn eyes, mutation, bad proportions, cloned face, disfigured, gross proportions, malformed limbs, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck, incoherent from this hyper-real illustration of a ${e}`,r=({title:e})=>`\n\tPhotorealistic highly detailed image of ingredients for ${e}, arranged professionally as if for a food photography shoot. image should showcase maximum detail realism, with a focus on foreground, emulating the style of a high-definition, 8k resolution professional food photograph. lighting should be volumetric and uplit, with a depth of field and bokeh effect, avoiding any blur for clarity. overall aesthetic should be reminiscent of the Kodak Portrait 800 style.\n\tNegative Prompt:\n\teasy-negative, cartoon, worst quality, low quality, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, blurry, blur, grainy, teeth, low resolution, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, airbrushed, anime, semi-realistic, cgi, render, 3D, blender, manga, amateur, 3D, 3D Game, drawing, sketch\n`;exports.getOpenAiBasedImagePrompt=a,exports.getOpenAiBasedImagePromptDalle2=r,exports.getStableDiffusionImagePrompt=o;
@@ -0,0 +1,23 @@
1
+ export interface PageSeoData {
2
+ title: string;
3
+ description: string;
4
+ }
5
+ export declare enum PageNames {
6
+ Authors = "authors",
7
+ Home = "home",
8
+ NotFound = "not-found",
9
+ AboutUs = "about-us",
10
+ PrivacyPolicy = "privacy-policy",
11
+ Terms = "terms",
12
+ Sitemap = "sitemap"
13
+ }
14
+ export type PagesSeo = Record<PageNames, PageSeoData>;
15
+ export interface AuthorInfo {
16
+ name: string;
17
+ description: string;
18
+ meta_title: string;
19
+ meta_description: string;
20
+ }
21
+ export declare const PAGES_SEO: PagesSeo;
22
+ export declare const AUTHORS_INFO: AuthorInfo[];
23
+ export declare const AUTHORS_META: Record<string, PageSeoData>;
@@ -0,0 +1 @@
1
+ "use strict";var e;exports.PageNames=void 0,(e=exports.PageNames||(exports.PageNames={})).Authors="authors",e.Home="home",e.NotFound="not-found",e.AboutUs="about-us",e.PrivacyPolicy="privacy-policy",e.Terms="terms",e.Sitemap="sitemap";const i={[exports.PageNames.Authors]:{title:"Meet Our Culinary Experts | ChopChopChronicles",description:"Discover delicious recipes and tips from our talented chefs! 🍳👩‍🍳 Join us on a flavor-filled journey!"},[exports.PageNames.Home]:{title:"Delicious Recipes Await! | ChopChopChronicles",description:"Explore a world of culinary delights with ChopChopChronicles! 🍽️✨ Find your next favorite recipe today!"},[exports.PageNames.NotFound]:{title:"Page Not Found | ChopChopChronicles",description:"Oops! It seems the page you're looking for doesn't exist. 🥺🔍 Check our delicious recipes section instead!"},[exports.PageNames.AboutUs]:{title:"About ChopChopChronicles | Our Culinary Journey",description:"Learn about our passion for food and explore how ChopChopChronicles began! 🌎💚 Join our culinary adventure!"},[exports.PageNames.PrivacyPolicy]:{title:"Privacy Policy | ChopChopChronicles",description:"Your privacy matters! Read our Privacy Policy to understand how we protect your info. 🔒📜"},[exports.PageNames.Terms]:{title:"Terms and Conditions | ChopChopChronicles",description:"Review the terms governing your use of ChopChopChronicles. 📋🔍 Stay informed and enjoy your culinary journey!"},[exports.PageNames.Sitemap]:{title:"Sitemap for Easy Navigation | ChopChopChronicles",description:"Find everything you need at ChopChopChronicles! 🌐🍴 Explore our sitemap for quick access to recipes and more!"}},a=[{name:"Nisha Gupta",description:"Nisha Gupta is a professional food writer and culinary enthusiast with over 10 years of experience in Indian cuisine. She specializes in vegan and vegetarian recipes, showcasing the rich flavors and diverse ingredients of India. Nisha's passion for cooking and sharing her knowledge shines through her recipes, making them accessible and easy to replicate in any home kitchen.",meta_title:"Nisha Gupta - Vegan Culinary Expert at ChopChopChronicles",meta_description:"Explore vegan and vegetarian recipes from Nisha Gupta, a seasoned culinary writer with a decade of experience in Indian cuisine. Discover mouth-watering dishes."},{name:"Rajesh Sharma",description:"Rajesh Sharma has been working in the culinary industry for over 15 years, with expertise in regional Indian cooking. From street food to festive delicacies, his articles reflect his deep understanding and love for India's culinary traditions. As a certified chef, Rajesh shares authentic recipes that cater to home cooks and foodies alike.",meta_title:"Rajesh Sharma - Regional Indian Cuisine Specialist at ChopChopChronicles",meta_description:"Dive into authentic Indian recipes with Rajesh Sharma, a culinary expert with over 15 years of experience in crafting regional Indian dishes. Taste the tradition."},{name:"Anita Desai",description:"Anita Desai is a renowned food photographer and culinary writer, blending her artistic vision and culinary skills to create visually stunning recipes. With a background in food styling, Anita offers a unique perspective on food presentation and photography. Her articles at ChopChopChronicles showcase both delicious dishes and their artistic portrayal.",meta_title:"Anita Desai - Food Photography & Culinary Writer at ChopChopChronicles",meta_description:"Discover visually captivating recipes from Anita Desai, a culinary writer and food photographer. Explore the beauty of Indian cuisine with her artistic touch."},{name:"Vikram Rao",description:"Vikram Rao is a celebrated cookbook author and culinary instructor with roots in traditional Indian cooking. After spending years in the culinary arts, he now teaches home cooks the secrets of spices, preparation methods, and ingredients that define Indian cuisine. His recipes are both educational and flavorful.",meta_title:"Vikram Rao - Traditional Indian Cooking Advocate at ChopChopChronicles",meta_description:"Learn the art of Indian cooking with Vikram Rao, a culinary instructor and cookbook author dedicated to sharing traditional recipes and cooking techniques."},{name:"Meera Singh",description:"Meera Singh is a passionate food blogger and wellness advocate specializing in healthy Indian recipes. With a degree in nutrition, Meera blends her love for cooking with her knowledge of healthy eating, creating balanced meals that don't compromise on taste. Her enthusiasm encourages her readers to explore healthier versions of their favorite dishes.",meta_title:"Meera Singh - Healthy Indian Recipes at ChopChopChronicles",meta_description:"Explore healthy and delicious Indian recipes with Meera Singh, a food blogger and nutrition expert dedicated to promoting a balanced and healthy lifestyle."},{name:"Arjun Malhotra",description:"Arjun Malhotra is a culinary adventurer who travels across India, capturing and sharing regional recipes that tell a story. With a deep respect for local customs and ingredients, Arjun’s articles highlight the rich cultural heritage of Indian food, inspiring readers to embrace the diversity of flavors and techniques.",meta_title:"Arjun Malhotra - Culinary Explorer at ChopChopChronicles",meta_description:"Join Arjun Malhotra on a culinary journey through India with authentic regional recipes. Discover the rich tapestry of flavors and traditions in his articles."},{name:"Sita Mohan",description:"Sita Mohan is a food critic and culinary journalist who brings her discerning palate and writing skills to the world of Indian cuisine. With experience in various food publications, she reviews restaurants and shares her culinary explorations. Her insightful articles guide readers on where to find the best dishes across India.",meta_title:"Sita Mohan - Culinary Critic & Journalist at ChopChopChronicles",meta_description:"Explore the vibrant world of Indian cuisine with Sita Mohan, a food critic and culinary journalist sharing her culinary explorations and restaurant reviews."},{name:"Karan Bhatia",description:"Karan Bhatia is a home cook turned food influencer who inspires his audience with simple yet flavorful Indian recipes. With an engaging social media presence, Karan shares his cooking experiences, tips, and tricks for creating delightful meals with everyday ingredients. His approachable style makes cooking a joy for everyone.",meta_title:"Karan Bhatia - Everyday Indian Cooking at ChopChopChronicles",meta_description:"Get inspired by Karan Bhatia, a food influencer specializing in simple and delicious Indian recipes that make cooking fun and accessible for everyone."},{name:"Pooja Verma",description:"Pooja Verma is a vibrant culinary artist and author known for her creative twist on traditional Indian dishes. With a flair for fusion cuisine, she marries Indian flavors with global culinary techniques. Pooja’s inventive recipes aim to inspire cooks to explore and innovate in their kitchens.",meta_title:"Pooja Verma - Fusion Culinary Artist at ChopChopChronicles",meta_description:"Explore innovative and fusion recipes with Pooja Verma, a culinary artist inspiring creativity in the kitchen by blending traditional Indian flavors with global techniques."},{name:"Deepak Iyer",description:"Deepak Iyer is a passionate baker and food stylist who focuses on combining baking with traditional Indian flavors. His textural and flavorful desserts have gained popularity, and his expertise in creating visually appealing baked goods sets him apart. Deepak’s articles provide insights into Indian baking and dessert recipes.",meta_title:"Deepak Iyer - Indian Baking Expert at ChopChopChronicles",meta_description:"Delve into the world of Indian baking with Deepak Iyer, a food stylist and baker sharing delightful and visually stunning dessert recipes inspired by Indian flavors."},{name:"Riya Sharma",description:"Riya Sharma is a passionate food writer and recipe developer from Mumbai, India. With over a decade of experience in the culinary world, she specializes in Indian vegetarian cuisine and loves to explore regional flavors. Riya has contributed to various food magazines and blogs, sharing her innovative recipes and tips for home cooks.",meta_title:"Riya Sharma - Culinary Expert and Recipe Developer | ChopChopChronicles",meta_description:"Explore the delicious vegetarian recipes and culinary insights of Riya Sharma, a passionate food writer from Mumbai, at ChopChopChronicles."},{name:"Amit Verma",description:"Amit Verma is a seasoned chef and food blogger based in New Delhi, specializing in North Indian street food. With a diploma in culinary arts and years of experience in renowned restaurants, Amit brings authentic flavors and techniques to his home-style recipes, making Indian cuisine accessible for aspiring cooks.",meta_title:"Amit Verma - Street Food Specialist | ChopChopChronicles",meta_description:"Discover the vibrant world of North Indian street food through the recipes and stories of Amit Verma, a chef and food blogger at ChopChopChronicles."},{name:"Meera Gupta",description:"Meera Gupta is an award-winning cookbook author and food stylist from Bangalore. Her culinary journey started in a traditional Indian kitchen, and she has since created a niche for herself by focusing on healthy, modern interpretations of classic recipes. Meera is dedicated to promoting sustainable cooking and plant-based diets.",meta_title:"Meera Gupta - Healthy Cooking Advocate | ChopChopChronicles",meta_description:"Join Meera Gupta on a delicious journey towards healthy Indian cuisine with innovative, plant-based recipes at ChopChopChronicles."},{name:"Rajesh Iyer",description:"Rajesh Iyer is a talented home cook and food writer from Chennai, known for his unique fusion recipes that blend traditional Indian flavors with global culinary techniques. With a passion for experimenting in the kitchen, Rajesh shares his flavorful creations to inspire others to get creative with their cooking.",meta_title:"Rajesh Iyer - Fusion Cuisine Innovator | ChopChopChronicles",meta_description:"Explore playful and creative fusion recipes with Rajesh Iyer, a passionate home cook and food writer, at ChopChopChronicles."},{name:"Nisha Patel",description:"Nisha Patel is a culinary consultant and food photographer from Ahmedabad, focusing on Gujarati cuisine. With a rich heritage in food from her family, Nisha showcases traditional recipes along with modern twists, making her blog a delightful exploration of flavors and techniques.",meta_title:"Nisha Patel - Gujarati Cuisine Specialist | ChopChopChronicles",meta_description:"Dive into the colorful and aromatic world of Gujarati cuisine with Nisha Patel, a culinary consultant and food photographer, at ChopChopChronicles."},{name:"Karan Singh",description:"Karan Singh is a travel and food writer from Kolkata who aims to narrate the stories hidden behind every dish. With a background in journalism, Karan blends storytelling with recipes from across India, reflecting the country’s diverse culinary heritage.",meta_title:"Karan Singh - Culinary Storyteller | ChopChopChronicles",meta_description:"Experience the rich narratives behind Indian recipes with Karan Singh, a travel and food writer, at ChopChopChronicles."},{name:"Sangeeta Joshi",description:"Sangeeta Joshi is a well-known home chef and influencer from Pune, passionate about traditional family recipes. With a focus on preserving culinary heritage, Sangeeta shares her family’s treasured recipes, along with modern adaptations, that resonate with home cooks everywhere.",meta_title:"Sangeeta Joshi - Traditional Recipe Curator | ChopChopChronicles",meta_description:"Reconnect with traditional Indian cooking through the lens of Sangeeta Joshi, a home chef and influencer, at ChopChopChronicles."},{name:"Rohit Bansal",description:"Rohit Bansal, a food scientist and chef from Jaipur, focuses on the science behind cooking to create a fusion of taste and health. His innovative recipes and nutritional insights help readers make informed choices while enjoying delicious meals.",meta_title:"Rohit Bansal - Food Scientist and Chef | ChopChopChronicles",meta_description:"Discover the science of delicious and nutritious cooking with Rohit Bansal, a food scientist and chef, at ChopChopChronicles."},{name:"Anjali Mehta",description:"Anjali Mehta is a culinary artist and recipe blogger from Chandigarh who believes in cooking with love. With a focus on gluten-free and vegan recipes, she shares her journey of healthy eating while still enjoying flavorful dishes.",meta_title:"Anjali Mehta - Gluten-Free and Vegan Recipe Expert | ChopChopChronicles",meta_description:"Embrace healthy eating without sacrificing flavor with Anjali Mehta, a gluten-free and vegan recipe expert at ChopChopChronicles."},{name:"Subhashini Rao",description:"Subhashini Rao is a food stylist and culinary educator from Hyderabad, dedicated to teaching the art of cooking to aspiring chefs. With her rich experience and passion for food presentation, she shares stunning recipes that elevate everyday meals.",meta_title:"Subhashini Rao - Culinary Educator and Food Stylist | ChopChopChronicles",meta_description:"Learn the art of culinary presentation with Subhashini Rao, a food stylist and culinary educator, at ChopChopChronicles."},{name:"Nisha Vora",description:"Nisha Vora is a food blogger and recipe developer known for her vibrant vegetarian dishes. With over 8 years of experience in the culinary world, she combines Indian flavors with global cuisine. Nisha has a degree in Culinary Arts and has been featured in several food magazines and online platforms, sharing her passion for quick, healthy cooking.",meta_title:"Nisha Vora - Culinary Expert at ChopChopChronicles",meta_description:"Explore delicious vegetarian recipes and cooking tips from Nisha Vora, an experienced food blogger at ChopChopChronicles."},{name:"Karan Dhingra",description:"Karan Dhingra is a professional chef and food writer with a special focus on Indian street food. With 10 years of experience in various restaurants around India, he takes pride in bringing authentic street food recipes to your home kitchen. Karan is also an avid traveler, often sharing stories from his culinary adventures.",meta_title:"Karan Dhingra - Street Food Specialist at ChopChopChronicles",meta_description:"Dive into authentic Indian street food recipes with Karan Dhingra, an expert chef and writer at ChopChopChronicles."},{name:"Riya Kapoor",description:"Riya Kapoor is a renowned food stylist and chef who creates visually stunning dishes. With a background in Fine Arts and Culinary Studies, she expertly blends creativity with traditional Indian recipes. Riya has over 7 years of experience in food blogging, known for her unique presentations and engaging storytelling.",meta_title:"Riya Kapoor - Food Stylist and Chef at ChopChopChronicles",meta_description:"Get inspired by visually stunning dishes and creative recipes from Riya Kapoor, a food stylist at ChopChopChronicles."},{name:"Arjun Singh",description:"Arjun Singh is a passionate home cook who shares his love for traditional Indian cuisine through his writing. With over 5 years of experience in food blogging, he emphasizes the importance of preserving age-old recipes while adapting them for modern kitchens. Arjun's approachable style makes cooking accessible to everyone.",meta_title:"Arjun Singh - Home Cook and Recipe Creator at ChopChopChronicles",meta_description:"Discover authentic and modern Indian recipes with home cook Arjun Singh at ChopChopChronicles."},{name:"Fatima Choudhury",description:"Fatima Choudhury is a seasoned cookbook author and culinary educator specializing in Indian sweets. With a degree in Food Science and over a decade of experience, she brings expertise in the art of dessert making. Fatima is dedicated to sharing traditional recipes with a modern twist, making her a sweet addition to ChopChopChronicles.",meta_title:"Fatima Choudhury - Dessert Specialist at ChopChopChronicles",meta_description:"Indulge in the art of Indian desserts with Fatima Choudhury, an expert sweet maker at ChopChopChronicles."},{name:"Sanjay Mehta",description:"Sanjay Mehta is a food entrepreneur and recipe innovator focused on Indian fusion cuisine. With over 12 years of experience in the culinary industry and a flair for creativity, he shares unique recipes that blend traditional cooking techniques with modern flavors to inspire everyday cooks.",meta_title:"Sanjay Mehta - Fusion Cuisine Innovator at ChopChopChronicles",meta_description:"Explore innovative Indian fusion recipes with Sanjay Mehta, a culinary entrepreneur at ChopChopChronicles."},{name:"Priya Patel",description:"Priya Patel is a health-conscious food blogger who specializes in nutritious Indian recipes. With a background in nutrition and over 6 years in food blogging, she combines her knowledge of healthy eating with traditional flavors. Priya aims to empower readers to make better food choices without sacrificing taste.",meta_title:"Priya Patel - Healthy Recipe Developer at ChopChopChronicles",meta_description:"Find nutritious and delicious Indian recipes with health expert Priya Patel at ChopChopChronicles."},{name:"Rajesh Kumar",description:"Rajesh Kumar is a culinary historian and recipe researcher passionate about Indian heritage cuisine. With more than 15 years of experience in food writing, he delves deep into the history of traditional dishes, bringing rich narratives and authentic recipes to ChopChopChronicles.",meta_title:"Rajesh Kumar - Culinary Historian at ChopChopChronicles",meta_description:"Discover the stories behind traditional Indian recipes with culinary historian Rajesh Kumar at ChopChopChronicles."},{name:"Sneha Desai",description:"Sneha Desai is a food photographer and recipe blogger who beautifully captures the essence of Indian cooking. With a passion for storytelling through visuals and 7 years of blogging experience, she shares her culinary journey and inspires others to discover the joy of cooking.",meta_title:"Sneha Desai - Food Photographer and Blogger at ChopChopChronicles",meta_description:"Explore the culinary journey of Sneha Desai, food photographer and blogger, at ChopChopChronicles."},{name:"Vikram Rajput",description:"Vikram Rajput is a chef and food educator known for his innovative cooking workshops and classes focused on Indian cuisine. With 9 years of experience in culinary education, he empowers aspiring cooks to master traditional recipes while developing their unique style.",meta_title:"Vikram Rajput - Food Educator and Chef at ChopChopChronicles",meta_description:"Unlock the secrets of Indian cooking with Vikram Rajput, food educator and chef, at ChopChopChronicles."},{name:"Maya Sharma",description:"Maya Sharma is a celebrated food blogger and chef with over 10 years of experience in Indian cuisine. Based in Mumbai, she specializes in fusion recipes that blend traditional Indian cooking with modern culinary trends. Her passion for cooking began at her grandmother’s kitchen, where she learned the importance of authentic flavors. Maya has published several cookbooks and is a frequent contributor to culinary magazines.",meta_title:"Maya Sharma - Culinary Expert and Recipe Innovator",meta_description:"Explore delicious recipes and culinary tips from Maya Sharma, a celebrated chef and food blogger with expertise in Indian cuisine. Join her journey of fusion flavors at ChopChopChronicles."},{name:"Ravi Kumar",description:"Ravi Kumar is a renowned recipe developer and food stylist known for his vibrant approach to Indian cooking. With a background in culinary arts, he has worked in various 5-star hotels across India and is currently pursuing his passion for sharing recipes through food photography and blogging. Ravi’s unique presentation styles and tantalizing dishes make him a favorite among food enthusiasts.",meta_title:"Ravi Kumar - Recipe Developer and Food Stylist",meta_description:"Discover Ravi Kumar's eye-catching recipes and food styling tips that bring a contemporary twist to traditional Indian dishes. Get inspired at ChopChopChronicles!"},{name:"Anjali Desai",description:"Anjali Desai is a passionate home cook and food writer who dedicates her work to promoting healthy Indian recipes. With a Master's in Nutrition, she emphasizes the importance of balanced meals without compromising on taste. Anjali's blog features a variety of wholesome recipes that cater to health-conscious readers looking for flavorful options.",meta_title:"Anjali Desai - Healthy Indian Recipes Advocate",meta_description:"Join Anjali Desai on a culinary journey as she shares wholesome and healthy Indian recipes that are both nutritious and delicious. Transform your cooking with ChopChopChronicles."},{name:"Suresh Menon",description:"Suresh Menon is a culinary enthusiast and writer with a flair for bringing traditional Indian home recipes to life. He draws inspiration from his family's diverse culinary background and aims to revive age-old recipes for modern audiences. With over a decade of writing experience, Suresh’s articles are filled with stories and flavors from across India.",meta_title:"Suresh Menon - Traditional Indian Recipe Advocate",meta_description:"Revive the taste of tradition with Suresh Menon, whose articles feature authentic Indian home recipes and culinary stories that connect generations at ChopChopChronicles."},{name:"Fatima Ali",description:"Fatima Ali is a celebrated food journalist and recipe curator known for her engaging writing style and authentic cultural cuisine exploration. Her background in journalism allows her to weave personal stories with culinary techniques, inspiring home cooks everywhere. Her work focuses on celebrating the rich diversity of Indian cuisine.",meta_title:"Fatima Ali - Food Journalist and Recipe Curator",meta_description:"Join Fatima Ali as she explores and curates authentic Indian recipes, blending stories with culinary heritage to inspire home cooking at ChopChopChronicles."},{name:"Amit Joshi",description:"Amit Joshi is a culinary artist with a passion for grilling and barbecuing Indian style. He shares his love for outdoor cooking through innovative recipes that combine traditional Indian spices with modern grilling techniques. His adventurous spirit and expertise in barbecue make his contributions to ChopChopChronicles both exciting and flavorful.",meta_title:"Amit Joshi - Indian Grilling Expert",meta_description:"Discover Indian grilling magic with Amit Joshi, an expert in barbecuing and outdoor cooking, presenting unique recipes that fuse traditional Indian spices with modern techniques at ChopChopChronicles."},{name:"Priya Rao",description:"Priya Rao is a professional chef and culinary content creator specializing in street food recipes from India. Her adventurous palate and keen attention to detail bring the vibrant flavors of Indian street cuisine to her readers’ kitchens. With a background in restaurant management, Priya aims to elevate street food experience through accessible recipes.",meta_title:"Priya Rao - Street Food Culinary Creator",meta_description:"Taste the vibrant flavors of Indian street cuisine with Priya Rao, a culinary creator dedicated to bringing authentic street food recipes to your kitchen at ChopChopChronicles."},{name:"Vikram Narayan",description:"Vikram Narayan is a multi-talented chef, blogger, and cookbook author who focuses on regional Indian sweets and desserts. With his extensive knowledge of traditional Indian desserts and a penchant for modern twists, Vikram creates recipes that charm sweet-toothed enthusiasts. His contributions highlight the art of sweet-making in Indian culture.",meta_title:"Vikram Narayan - Expert in Indian Sweets & Desserts",meta_description:"Delight in the world of Indian sweets with Vikram Narayan, an expert in creating traditional desserts with a modern twist, sharing his recipes at ChopChopChronicles."},{name:"Sophia Rodriguez",description:"Sophia is a culinary expert and food writer with over 10 years of experience in the culinary industry. Based in Barcelona, she specializes in Mediterranean cuisine and enjoys inspiring home cooks with her flavorful recipes and cooking tips. When she's not in the kitchen, Sophia shares her global culinary adventures on her blog.",meta_title:"Sophia Rodriguez - Culinary Expert at ChopChopChronicles",meta_description:"Discover delightful Mediterranean recipes and cooking tips from Sophia Rodriguez, a seasoned culinary expert with over 10 years of experience."},{name:"Jamal El Khoury",description:"Jamal is a passionate food stylist and chef from Lebanon who has dedicated his career to preserving the art of Levantine cooking. With more than 15 years in the culinary field, he blends tradition with modern techniques to create visually stunning dishes that tell a story.",meta_title:"Jamal El Khoury - Levantine Culinary Artist at ChopChopChronicles",meta_description:"Explore the vibrant world of Levantine cuisine with Jamal El Khoury, a culinary artist passionate about traditional recipes and food styling."},{name:"Emily Chang",description:"Based in Tokyo, Emily is a food writer and recipe developer with a love for Japanese cuisine. With extensive experience living and working in both Japan and the U.S., she brings a unique perspective to her recipes, focusing on seasonal ingredients and cultural significance.",meta_title:"Emily Chang - Japanese Cuisine Aficionado at ChopChopChronicles",meta_description:"Dive into authentic Japanese recipes and culinary wisdom with Emily Chang, a food writer dedicated to sharing the beauty of Japanese cuisine."},{name:"Marco Rossi",description:"Marco is an Italian chef and culinary instructor based in Florence, Italy. With over 20 years in the kitchen, he specializes in traditional Italian cooking, passed down through generations. Marco loves to teach others about the importance of quality ingredients and family recipes.",meta_title:"Marco Rossi - Traditional Italian Chef at ChopChopChronicles",meta_description:"Experience the heart of Italian cooking with Marco Rossi, a passionate chef teaching the art of traditional recipes and culinary heritage."},{name:"Fatima Zahra",description:"Fatima is a Moroccan cook and food blogger celebrated for her authentic Moroccan recipes and culinary storytelling. Having worked in various restaurants in Marrakech, she aims to share the flavors and traditions of Moroccan cuisine with food lovers around the world.",meta_title:"Fatima Zahra - Moroccan Cuisine Connoisseur at ChopChopChronicles",meta_description:"Explore the rich flavors of Moroccan cuisine with Fatima Zahra, a passionate cook sharing authentic recipes and culinary traditions."},{name:"Liam O'Sullivan",description:"Liam is an Irish chef and author based in Dublin, Ireland. With over 12 years of culinary experience, he specializes in modern interpretations of traditional Irish dishes, focusing on locally sourced ingredients and sustainable practices.",meta_title:"Liam O'Sullivan - Irish Culinary Innovator at ChopChopChronicles",meta_description:"Savor the tastes of modern Irish cuisine with Liam O'Sullivan, a chef dedicated to reinventing traditional recipes with local ingredients."},{name:"Aisha Khan",description:"Aisha is a Pakistani food writer and culinary enthusiast committed to sharing the diverse flavors of South Asian cuisine. Her extensive travel experience throughout Pakistan inspires her recipes, focusing on street food and home-cooked meals that reflect her cultural heritage.",meta_title:"Aisha Khan - South Asian Culinary Advocate at ChopChopChronicles",meta_description:"Discover the vibrant world of South Asian cuisine with Aisha Khan, a food writer showcasing authentic recipes and culinary traditions."},{name:"Nikoleta Papadopoulos",description:"Nikoleta is a Greek chef and recipe developer based in Athens. With a deep passion for her heritage, she has a decade of culinary experience, specializing in farm-to-table cooking. Nikoleta is known for her vibrant Greek salads and hearty Mediterranean dishes.",meta_title:"Nikoleta Papadopoulos - Greek Culinary Expert at ChopChopChronicles",meta_description:"Explore the flavors of Greece with Nikoleta Papadopoulos, a chef dedicated to showcasing fresh ingredients and traditional Greek recipes."},{name:"David Whiley",description:"David is an Australian chef and food critic with a love for exceptional street food. He travels around the world documenting street food culture and recipes. With over 8 years in the culinary field, David enjoys sharing unique flavors from his travels.",meta_title:"David Whiley - Street Food Connoisseur at ChopChopChronicles",meta_description:"Join David Whiley in exploring the exciting world of street food with unique recipes and insights from his global culinary adventures."},{name:"Tina Zhang",description:"Tina is a renowned pastry chef from Shanghai, China. With a deep appreciation for the art of baking, she has built her career on perfecting traditional Chinese pastries and desserts. Tina shares her expertise to inspire others to create sweet delights at home.",meta_title:"Tina Zhang - Chinese Pastry Chef at ChopChopChronicles",meta_description:"Indulge in the delicate art of Chinese pastry with Tina Zhang, a pastry chef sharing her passion for traditional sweets and desserts."},{name:"Emily Chen",description:"Emily Chen is a culinary blogger and food stylist based in San Francisco. With over 8 years of experience in the food industry, she specializes in Asian cuisines and has a passion for creating visually appealing dishes that tell a story. Her work has been featured in several food magazines and blogs.",meta_title:"Emily Chen - Asian Cuisine Specialist | ChopChopChronicles",meta_description:"Discover the art of Asian cooking with Emily Chen, a seasoned culinary blogger and food stylist at ChopChopChronicles. Explore her unique recipes and vibrant food photography."},{name:"Carlos Rivera",description:"Carlos Rivera is a renowned chef and food writer from Mexico City. With a background in traditional Mexican cooking, he shares authentic recipes that reflect his heritage. Carlos has conducted various culinary workshops and has written for multiple food publications.",meta_title:"Carlos Rivera - Mexican Culinary Expert | ChopChopChronicles",meta_description:"Join Carlos Rivera as he brings the flavors of Mexico to your kitchen. Explore traditional recipes and culinary insights with the expert chef at ChopChopChronicles."},{name:"Aisha Patel",description:"Aisha Patel is a food enthusiast and nutritional expert from London, specializing in healthy vegetarian and vegan recipes. She holds a degree in nutrition and uses her knowledge to create delicious, healthy meals that promote well-being.",meta_title:"Aisha Patel - Healthy Eating Advocate | ChopChopChronicles",meta_description:"Elevate your cooking with Aisha Patel's healthy vegetarian and vegan recipes. Discover nutritious meal ideas and expert tips at ChopChopChronicles."},{name:"Sophia Martinez",description:"Sophia Martinez is a passionate Italian home cook living in Rome. Known for her family recipes passed down through generations, Sophia shares authentic Italian dishes and culinary traditions on her platform.",meta_title:"Sophia Martinez - Authentic Italian Home Cook | ChopChopChronicles",meta_description:"Immerse yourself in authentic Italian cooking with Sophia Martinez. Find cherished family recipes and culinary traditions at ChopChopChronicles."},{name:"Raj Singh",description:"Raj Singh is a chef and food writer from New Delhi, India, with a focus on spicy Indian street food. He has worked in several prestigious restaurants and is dedicated to sharing the vibrancy of Indian street cuisine with food lovers everywhere.",meta_title:"Raj Singh - Indian Street Food Expert | ChopChopChronicles",meta_description:"Dive into the world of flavorful Indian street food with Raj Singh. Explore spices, recipes, and culinary adventures at ChopChopChronicles."},{name:"Clara Dubois",description:"Clara Dubois is a French pastry chef and cookbook author based in Paris. Known for her exquisite desserts and pastries, she has a background in fine dining and shares her expertise through approachable recipes for home bakers.",meta_title:"Clara Dubois - French Pastry Specialist | ChopChopChronicles",meta_description:"Discover the world of French pastry with Clara Dubois. Create beautiful desserts and indulge in sweet treats at ChopChopChronicles."},{name:"Anita Milkova",description:"Anita Milkova is a Bulgarian food blogger and culinary consultant who specializes in Eastern European recipes. With a flair for traditional and modern twists on classic dishes, she aims to introduce new flavors to a global audience.",meta_title:"Anita Milkova - Eastern European Culinary Blogger | ChopChopChronicles",meta_description:"Explore the flavors of Eastern Europe with Anita Milkova. Discover traditional recipes and innovative culinary techniques at ChopChopChronicles."},{name:"Tomoko Suzuki",description:"Tomoko Suzuki is a sushi chef and culinary artist from Tokyo, Japan. She has trained in traditional sushi techniques and now travels the world, sharing her knowledge and creativity through sushi-making workshops and online content.",meta_title:"Tomoko Suzuki - Sushi Chef & Culinary Artist | ChopChopChronicles",meta_description:"Explore the art of sushi-making with Tomoko Suzuki. Learn traditional techniques and creative twists at ChopChopChronicles."},{name:"Marcus Johnson",description:"Marcus Johnson is a barbecue pitmaster and food influencer from the southern United States. With a passion for slow-cooked meats and rich flavors, he shares recipes, tips, and barbecue culture through his engaging online presence.",meta_title:"Marcus Johnson - BBQ Pitmaster | ChopChopChronicles",meta_description:"Ignite your passion for barbecue with Marcus Johnson. Discover mouthwatering recipes and expert grilling techniques at ChopChopChronicles."}],o=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=o,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:#5c3a2a;--theme-color-8:#a64d3d;--theme-color-7:#c8795d;--theme-color-6:#e2a77a;--theme-color-5:#f1c2a1;--theme-color-3:#f4e1d4;--theme-color-2:#f7f2eb;--color-bg-layout:#ffffff;--color-bg-hover:#f0e7e7;--article-border-radius:15px;--btn-border-radius:8px;--category-border-radius:25px;}
@@ -0,0 +1 @@
1
+ @import "sizing.css";@import "colors.css";@import "fonts.css";@import "theme.css";
@@ -189,7 +189,7 @@ export declare const dataStructure: {
189
189
  export declare const authors: Record<string, string>;
190
190
  export declare const authorsNames: string[];
191
191
  export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83C\uDF7D\uFE0F\uD83D\uDC69\u200D\uD83C\uDF73\uD83E\uDD58\uD83E\uDD57";
192
- export declare const categories: ("cookingTechniques" | "quickMeals" | "healthyEating" | "internationalCuisine" | "gourmetCooking" | "familyFriendly")[];
192
+ export declare const categories: ("cookingTechniques" | "internationalCuisine" | "quickMeals" | "healthyEating" | "gourmetCooking" | "familyFriendly")[];
193
193
  export declare const subcategories: string[];
194
194
  export declare const subsubcategories: string[];
195
195
  export type Category = keyof typeof dataStructure;
@@ -0,0 +1,193 @@
1
+ export declare const dataStructure: {
2
+ quickMeals: {
3
+ title: string;
4
+ description: string;
5
+ slug: string;
6
+ children: {
7
+ onePotDinners: {
8
+ title: string;
9
+ description: string;
10
+ slug: string;
11
+ children: null;
12
+ };
13
+ mealPrepIdeas: {
14
+ title: string;
15
+ description: string;
16
+ slug: string;
17
+ children: null;
18
+ };
19
+ healthySnacks: {
20
+ title: string;
21
+ description: string;
22
+ slug: string;
23
+ children: null;
24
+ };
25
+ other: {
26
+ title: string;
27
+ description: string;
28
+ slug: string;
29
+ children: null;
30
+ };
31
+ };
32
+ };
33
+ globalCuisines: {
34
+ title: string;
35
+ description: string;
36
+ slug: string;
37
+ children: {
38
+ italianRecipes: {
39
+ title: string;
40
+ description: string;
41
+ slug: string;
42
+ children: null;
43
+ };
44
+ mexicanRecipes: {
45
+ title: string;
46
+ description: string;
47
+ slug: string;
48
+ children: null;
49
+ };
50
+ asianCuisine: {
51
+ title: string;
52
+ description: string;
53
+ slug: string;
54
+ children: null;
55
+ };
56
+ middleEasternFlavors: {
57
+ title: string;
58
+ description: string;
59
+ slug: string;
60
+ children: null;
61
+ };
62
+ other: {
63
+ title: string;
64
+ description: string;
65
+ slug: string;
66
+ children: null;
67
+ };
68
+ };
69
+ };
70
+ festiveFeasts: {
71
+ title: string;
72
+ description: string;
73
+ slug: string;
74
+ children: {
75
+ holidayDinnerIdeas: {
76
+ title: string;
77
+ description: string;
78
+ slug: string;
79
+ children: null;
80
+ };
81
+ specialOccasionRecipes: {
82
+ title: string;
83
+ description: string;
84
+ slug: string;
85
+ children: null;
86
+ };
87
+ themedParties: {
88
+ title: string;
89
+ description: string;
90
+ slug: string;
91
+ children: null;
92
+ };
93
+ dessertGalore: {
94
+ title: string;
95
+ description: string;
96
+ slug: string;
97
+ children: null;
98
+ };
99
+ other: {
100
+ title: string;
101
+ description: string;
102
+ slug: string;
103
+ children: null;
104
+ };
105
+ };
106
+ };
107
+ cookingTechniques: {
108
+ title: string;
109
+ description: string;
110
+ slug: string;
111
+ children: {
112
+ grillingAndBBQ: {
113
+ title: string;
114
+ description: string;
115
+ slug: string;
116
+ children: null;
117
+ };
118
+ slowCooking: {
119
+ title: string;
120
+ description: string;
121
+ slug: string;
122
+ children: null;
123
+ };
124
+ bakingBasics: {
125
+ title: string;
126
+ description: string;
127
+ slug: string;
128
+ children: null;
129
+ };
130
+ fermentationMethods: {
131
+ title: string;
132
+ description: string;
133
+ slug: string;
134
+ children: null;
135
+ };
136
+ other: {
137
+ title: string;
138
+ description: string;
139
+ slug: string;
140
+ children: null;
141
+ };
142
+ };
143
+ };
144
+ nutritionAndWellness: {
145
+ title: string;
146
+ description: string;
147
+ slug: string;
148
+ children: {
149
+ healthyEatingTips: {
150
+ title: string;
151
+ description: string;
152
+ slug: string;
153
+ children: null;
154
+ };
155
+ ingredientSubstitutions: {
156
+ title: string;
157
+ description: string;
158
+ slug: string;
159
+ children: null;
160
+ };
161
+ plantBasedRecipes: {
162
+ title: string;
163
+ description: string;
164
+ slug: string;
165
+ children: null;
166
+ };
167
+ kidFriendlyMeals: {
168
+ title: string;
169
+ description: string;
170
+ slug: string;
171
+ children: null;
172
+ };
173
+ other: {
174
+ title: string;
175
+ description: string;
176
+ slug: string;
177
+ children: null;
178
+ };
179
+ };
180
+ };
181
+ };
182
+ export declare const authors: Record<string, string>;
183
+ export declare const authorsNames: string[];
184
+ export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83C\uDF74\uD83C\uDF7D\uFE0F\uD83E\uDD58\uD83D\uDC69\u200D\uD83C\uDF73";
185
+ export declare const categories: ("cookingTechniques" | "globalCuisines" | "quickMeals" | "festiveFeasts" | "nutritionAndWellness")[];
186
+ export declare const subcategories: string[];
187
+ export declare const subsubcategories: string[];
188
+ export type Category = keyof typeof dataStructure;
189
+ export type CategoryNode = (typeof dataStructure)[Category];
190
+ export type SubcategoryKeyByCategory<T extends Category> = (typeof dataStructure)[T]['children'];
191
+ export declare const startDate = "2024-09-19T00:00:00Z";
192
+ export declare const devBucketName = "idn-forkandfeasts-dev";
193
+ export declare const prodBucketName = "idn-forkandfeasts";
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./seo.js");const i={quickMeals:{title:"Quick Meals: Delicious Dishes Ready in No Time! 🍽️",description:"Discover our quick meals section filled with fast and easy recipes perfect for busy lifestyles! From 30-minute delights to wholesome snacks, explore your culinary journey! 🌟",slug:"quick-meals",children:{onePotDinners:{title:"One-Pot Dinners: Simplify Cooking and Cleaning! 🍲",description:"Enjoy flavorful one-pot dinners that save you time on cooking and cleanup. Perfect for busy nights when you want great taste without the mess! 🥘",slug:"one-pot-dinners",children:null},mealPrepIdeas:{title:"Meal Prep Ideas: Efficient and Healthy Solutions! 🥗",description:"Master meal prep with our innovative ideas that help you save time and eat healthily. Create delicious meals in advance for a busy week ahead! 🍱",slug:"meal-prep-ideas",children:null},healthySnacks:{title:"Healthy Snacks: Nutritious Bites for Every Craving! 🍏",description:"Satisfy your hunger with our collection of healthy snack recipes! Nutritious, quick, and perfect for any time of the day! 🙌",slug:"healthy-snacks",children:null},other:{title:"Other Quick Meals: Explore Diverse Recipes! 🌍",description:"Dive into our other quick meal options that don't fit the usual categories. Discover unique and fast recipes to delight your taste buds! 🌶️",slug:"other-quick-meals",children:null}}},globalCuisines:{title:"Explore Global Cuisines: Delicious Recipes Await! 🍽️",description:"Dive into ForkAndFeasts' global cuisines, featuring a delightful collection of recipes from around the world. Discover culinary creativity today! 🌍",slug:"global-cuisines",children:{italianRecipes:{title:"Authentic Italian Recipes: Savor the Flavors of Italy 🇮🇹",description:"Indulge in classic Italian recipes that embody the essence of Italian cuisine. From pasta to pizza, enjoy the taste of Italy at home! 🍝",slug:"italian-recipes",children:null},mexicanRecipes:{title:"Savory Mexican Recipes: Spicy and Flavorful Dishes 🌶️",description:"Experience the vibrant flavors of Mexico with our authentic recipes. Enjoy a fiesta of tastes that will spice up your meals! 🎉",slug:"mexican-recipes",children:null},asianCuisine:{title:"Exquisite Asian Cuisine: Diverse Recipes for Every Palate 🍜",description:"Explore a wide variety of Asian cuisine recipes that celebrate unique ingredients and techniques. Taste the continent’s diversity today! 🥢",slug:"asian-cuisine",children:null},middleEasternFlavors:{title:"Delectable Middle Eastern Flavors: Recipes to Savor 🌙",description:"Discover the rich and aromatic dishes of Middle Eastern cuisine. From kebabs to desserts, enjoy flavors that tell a story! 🍢",slug:"middle-eastern-flavors",children:null},other:{title:"Explore Other Global Cuisines: Uncover Hidden Gems 🌏",description:"Venture beyond the mainstream with our selection of unique recipes from lesser-known cuisines. Expand your culinary horizons today! 🍽️",slug:"other-global-cuisines",children:null}}},festiveFeasts:{title:"Explore Festive Feasts: Delightful Recipes for Every Occasion 🎉🍽️",description:"Discover a splendid array of festive feast recipes that excite every palate. From holiday dinners to dessert galore, indulge your culinary creativity!",slug:"festive-feasts",children:{holidayDinnerIdeas:{title:"Inspiring Holiday Dinner Ideas for Memorable Celebrations 🎄🥘",description:"Make your holiday gatherings unforgettable with amazing dinner ideas. Explore festive recipes perfect for family feasts and seasonal celebrations! 🍽️✨",slug:"holiday-dinner-ideas",children:null},specialOccasionRecipes:{title:"Special Occasion Recipes to Celebrate Life's Moments 🎉🍰",description:"Find the perfect recipes for any special occasion! From birthdays to anniversaries, elevate your celebrations with delicious culinary delights. 🎊🥂",slug:"special-occasion-recipes",children:null},themedParties:{title:"Creative Themed Parties: Recipes to Wow Your Guests 🎈🍹",description:"Host incredible themed parties with imaginative recipes that impress! Explore ideas for unique dinner themes and festive gatherings. 🎊🍽️",slug:"themed-parties",children:null},dessertGalore:{title:"Dessert Galore: Irresistible Sweet Treats for Any Celebration 🍰🍮",description:"Indulge in a variety of mouthwatering desserts perfect for any celebration! Discover recipes that make every occasion a sweet treat. 🍩✨",slug:"dessert-galore",children:null},other:{title:"Other Festive Recipes for Unique Culinary Experiences 🍽️🌍",description:"Explore unique festive recipes beyond the ordinary! Expand your culinary horizons with diverse dishes that celebrate global flavors. ✨🍜",slug:"other-festive-recipes",children:null}}},cookingTechniques:{title:"Cooking Techniques: Enhance Your Culinary Skills! 🍳",description:"Explore various cooking techniques, from grilling to baking. Perfect for all skill levels, discover new ways to elevate your culinary creations! 🍽️",slug:"cooking-techniques",children:{grillingAndBBQ:{title:"Grilling and BBQ Techniques: Master the Art of Outdoor Cooking! 🔥",description:"Unleash your inner grill master with expert grilling tips and BBQ techniques. Discover mouthwatering recipes and elevate your outdoor cooking game! 🍖",slug:"grilling-and-bbq",children:null},slowCooking:{title:"Slow Cooking: Deliciously Simple Meals with Minimal Effort! 🕒",description:"Master the slow cooking technique for tender and flavorful meals. Perfect for busy cooks, find easy recipes to savor every bite! 🍲",slug:"slow-cooking",children:null},bakingBasics:{title:"Baking Basics: Perfect Your Skills in the Kitchen! 🥖",description:"Learn the art of baking with essential techniques and tips. From bread to pastries, discover recipes that will impress your friends and family! 🍰",slug:"baking-basics",children:null},fermentationMethods:{title:"Fermentation Methods: Discover the Magic of Fermented Foods! 🥒",description:"Explore the fascinating world of fermentation! Learn how to create probiotic-rich foods and boost your culinary repertoire with our tips and recipes! 🥗",slug:"fermentation-methods",children:null},other:{title:"Other Cooking Techniques: Expand Your Culinary Knowledge! 📚",description:"Dive into diverse cooking techniques beyond the basics. Expand your skills and creativity with innovative methods to explore new flavors! 🍜",slug:"other-cooking-techniques",children:null}}},nutritionAndWellness:{title:"Nutrition and Wellness: Your Guide to Healthy Living 🌱",description:"Explore various nutrition and wellness categories including tips, recipes, and more for optimal health! 🍏 Discover your culinary journey today!",slug:"nutrition-and-wellness",children:{healthyEatingTips:{title:"Healthy Eating Tips for a Balanced Lifestyle 🍽️",description:"Gain insights from expert advice on healthy eating habits, portion sizes, and meal planning to enhance your wellness journey! 🥗",slug:"healthy-eating-tips",children:null},ingredientSubstitutions:{title:"Smart Ingredient Substitutions for Versatile Cooking 🥕",description:"Discover innovative ingredient substitutions that can make your cooking healthier and adaptable for various dietary needs! 🍽️",slug:"ingredient-substitutions",children:null},plantBasedRecipes:{title:"Delicious Plant Based Recipes for Nourishing Meals 🌿",description:"Dive into a world of plant-based recipes that promise delicious flavors while promoting health and sustainability! 🍲",slug:"plant-based-recipes",children:null},kidFriendlyMeals:{title:"Kid Friendly Meals That Everyone Will Love 🍕",description:"Find creative and nutritious kid-friendly meals that make mealtime fun and delicious for picky eaters! 👶👦",slug:"kid-friendly-meals",children:null},other:{title:"Explore Other Nutrition & Wellness Resources 🥦",description:"Access a variety of other nutrition and wellness resources, articles and tips to enrich your culinary experience! 🍽️",slug:"other-resources",children:null}}}},t=e.AUTHORS_INFO.reduce(((e,i)=>Object.assign(Object.assign({},e),{[i.name]:[i.description]})),{}),s=e.AUTHORS_INFO.map((e=>e.name)),n="🍴🍽️🥘👩‍🍳",r=Object.keys(i),o=[],l=[];for(const e of r){const t=i[e];if(null==t?void 0:t.children){o.push(...Object.keys(t.children));for(const e of o){const i=t.children[e];(null==i?void 0:i.children)&&l.push(...Object.keys(i.children))}}}const a="2024-09-19T00:00:00Z",c="forkandfeasts",d=`idn-${c}-dev`,u=`idn-${c}`;exports.DEFAULT_DESCRIPTION_EMOJIS=n,exports.authors=t,exports.authorsNames=s,exports.categories=r,exports.dataStructure=i,exports.devBucketName=d,exports.prodBucketName=u,exports.startDate=a,exports.subcategories=o,exports.subsubcategories=l;
@@ -0,0 +1,28 @@
1
+ export declare enum FiltersNames {
2
+ FlavorfulFusions = "Flavorful Fusions",
3
+ CulinaryCrafts = "Culinary Crafts",
4
+ MealMoments = "Meal Moments",
5
+ GlobalGourmets = "Global Gourmets",
6
+ IngredientFocus = "Ingredient Focus"
7
+ }
8
+ type FlavorfulFusionsValues = 'Spicy' | 'Savory' | 'Sweet' | 'Tangy' | 'Umami';
9
+ type CulinaryCraftsValues = 'Baking' | 'Grilling' | 'Fermenting' | 'Slow Cooking' | 'No-Cook';
10
+ type MealMomentsValues = 'Breakfast' | 'Lunch' | 'Dinner' | 'Snacks' | 'Desserts';
11
+ type GlobalGourmetsValues = 'Italian' | 'Asian' | 'Mexican' | 'Mediterranean' | 'American';
12
+ type IngredientFocusValues = 'Vegetarian' | 'Vegan' | 'Gluten-Free' | 'Paleo' | 'Seafood';
13
+ export type ArticleFilters = {
14
+ [FiltersNames.FlavorfulFusions]: FlavorfulFusionsValues[];
15
+ [FiltersNames.CulinaryCrafts]: CulinaryCraftsValues[];
16
+ [FiltersNames.MealMoments]: MealMomentsValues[];
17
+ [FiltersNames.GlobalGourmets]: GlobalGourmetsValues[];
18
+ [FiltersNames.IngredientFocus]: IngredientFocusValues[];
19
+ };
20
+ export declare const flavorfulFusionsValues: FlavorfulFusionsValues[];
21
+ export declare const culinaryCraftsValues: CulinaryCraftsValues[];
22
+ export declare const mealMomentsValues: MealMomentsValues[];
23
+ export declare const globalGourmetsValues: GlobalGourmetsValues[];
24
+ export declare const ingredientFocusValues: IngredientFocusValues[];
25
+ export declare const initialFilters: ArticleFilters;
26
+ export declare const fullFilters: ArticleFilters;
27
+ export declare const getFiltersTypesJSON: () => string;
28
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e;exports.FiltersNames=void 0,(e=exports.FiltersNames||(exports.FiltersNames={})).FlavorfulFusions="Flavorful Fusions",e.CulinaryCrafts="Culinary Crafts",e.MealMoments="Meal Moments",e.GlobalGourmets="Global Gourmets",e.IngredientFocus="Ingredient Focus";const s=["Spicy","Savory","Sweet","Tangy","Umami"],r=["Baking","Grilling","Fermenting","Slow Cooking","No-Cook"],t=["Breakfast","Lunch","Dinner","Snacks","Desserts"],a=["Italian","Asian","Mexican","Mediterranean","American"],o=["Vegetarian","Vegan","Gluten-Free","Paleo","Seafood"],l={[exports.FiltersNames.FlavorfulFusions]:[],[exports.FiltersNames.CulinaryCrafts]:[],[exports.FiltersNames.MealMoments]:[],[exports.FiltersNames.GlobalGourmets]:[],[exports.FiltersNames.IngredientFocus]:[]},i={[exports.FiltersNames.FlavorfulFusions]:s,[exports.FiltersNames.CulinaryCrafts]:r,[exports.FiltersNames.MealMoments]:t,[exports.FiltersNames.GlobalGourmets]:a,[exports.FiltersNames.IngredientFocus]:o},n=()=>JSON.stringify(i,null,2);exports.culinaryCraftsValues=r,exports.flavorfulFusionsValues=s,exports.fullFilters=i,exports.getFiltersTypesJSON=n,exports.globalGourmetsValues=a,exports.ingredientFocusValues=o,exports.initialFilters=l,exports.mealMomentsValues=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"),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.culinaryCraftsValues=t.culinaryCraftsValues,exports.flavorfulFusionsValues=t.flavorfulFusionsValues,exports.fullFilters=t.fullFilters,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.globalGourmetsValues=t.globalGourmetsValues,exports.ingredientFocusValues=t.ingredientFocusValues,exports.initialFilters=t.initialFilters,exports.mealMomentsValues=t.mealMomentsValues,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: ForkAndFeasts is an engaging infotainment portal dedicated to recipes and culinary exploration. It serves as a go-to resource for food enthusiasts seeking diverse and delicious meal ideas.\n - Detailed description: ForkAndFeasts is a comprehensive online portal that invites food lovers to dive into a delightful world of culinary creativity. The platform offers an extensive collection of recipes ranging from quick weeknight dinners to elaborate festive feasts. Users will find detailed step-by-step instructions, ingredient lists, and cooking tips designed to make meal preparation enjoyable and accessible for all skill levels. Alongside traditional recipes, ForkAndFeasts highlights innovative culinary techniques and global cuisines, encouraging users to expand their cooking horizons. With engaging articles that explore food trends, cooking hacks, and seasonal ingredients, ForkAndFeasts fosters a vibrant community of culinary adventurers eager to share their passion for cooking.\n - Target audience: The target audience for ForkAndFeasts includes home cooks of all experience levels, from beginners looking for simple recipes to seasoned chefs seeking inspiration for new dishes. Food enthusiasts, culinary students, and anyone interested in exploring diverse cuisines will also find value in the portal. Additionally, the site appeals to individuals interested in food trends, nutrition, and meal planning, as well as families looking for creative and healthy meal ideas.\n\n";
2
+ export declare const ZERO_SECTION = "This is important to include the following headers to the section, ONLY if they are applicable to the title, abstract and description of the article:\n## Recipe Overview\n - Dish Description\n - Cuisine Type\n\n## Ingredients List\n - Detailed Ingredients\n - Substitutions and Variations\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: ForkAndFeasts is an engaging infotainment portal dedicated to recipes and culinary exploration. It serves as a go-to resource for food enthusiasts seeking diverse and delicious meal ideas.\n - Detailed description: ForkAndFeasts is a comprehensive online portal that invites food lovers to dive into a delightful world of culinary creativity. The platform offers an extensive collection of recipes ranging from quick weeknight dinners to elaborate festive feasts. Users will find detailed step-by-step instructions, ingredient lists, and cooking tips designed to make meal preparation enjoyable and accessible for all skill levels. Alongside traditional recipes, ForkAndFeasts highlights innovative culinary techniques and global cuisines, encouraging users to expand their cooking horizons. With engaging articles that explore food trends, cooking hacks, and seasonal ingredients, ForkAndFeasts fosters a vibrant community of culinary adventurers eager to share their passion for cooking.\n - Target audience: The target audience for ForkAndFeasts includes home cooks of all experience levels, from beginners looking for simple recipes to seasoned chefs seeking inspiration for new dishes. Food enthusiasts, culinary students, and anyone interested in exploring diverse cuisines will also find value in the portal. Additionally, the site appeals to individuals interested in food trends, nutrition, and meal planning, as well as families looking for creative and healthy meal ideas.\n\n",t="This is important to include the following headers to the section, ONLY if they are applicable to the title, abstract and description of the article:\n## Recipe Overview\n - Dish Description\n - Cuisine Type\n\n## Ingredients List\n - Detailed Ingredients\n - Substitutions and Variations\n\nYou can change the headers and topics to make a them more coherent with the description of the article.\nStart text with first Heading H2 - Recipe Overview, IF it's applicable to the theme of the article.\n",n="highlighting the key points that will be discussed and the relevance of the topic",o="synthesizing the information presented throughout",s="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",r=`That is TREMENDOUS important - if category doesn't match - return empty array for that category - []. For example if you don't find any match for $FILTERNAME, return for that category$FILTERNAME: []\nResponse in valid json, adhering strictly to json interface below, include every field present in it, but include values in array only suitable for article, all array values are optional!\n${require("../filters.js").getFiltersTypesJSON()}`;exports.END_STEP=o,exports.FILTERS_INFO=r,exports.IMAGES_PROHIBITED_WORDS=a,exports.START_STEP=n,exports.TARGET_AUDIENCE=s,exports.ZERO_SECTION=t,exports.portalInfo=i;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt35turbo/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),p=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),i=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=i,exports.getFiltersPrompt=p,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt4oMini/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),i=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),p=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=p,exports.getFiltersPrompt=i,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,4 @@
1
+ import { GetOpenAiBasedImagePrompt, GetStableDiffusionImagePrompt } from 'src/common/types';
2
+ export declare const getStableDiffusionImagePrompt: GetStableDiffusionImagePrompt;
3
+ export declare const getOpenAiBasedImagePrompt: GetOpenAiBasedImagePrompt;
4
+ export declare const getOpenAiBasedImagePromptDalle2: GetOpenAiBasedImagePrompt;
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../common/prompts/images.js");const o=({title:o,alt:a,articleTitle:r})=>({prompt:`Award-winning hyper-real cinematic photo of a ${o}, ${a}, for an article ${r} from professional food photograph for a glossy recipe magazine, food style photography, glossy recipe magazine, photorealistic, ultra realistic, maximum detail, highly detailed, commercial photography, foreground focus, delish.com, allrecipes.com, foodnetwork.com, epicurious, instagram, 4K, 8K, volumetric light, cinematic, octane render, uplight, no blur, depth of field, dof, film, bokeh, foreground focus, 35mm photograph`,negativePrompt:e.SD_NEGATIVE_PROMPT}),a=({title:e,alt:o,articleTitle:a})=>`I NEED a hyper-real illustration of a ${e} at food style photography, ${o}, for an article ${a} for a glossy recipe magazine, photorealistic, ultra realistic, maximum detail, highly detailed, food style, food style photography, professional food photography, commercial photography, foreground focus, recipes.com, delish.com, epicurious, instagram, 4K, 8K, volumetric light, octane render, uplight, no blur, depth of field, dof, bokeh, foreground focus. Please exclude any: Photocamera, videocamera, Spotlight, soffit, ramp, scanners, strobe, soffit truss, film props, radio, cooking timer, watches, clocks, men, woman, people, hand, nands, leg, legs, font, username, error, words, letters, digits, autograph, trademark, name, easy-negative, cartoon, worst quality, low quality, blind, bad eyes, ugly eyes, dead eyes, greyscale, monochrome, vignette, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, censored, rabs, muscular, rib, blurry, blur, grainy, teeth, low resolution, lowres, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bw, bad photo, bad photography, bad art, morbid, ugly, asymmetrical, mutated malformed, mutilated, poorly lit, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, duplicate, airbrushed,, anime, semi-realistic, cgi, render, 3D, blender, digital art, manga, amateur, 3D, 3D Game, 3D Game Scene, 3D Character, bad hands, , bad body, bad face, bad teeth, bad arms, bad legs, deformities, drawing, deformed iris, deformed pupils, deformed, painting, crayon, sketch, graphite, impressionist, noisy, poorly drawn hands, poorly drawn face, poorly drawn eyes, mutation, bad proportions, cloned face, disfigured, gross proportions, malformed limbs, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck, incoherent from this hyper-real illustration of a ${e}`,r=({title:e})=>`\n\tPhotorealistic highly detailed image of ingredients for ${e}, arranged professionally as if for a food photography shoot. image should showcase maximum detail realism, with a focus on foreground, emulating the style of a high-definition, 8k resolution professional food photograph. lighting should be volumetric and uplit, with a depth of field and bokeh effect, avoiding any blur for clarity. overall aesthetic should be reminiscent of the Kodak Portrait 800 style.\n\tNegative Prompt:\n\teasy-negative, cartoon, worst quality, low quality, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, blurry, blur, grainy, teeth, low resolution, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, airbrushed, anime, semi-realistic, cgi, render, 3D, blender, manga, amateur, 3D, 3D Game, drawing, sketch\n`;exports.getOpenAiBasedImagePrompt=a,exports.getOpenAiBasedImagePromptDalle2=r,exports.getStableDiffusionImagePrompt=o;
@@ -0,0 +1,23 @@
1
+ export interface PageSeoData {
2
+ title: string;
3
+ description: string;
4
+ }
5
+ export declare enum PageNames {
6
+ Authors = "authors",
7
+ Home = "home",
8
+ NotFound = "not-found",
9
+ AboutUs = "about-us",
10
+ PrivacyPolicy = "privacy-policy",
11
+ Terms = "terms",
12
+ Sitemap = "sitemap"
13
+ }
14
+ export type PagesSeo = Record<PageNames, PageSeoData>;
15
+ export interface AuthorInfo {
16
+ name: string;
17
+ description: string;
18
+ meta_title: string;
19
+ meta_description: string;
20
+ }
21
+ export declare const PAGES_SEO: PagesSeo;
22
+ export declare const AUTHORS_INFO: AuthorInfo[];
23
+ export declare const AUTHORS_META: Record<string, PageSeoData>;
@@ -0,0 +1 @@
1
+ "use strict";var e;exports.PageNames=void 0,(e=exports.PageNames||(exports.PageNames={})).Authors="authors",e.Home="home",e.NotFound="not-found",e.AboutUs="about-us",e.PrivacyPolicy="privacy-policy",e.Terms="terms",e.Sitemap="sitemap";const i={[exports.PageNames.Authors]:{title:"Meet the Chefs Behind ForkAndFeasts | Culinary Experts 🍽️",description:"Discover the talented writers and chefs at ForkAndFeasts who bring you delicious recipes and culinary insights. Join our food journey! 🌟"},[exports.PageNames.Home]:{title:"ForkAndFeasts: Your Ultimate Recipe Destination 🍴",description:"Welcome to ForkAndFeasts! Explore delectable recipes, culinary tips, and food inspiration to satisfy your taste buds. Let's feast together! 🍲"},[exports.PageNames.NotFound]:{title:"Oops! Page Not Found | ForkAndFeasts 🚫",description:"It seems the page you're looking for doesn't exist. Explore our scrumptious recipes and culinary articles instead! 🍽️"},[exports.PageNames.AboutUs]:{title:"About ForkAndFeasts | Food Lovers' Paradise 🌍",description:"Learn about the passion and mission behind ForkAndFeasts, where we celebrate the art of cooking and enjoying food. Join our community! ❤️"},[exports.PageNames.PrivacyPolicy]:{title:"Privacy Policy | ForkAndFeasts 🔒",description:"Your privacy matters to us! Read our Privacy Policy to understand how we protect your information while you enjoy ForkAndFeasts. 🛡️"},[exports.PageNames.Terms]:{title:"Terms and Conditions | ForkAndFeasts 📜",description:"Review our Terms and Conditions to understand your rights and responsibilities while exploring ForkAndFeasts. Stay informed! ⚖️"},[exports.PageNames.Sitemap]:{title:"Sitemap | Navigate ForkAndFeasts Easily 🗺️",description:"Find your way around ForkAndFeasts with our comprehensive sitemap. Discover all the delicious recipes and culinary tips we offer! 🍴"}},a=[{name:"Maya Sharma",description:"Maya Sharma is a celebrated food blogger and home chef with over a decade of experience in Indian and international cuisine. With her unique blend of traditional and contemporary recipes, she attracts a diverse audience. Maya's passion for cooking is evident in her vibrant food photography and engaging storytelling.",meta_title:"Maya Sharma - Culinary Expert and Food Blogger at ForkAndFeasts",meta_description:"Explore delicious recipes and culinary tips from Maya Sharma, an expert in Indian and international cuisine. Join her on a flavorful journey at ForkAndFeasts."},{name:"Raj Patel",description:"Raj Patel is a professional chef and culinary instructor who specializes in Indian cuisine. With years of training in renowned kitchens, he combines traditional techniques with modern twists. Raj's expertise in spices brings unparalleled richness to his recipes.",meta_title:"Raj Patel - Chef and Culinary Instructor at ForkAndFeasts",meta_description:"Discover authentic Indian recipes and culinary tricks from Raj Patel, a professional chef and culinary educator at ForkAndFeasts."},{name:"Anita Desai",description:"Anita Desai is an award-winning cookbook author and food stylist with a passion for regional Indian dishes. Her expertise in food presentation and recipe development makes her a sought-after contributor for culinary content. Anita believes in showcasing the cultural heritage of Indian food.",meta_title:"Anita Desai - Cookbook Author and Food Stylist at ForkAndFeasts",meta_description:"Dive into the world of regional Indian cuisine with Anita Desai, award-winning cookbook author and food stylist, only at ForkAndFeasts."},{name:"Karan Mehta",description:"Karan Mehta is a food enthusiast and online content creator known for his innovative recipes that blend Indian flavors with global cuisines. With a knack for experimenting with ingredients, Karan encourages his audience to explore cooking through creativity.",meta_title:"Karan Mehta - Innovative Recipe Creator at ForkAndFeasts",meta_description:"Join Karan Mehta at ForkAndFeasts for innovative recipes that fuse Indian flavors with global culinary trends."},{name:"Sneha Iyer",description:"Sneha Iyer is a home cook and food vlogger specializing in healthy Indian vegetarian recipes. With a focus on nutrition and wellness, she inspires others to cook delicious meals that are good for the body and soul. Sneha's easy-to-follow recipes are perfect for home cooks.",meta_title:"Sneha Iyer - Healthy Indian Vegetarian Cook at ForkAndFeasts",meta_description:"Get inspired by Sneha Iyer's healthy vegetarian recipes that celebrate Indian flavors. Cook nutritious meals at ForkAndFeasts."},{name:"Rahul Sen",description:"Rahul Sen is a culinary historian and food columnist who delves deep into the cultural significance of Indian cuisine. His articles not only provide recipes but also offer insights into the stories and traditions behind Indian dishes, infusing readers with a deeper appreciation for food.",meta_title:"Rahul Sen - Culinary Historian and Food Columnist at ForkAndFeasts",meta_description:"Explore the rich stories behind Indian cuisine with culinary historian Rahul Sen at ForkAndFeasts. Enjoy recipes steeped in tradition."},{name:"Leela Narayan",description:"Leela Narayan is a passionate food writer and recipe developer known for her exquisite desserts and pastries, often inspired by Indian sweets. Her delicate approach to baking brings an artistic flair to her culinary creations, making her a beloved figure among dessert enthusiasts.",meta_title:"Leela Narayan - Dessert Specialist and Recipe Developer at ForkAndFeasts",meta_description:"Indulge in the delightful world of desserts with Leela Narayan, specializing in Indian-inspired pastries at ForkAndFeasts."},{name:"Vikram Singh",description:"Vikram Singh is a travel and food writer who shares his culinary experiences from his adventures across India. His vibrant writing paints a picture of the local flavors, street food, and authentic recipes he encounters, bringing the heart and soul of Indian cuisine to life.",meta_title:"Vikram Singh - Travel and Food Writer at ForkAndFeasts",meta_description:"Join Vikram Singh on a flavorful adventure through India’s diverse culinary landscape at ForkAndFeasts. Discover authentic recipes and rich traditions."},{name:"Pooja Khanna",description:"Pooja Khanna is a professional nutritionist and food blogger dedicated to promoting healthy Indian cooking. She emphasizes the importance of balanced meals while staying true to traditional flavors. Pooja shares nutritious recipes that cater to various dietary preferences without compromising on taste.",meta_title:"Pooja Khanna - Nutritionist and Healthy Cooking Advocate at ForkAndFeasts",meta_description:"Explore nutritious Indian recipes with Pooja Khanna, a nutritionist advocating for healthy cooking without sacrificing flavor at ForkAndFeasts."},{name:"Ravi Bhatia",description:"Ravi Bhatia is a chef turned food entrepreneur, focusing on traditional Indian street food and regional delicacies. He aims to bring the authentic flavors of India to home kitchens and create recipes that provide a delightful culinary journey.",meta_title:"Ravi Bhatia - Street Food Aficionado and Recipe Innovator at ForkAndFeasts",meta_description:"Bring the taste of India’s streets home with Ravi Bhatia's authentic recipes and culinary insights at ForkAndFeasts."},{name:"Sanika Ahuja",description:"Sanika Ahuja is an acclaimed food blogger and culinary enthusiast from Mumbai, India, with over 8 years of experience in creating authentic Indian recipes. She combines her love for cooking with storytelling, making her dishes accessible for everyone. Sanika focuses on healthy, easy-to-make Indian recipes that bring families together.",meta_title:"Sanika Ahuja - Culinary Expert at ForkAndFeasts",meta_description:"Discover authentic Indian recipes with Sanika Ahuja, a Mumbai-based food blogger with 8 years of experience in creating delicious and healthy dishes for families."},{name:"Rajesh Kumar",description:"Rajesh Kumar is a renowned chef and food writer residing in Delhi, India. With a prestigious culinary background and over a decade in the restaurant industry, Rajesh brings gourmet-level recipes to home kitchens. His focus on regional Indian cuisine enriches his articles with rich flavors and cultural insights.",meta_title:"Rajesh Kumar - Gourmet Chef at ForkAndFeasts",meta_description:"Explore gourmet Indian recipes with Rajesh Kumar, a Delhi-based chef with over 10 years of culinary experience and a passion for regional flavors."},{name:"Priya Desai",description:"Priya Desai is a passionate home cook and writer based in Bangalore, India. With her keen interest in fusion cuisine, she specializes in blending traditional Indian recipes with global flavors. Priya's blog is a treasure trove of innovative culinary ideas for adventurous food lovers.",meta_title:"Priya Desai - Fusion Food Expert at ForkAndFeasts",meta_description:"Join Priya Desai in her culinary journey as she shares unique fusion recipes, blending Indian traditions with global flavors from her kitchen in Bangalore."},{name:"Tarun Sharma",description:"Tarun Sharma is a culinary consultant and recipe developer based in Kolkata, India. With a focus on sustainable cooking practices, he aims to promote healthy eating through simple yet delicious recipes that utilize seasonal ingredients. Tarun's expertise makes him a valuable asset to ForkAndFeasts.",meta_title:"Tarun Sharma - Sustainable Culinary Consultant at ForkAndFeasts",meta_description:"Discover sustainable cooking with Tarun Sharma, a Kolkata-based culinary consultant who shares healthy, seasonal Indian recipes for a balanced lifestyle."},{name:"Nisha Jain",description:"Nisha Jain is a passionate food writer and home chef from Jaipur, India. With a love for traditional Rajasthani dishes, she focuses on reviving old recipes and making them accessible to modern cooks. Nisha's articles are filled with personal anecdotes that take readers on a culinary journey.",meta_title:"Nisha Jain - Rajasthani Culinary Advocate at ForkAndFeasts",meta_description:"Explore the vibrant flavors of Rajasthan with Nisha Jain, a food writer who revives traditional recipes and shares her culinary journey."},{name:"Aditi Mehta",description:"Aditi Mehta is a Delhi-based food stylist and recipe developer known for her visually stunning food photography. With a background in arts and design, she combines aesthetics with taste, creating recipes that are as beautiful as they are delicious. Aditi's work offers inspiration for both home chefs and aspiring food photographers.",meta_title:"Aditi Mehta - Food Stylist and Photographer at ForkAndFeasts",meta_description:"Join Aditi Mehta on a culinary adventure where creativity meets cuisine, showcasing stunning recipes and food styling tips."},{name:"Nirav Shah",description:"Nirav Shah is a food critic and culinary journalist based in Gujarat, India. With a focus on Indian street food and local delicacies, he explores the rich tapestry of flavors found across India. His articles are insightful and informative, bringing the essence of Indian culinary culture to the forefront.",meta_title:"Nirav Shah - Street Food Aficionado at ForkAndFeasts",meta_description:"Delve into the world of Indian street food with Nirav Shah, a culinary journalist dedicated to uncovering the flavors and stories behind local delicacies."},{name:"Ritika Kapoor",description:"Ritika Kapoor is a health-conscious chef and blogger from Chandigarh, India, who specializes in vegan and gluten-free Indian recipes. With a mission to make healthy eating joyful and delicious, she offers a variety of wholesome recipes that cater to dietary restrictions without compromising on flavor.",meta_title:"Ritika Kapoor - Health-Conscious Chef at ForkAndFeasts",meta_description:"Discover healthy vegan and gluten-free Indian recipes with Ritika Kapoor, a Chandigarh-based chef dedicated to making nutritious eating delicious."},{name:"Anjali Verma",description:"Anjali Verma is a culinary educator and food writer from Pune, India. With her extensive knowledge of Indian culinary techniques, she shares engaging recipes alongside cooking tips and tricks that help home cooks elevate their skills in the kitchen.",meta_title:"Anjali Verma - Culinary Educator at ForkAndFeasts",meta_description:"Enhance your cooking skills with Anjali Verma, a culinary educator from Pune sharing expert tips and Indian recipes for home chefs."},{name:"Siddharth Rao",description:"Siddharth Rao is a travel and food blogger from Hyderabad, India. Combining his love for exploration with culinary adventures, he captures the flavors of India through his recipes inspired by his travels. Siddharth’s engaging style makes cooking an exciting journey.",meta_title:"Siddharth Rao - Travel and Food Blogger at ForkAndFeasts",meta_description:"Join Siddharth Rao on a flavorful journey through India as he shares recipes inspired by his travel experiences and culinary discoveries."},{name:"Nisha K Gupta",description:"Nisha is a culinary enthusiast and food blogger based in Mumbai, India. With over 10 years of experience in the kitchen, she specializes in fusion recipes that blend traditional Indian flavors with modern culinary techniques. Nisha has been featured in several food magazines and conducts cooking workshops across the country.",meta_title:"Nisha K Gupta - ForkAndFeasts Author",meta_description:"Explore delicious fusion recipes and culinary tips from Nisha K Gupta, a Mumbai-based food blogger with over 10 years of experience."},{name:"Vikram Rao",description:"Vikram is a travel and food writer from Kolkata who shares his culinary adventures across India. With over 20 years of experience in exploring regional dishes, Vikram's articles reveal the stories behind the recipes he encounters, making every dish come alive with culture and heritage.",meta_title:"Vikram Rao - ForkAndFeasts Author",meta_description:"Join Vikram Rao on a culinary journey through India with his travel-inspired recipes and stories embracing the flavors of the nation."},{name:"Meena Sharma",description:"Meena is a passionate home cook and food photographer from Chennai. For over 8 years, she has shared her traditional family recipes, focusing on South Indian cuisine. Meena's stunning photography captivates her audience, while her detailed instructions make her recipes accessible to everyone.",meta_title:"Meena Sharma - ForkAndFeasts Author",meta_description:"Experience the essence of South Indian cuisine with Meena Sharma's traditional family recipes and beautiful food photography."},{name:"Arjun Iyer",description:"Arjun is a culinary educator and freelance food writer from Hyderabad with a rich background in hotel management. He specializes in contemporary Indian cooking techniques and has contributed articles to numerous culinary magazines. His passion for teaching makes his articles both engaging and informative.",meta_title:"Arjun Iyer - ForkAndFeasts Author",meta_description:"Enhance your cooking skills with tips and recipes from Arjun Iyer, a culinary educator from Hyderabad specializing in contemporary Indian cuisine."},{name:"Sakshi Mehta",description:"Sakshi is a food stylist and blogger from Pune, known for her exquisite food presentations. With a deep understanding of flavors and aesthetics, she creates recipes that not only taste incredible but also look stunning. Her articles guide readers on elevating their home dining experience.",meta_title:"Sakshi Mehta - ForkAndFeasts Author",meta_description:"Discover the art of food styling and delicious recipes with Sakshi Mehta, a food stylist and blogger from Pune."},{name:"Rohit Verma",description:"Rohit is a culinary historian and author from Gujarat who brings the ancient traditions of Indian cooking to the modern kitchen. With a master's degree in food history, Rohit writes compelling articles that explore the grand narratives behind Indian recipes and the evolution of flavors over time.",meta_title:"Rohit Verma - ForkAndFeasts Author",meta_description:"Delve into the rich history of Indian cuisine with Rohit Verma, a culinary historian uncovering the stories behind timeless recipes."},{name:"Vidya Khandelwal",description:"Vidya is a passionate baker and dessert specialist from Jaipur. With over 12 years of baking experience, she creates mouthwatering desserts that incorporate both local and international flavors. Her articles and recipes are perfect for anyone looking to sweeten up their baking skills.",meta_title:"Vidya Khandelwal - ForkAndFeasts Author",meta_description:"Indulge your sweet tooth with delectable baking recipes and tips from Vidya Khandelwal, a dessert specialist from Jaipur."},{name:"Karan Singh",description:"Karan is a young, innovative food entrepreneur and recipe developer from Chandigarh. With a keen interest in sustainable cooking practices, he focuses on plant-based dishes and modernizing traditional recipes. Karan's articles inspire readers to explore new flavors while being mindful of the environment.",meta_title:"Karan Singh - ForkAndFeasts Author",meta_description:"Explore sustainable cooking and innovative plant-based recipes with Karan Singh, a food entrepreneur from Chandigarh."},{name:"Nisha Gupta",description:"Nisha Gupta is a seasoned chef and food writer based in Mumbai. With over 10 years of experience in the culinary arts, she specializes in traditional Indian recipes that fuse modern techniques with age-old flavors. Nisha is passionate about promoting Indian culinary heritage and has contributed articles to various food magazines and websites.",meta_title:"Nisha Gupta - Indian Culinary Expert | ForkAndFeasts",meta_description:"Discover authentic Indian recipes and culinary insights from Nisha Gupta, a celebrated chef with over a decade of experience. Join her on ForkAndFeasts for delicious offerings."},{name:"Ravi Sharma",description:"Ravi Sharma is a food enthusiast and culinary explorer from Delhi. A former chef turned food writer, he specializes in vegetarian dishes and street food culture. His engaging articles provide readers with not only recipes but also the stories and traditions behind them.",meta_title:"Ravi Sharma - Street Food Aficionado | ForkAndFeasts",meta_description:"Explore the vibrant world of Indian street food with Ravi Sharma at ForkAndFeasts. Get inspired by his authentic vegetarian recipes and culinary narratives."},{name:"Anjali Mehta",description:"Anjali Mehta is a passionate home cook and food blogger from Bengaluru. With a knack for creating nutritious, delicious meals, she focuses on healthy twists to classic Indian dishes. Anjali shares her culinary journey through her detailed, easy-to-follow articles.",meta_title:"Anjali Mehta - Healthy Indian Cooking | ForkAndFeasts",meta_description:"Learn healthy and delicious Indian recipes with Anjali Mehta at ForkAndFeasts. Discover tips for nutritious home cooking and vibrant culinary experiences."},{name:"Vikram Patel",description:"Vikram Patel is a culinary consultant and recipe developer with a rich background in Indian cuisine. Born and raised in Kolkata, he has spent years perfecting regional specialties and is keen on introducing Indian flavors to a global audience through his writing.",meta_title:"Vikram Patel - Culinary Consultant & Recipe Developer | ForkAndFeasts",meta_description:"Delve into the flavors of India with Vikram Patel at ForkAndFeasts. Uncover the secrets behind regional delicacies and innovative recipes from a culinary expert."},{name:"Sita Rao",description:"Sita Rao is a well-known food stylist and writer from Chennai. With her artistic eye and culinary expertise, she brings Indian dishes to life with beautiful presentation. Sita's articles often include tips on food styling and photography, making cooking accessible and fun.",meta_title:"Sita Rao - Food Stylist & Writer | ForkAndFeasts",meta_description:"Elevate your cooking with Sita Rao at ForkAndFeasts. Discover visually stunning recipes and styling tips from a renowned food stylist and writer."},{name:"Deepak Joshi",description:"Deepak Joshi is a culinary historian and editor with a deep understanding of Indian cooking traditions. His articles provide invaluable insights into the cultural significance of various dishes, making each recipe more than just a meal but a narrative.",meta_title:"Deepak Joshi - Culinary Historian & Editor | ForkAndFeasts",meta_description:"Dive deep into the history of Indian cuisine with Deepak Joshi at ForkAndFeasts. Discover traditional recipes infused with cultural significance and rich narratives."},{name:"Aditi Verma",description:"Aditi Verma is a home chef and cookbook author from Pune. With a focus on family-friendly recipes, Aditi aims to make cooking easy and enjoyable for everyone. Her articles are filled with personal anecdotes that connect food with shared moments.",meta_title:"Aditi Verma - Family-Focused Culinary Writer | ForkAndFeasts",meta_description:"Join Aditi Verma on ForkAndFeasts for delightful family-friendly recipes. Explore easy cooking tips and heartwarming stories that celebrate the joy of food."},{name:"Rohit Nair",description:"Rohit Nair is a professional chef and food photographer from Hyderabad. Known for his contemporary take on Indian cuisine, he blends traditional flavors with international techniques. Rohit's photography and writing inspire many budding chefs and food lovers.",meta_title:"Rohit Nair - Modern Indian Chef & Photographer | ForkAndFeasts",meta_description:"Experience contemporary Indian cuisine with Rohit Nair at ForkAndFeasts. Discover innovative recipes and stunning photography that bring food to life."},{name:"Priya Malhotra",description:"Priya Malhotra is a globetrotting food blogger of Indian origin, currently based in London. With her diverse culinary experiences, she shares fusion recipes that reflect her travels while staying rooted in Indian traditions. Her writing is relatable and encourages everyone to try new flavors.",meta_title:"Priya Malhotra - Fusion Food Blogger | ForkAndFeasts",meta_description:"Join Priya Malhotra at ForkAndFeasts for exciting fusion recipes that blend Indian traditions with global influences. Explore the world through her culinary lens."},{name:"Shivani Desai",description:"Shivani Desai is a food journalist and recipe curator, known for her focus on eco-friendly cooking and sustainable practices. Based in Ahmedabad, she writes extensively on the importance of using local ingredients and minimal waste in culinary practices.",meta_title:"Shivani Desai - Eco-Friendly Culinary Advocate | ForkAndFeasts",meta_description:"Explore sustainable cooking with Shivani Desai at ForkAndFeasts. Discover eco-friendly recipes and practices that celebrate local ingredients and responsible cooking."},{name:"Sophie Lee",description:"Sophie Lee is a professional chef with over ten years of experience in the culinary world. Originally from Seoul, South Korea, she specializes in fusion cuisine, blending traditional Asian flavors with contemporary techniques. Sophie has authored two best-selling cookbooks and runs a popular food blog where she shares recipes and cooking tips.",meta_title:"Sophie Lee - Culinary Expert and Recipe Creator for ForkAndFeasts",meta_description:"Explore delicious recipes by Sophie Lee, a culinary expert specializing in fusion cuisine. Discover tips and tricks from her 10 years of experience in the kitchen!"},{name:"Marco Rossi",description:"With a passion for Italian cooking, Marco Rossi has been creating mouthwatering recipes for over fifteen years. Marco hails from Florence, Italy, and has worked in renowned restaurants across Europe. His culinary expertise shines in his articles, blending authenticity with accessible cooking methods.",meta_title:"Marco Rossi - Italian Culinary Maestro at ForkAndFeasts",meta_description:"Delve into the world of Italian cooking with Marco Rossi, a culinary maestro with over 15 years of experience. Discover amazing recipes that capture the essence of Italy!"},{name:"Jessica Tan",description:"Jessica Tan is a food stylist and recipe developer based in Melbourne, Australia. Known for her vibrant and visually appealing recipes, she incorporates seasonal ingredients and eco-friendly practices into her cooking. With a background in nutrition, Jessica aims to create healthy yet indulgent meals for every occasion.",meta_title:"Jessica Tan - Creative Food Stylist and Recipe Developer at ForkAndFeasts",meta_description:"Join Jessica Tan as she transforms healthy ingredients into beautiful indulgent meals. Discover creative recipes that nourish while dazzling your taste buds!"},{name:"Akira Yamamoto",description:"Akira Yamamoto is a culinary artist from Nagoya, Japan, with a deep-rooted passion for Japanese cuisine. With over eight years of experience, Akira focuses on traditional recipes while modernizing them to fit contemporary tastes. He is dedicated to sharing the rich history and flavors of Japanese cooking.",meta_title:"Akira Yamamoto - Japanese Culinary Artist at ForkAndFeasts",meta_description:"Explore authentic Japanese cuisine with Akira Yamamoto, a culinary artist passionate about tradition and modern flavors. Discover recipes that celebrate Japanese culture!"},{name:"Emily Johnson",description:"Emily Johnson is a renowned pastry chef from New York City, specializing in desserts that are both innovative and nostalgic. With over a decade of experience, Emily has made a name for herself with her impressive cake designs and delectable sweets. She believes that baking is an art form and shares her passion through her recipes.",meta_title:"Emily Johnson - Renowned Pastry Chef at ForkAndFeasts",meta_description:"Indulge in the world of desserts with Emily Johnson, a renowned pastry chef known for her innovative recipes and stunning cake designs. Sweet inspiration awaits!"},{name:"Liam Patel",description:"Liam Patel is a culinary explorer from Mumbai, India, who specializes in regional Indian cuisines. His articles highlight the diversity of Indian food, showcasing traditional recipes alongside modern twists. Liam's goal is to make Indian cooking accessible to all while preserving its authenticity.",meta_title:"Liam Patel - Indian Culinary Explorer at ForkAndFeasts",meta_description:"Discover the diverse flavors of India with Liam Patel, a culinary explorer dedicated to sharing authentic and modern Indian recipes. Embrace the vibrancy of Indian cooking!"},{name:"Carla Silva",description:"Carla Silva is a food blogger and recipe creator based in Lisbon, Portugal. With a love for Mediterranean flavors, she infuses her Portuguese heritage into every dish. Carla has experience working in various kitchens across Europe and aims to bring the warmth of Portuguese cuisine to home cooks everywhere.",meta_title:"Carla Silva - Portuguese Food Blogger at ForkAndFeasts",meta_description:"Savor the flavors of Portugal with Carla Silva, a food blogger specializing in Mediterranean recipes. Discover authentic Portuguese cooking that warms the soul!"},{name:"Kai Zhang",description:"Kai Zhang is a culinary consultant based in Toronto, Canada. With roots in Chinese cuisine, Kai has extensive knowledge of various cooking techniques and flavors from around Asia. His articles focus on modern interpretations of traditional dishes, making them accessible and enjoyable for everyone.",meta_title:"Kai Zhang - Culinary Consultant at ForkAndFeasts",meta_description:"Experience the richness of Asian cuisine with Kai Zhang, a culinary consultant dedicated to modernizing traditional recipes. Discover accessible flavors for every palate!"},{name:"Nia Robinson",description:"Nia Robinson is a vegan chef and wellness advocate from Cape Town, South Africa. With a strong belief in healthy living and sustainability, she creates vibrant plant-based recipes that inspire others to explore the world of vegan cooking. Nia has worked in various culinary settings and is passionate about educating others on healthy choices.",meta_title:"Nia Robinson - Vegan Chef and Wellness Advocate at ForkAndFeasts",meta_description:"Explore vibrant plant-based recipes with Nia Robinson, a vegan chef dedicated to healthy living and sustainability. Join Nia on a journey to delicious vegan cooking!"},{name:"Rafael Gomez",description:"Rafael Gomez is a culinary professional from Buenos Aires, Argentina, who specializes in Latin American cuisine. With a career spanning over a decade, he brings authentic Argentinian flavors to the forefront through his articles. Rafael’s recipes emphasize the importance of community and family in cooking.",meta_title:"Rafael Gomez - Latin American Culinary Professional at ForkAndFeasts",meta_description:"Immerse yourself in the flavors of Latin America with Rafael Gomez, a culinary professional celebrating Argentinian cuisine. Discover recipes that bring people together!"},{name:"Sophia Chen",description:"Sophia Chen is a culinary expert and food blogger based in Taipei, Taiwan. With over 10 years of professional cooking experience and a diploma in culinary arts, she shares her passion for Asian cuisine and healthy recipes on her platform. Sophia believes in using seasonal ingredients to create dishes that are not only delicious but also visually appealing.",meta_title:"Sophia Chen - Asian Cuisine Specialist | ForkAndFeasts",meta_description:"Explore authentic Asian recipes and culinary tips from Sophia Chen, a culinary expert with over a decade of experience. Discover the flavors of Taiwan and beyond."},{name:"Michael Ramirez",description:"Michael Ramirez, a chef and food enthusiast from Mexico City, has spent more than 15 years mastering traditional Mexican recipes and experimenting with contemporary flavors. His vibrant writing brings the essence of Mexican culture into every dish, aiming to inspire home cooks around the world.",meta_title:"Michael Ramirez - Mexican Culinary Expert | ForkAndFeasts",meta_description:"Dive into the world of Mexican cooking with Michael Ramirez. Discover traditional and modern Mexican recipes that will elevate your culinary skills!"},{name:"Emily Thompson",description:"Emily Thompson is a passionate home cook and food photographer living in New York City. With a background in nutrition and a love for baking, she focuses on healthy comfort food and shares mouthwatering dessert recipes. Her approach combines health-conscious ingredients with indulgent flavors.",meta_title:"Emily Thompson - Healthy Comfort Food & Baking Enthusiast | ForkAndFeasts",meta_description:"Join Emily Thompson on a culinary journey with deliciously healthy comfort food and sweet baking recipes that are easy to make at home."},{name:"Tariq Al-Farsi",description:"Tariq Al-Farsi is an award-winning chef from Abu Dhabi, UAE, specializing in Middle Eastern cuisine. With over 12 years in the restaurant industry, he blends traditional techniques with modern flair. Tariq loves to write about cultural dishes, sharing stories reflective of his heritage.",meta_title:"Tariq Al-Farsi - Middle Eastern Cuisine Advocate | ForkAndFeasts",meta_description:"Explore the rich flavors of Middle Eastern cuisine with Tariq Al-Farsi. Discover authentic recipes enriched with culture and tradition."},{name:"Anika Patel",description:"Anika Patel is a food writer and recipe developer based in London, UK. Growing up in a multicultural family, she brings diverse flavors together, focusing on Indian and British cooking. With a flair for vegetarian dishes, her recipes emphasize sustainability and taste.",meta_title:"Anika Patel - Vegetarian Cuisine Specialist | ForkAndFeasts",meta_description:"Discover the best vegetarian recipes blending Indian spices with British fare by Anika Patel. Taste the fusion of cultures in every dish!"},{name:"Liam O'Sullivan",description:"Liam O'Sullivan is a master chef and food stylist originally from Dublin, Ireland. With a passion for farm-to-table concepts, he emphasizes fresh, local ingredients. Liam has worked in renowned kitchens across Europe and shares his insights on rustic, hearty recipes ideal for gatherings.",meta_title:"Liam O'Sullivan - Farm-to-Table Culinary Expert | ForkAndFeasts",meta_description:"Join Liam O'Sullivan for rustic recipes that celebrate fresh, local ingredients. Elevate your next gathering with farm-to-table cuisine!"},{name:"Yuki Takeda",description:"Yuki Takeda is a certified sushi chef and culinary artist based in Kyoto, Japan. With deep knowledge of traditional Japanese techniques, Yuki creates and shares modern takes on sushi, ramen, and seasonal dishes that resonate with both locals and global food lovers.",meta_title:"Yuki Takeda - Sushi & Japanese Cuisine Specialist | ForkAndFeasts",meta_description:"Explore the art of sushi and Japanese cuisine with Yuki Takeda. Discover authentic and contemporary recipes straight from Kyoto."},{name:"Clara Rossi",description:"Clara Rossi is a seasoned Italian chef and food blogger residing in Florence, Italy. With a background in culinary arts and a passion for traditional Italian cooking, she delights in sharing family recipes, regional dishes, and tips for mastering pasta.",meta_title:"Clara Rossi - Italian Culinary Tradition Advocate | ForkAndFeasts",meta_description:"Experience the heart of Italian cooking with Clara Rossi. Discover authentic recipes and culinary secrets from Tuscany."},{name:"Zara Adams",description:"Zara Adams is a food stylist and blogger based in Melbourne, Australia. Blending art and flavor, she specializes in visually striking vegan and gluten-free recipes. Her approach encourages healthy lifestyles while enjoying the beauty and pleasure of food.",meta_title:"Zara Adams - Vegan & Gluten-Free Culinary Artist | ForkAndFeasts",meta_description:"Explore vibrant vegan and gluten-free recipes with Zara Adams. Experience the art of healthy cooking that delights both your eyes and palate."}],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:#4b2c20;--theme-color-8:#7d4b3a;--theme-color-7:#a66a5a;--theme-color-6:#cd9b7a;--theme-color-5:#e2bbae;--theme-color-3:#f5e0d5;--theme-color-2:#f9f0ed;--color-bg-layout:#fff5f0;--color-bg-hover:#eae3df;--article-border-radius:25px;--btn-border-radius:15px;--category-border-radius:30px;}
@@ -0,0 +1 @@
1
+ @import "sizing.css";@import "colors.css";@import "fonts.css";@import "theme.css";
@@ -188,7 +188,7 @@ export declare const dataStructure: {
188
188
  export declare const authors: Record<string, string>;
189
189
  export declare const authorsNames: string[];
190
190
  export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83C\uDFA8\uD83C\uDF89\uD83D\uDCDA\uD83E\uDD39\u200D";
191
- export declare const categories: ("educationalGames" | "outdoorActivities" | "creativeArts" | "culinaryAdventures" | "indoorEntertainment")[];
191
+ export declare const categories: ("culinaryAdventures" | "educationalGames" | "outdoorActivities" | "creativeArts" | "indoorEntertainment")[];
192
192
  export declare const subcategories: string[];
193
193
  export declare const subsubcategories: string[];
194
194
  export type Category = keyof typeof dataStructure;
@@ -214,7 +214,7 @@ export declare const dataStructure: {
214
214
  export declare const authors: Record<string, string>;
215
215
  export declare const authorsNames: string[];
216
216
  export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83C\uDF7D\uFE0F\uD83D\uDC69\u200D\uD83C\uDF73\uD83E\uDD58\u2728";
217
- export declare const categories: ("cookingTechniques" | "easyMeals" | "cuisineTypes" | "specialDietaryNeeds" | "gourmetDining" | "seasonalRecipes" | "nutritionAndWellness")[];
217
+ export declare const categories: ("cookingTechniques" | "nutritionAndWellness" | "easyMeals" | "cuisineTypes" | "specialDietaryNeeds" | "gourmetDining" | "seasonalRecipes")[];
218
218
  export declare const subcategories: string[];
219
219
  export declare const subsubcategories: string[];
220
220
  export type Category = keyof typeof dataStructure;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tedo-publisher",
3
- "version": "1.3.276",
3
+ "version": "1.3.278",
4
4
  "description": "Package for config files and reusable code/components between projects",
5
5
  "main": "dist/index.js",
6
6
  "files": [