tedo-publisher 1.3.244 → 1.3.246

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. package/dist/kawaiirealm/data.d.ts +199 -0
  2. package/dist/kawaiirealm/data.js +1 -0
  3. package/dist/kawaiirealm/filters.d.ts +28 -0
  4. package/dist/kawaiirealm/filters.js +1 -0
  5. package/dist/kawaiirealm/helpers.d.ts +3 -0
  6. package/dist/kawaiirealm/helpers.js +1 -0
  7. package/dist/kawaiirealm/index.d.ts +15 -0
  8. package/dist/kawaiirealm/index.js +1 -0
  9. package/dist/kawaiirealm/prompts/data.d.ts +7 -0
  10. package/dist/kawaiirealm/prompts/data.js +1 -0
  11. package/dist/kawaiirealm/prompts/gpt35turbo/articles.d.ts +6 -0
  12. package/dist/kawaiirealm/prompts/gpt35turbo/articles.js +1 -0
  13. package/dist/kawaiirealm/prompts/gpt4oMini/articles.d.ts +6 -0
  14. package/dist/kawaiirealm/prompts/gpt4oMini/articles.js +1 -0
  15. package/dist/kawaiirealm/prompts/images.d.ts +4 -0
  16. package/dist/kawaiirealm/prompts/images.js +1 -0
  17. package/dist/kawaiirealm/seo.d.ts +23 -0
  18. package/dist/kawaiirealm/seo.js +1 -0
  19. package/dist/kawaiirealm/styles/colors.css +1 -0
  20. package/dist/kawaiirealm/styles/fonts.css +1 -0
  21. package/dist/kawaiirealm/styles/global.css +1 -0
  22. package/dist/kawaiirealm/styles/sizing.css +1 -0
  23. package/dist/kawaiirealm/styles/theme.css +1 -0
  24. package/dist/kawaiirealm/styles/vars.css +1 -0
  25. package/dist/radianceensemble/data.d.ts +273 -0
  26. package/dist/radianceensemble/data.js +1 -0
  27. package/dist/radianceensemble/filters.d.ts +28 -0
  28. package/dist/radianceensemble/filters.js +1 -0
  29. package/dist/radianceensemble/helpers.d.ts +3 -0
  30. package/dist/radianceensemble/helpers.js +1 -0
  31. package/dist/radianceensemble/index.d.ts +15 -0
  32. package/dist/radianceensemble/index.js +1 -0
  33. package/dist/radianceensemble/prompts/data.d.ts +7 -0
  34. package/dist/radianceensemble/prompts/data.js +1 -0
  35. package/dist/radianceensemble/prompts/gpt35turbo/articles.d.ts +6 -0
  36. package/dist/radianceensemble/prompts/gpt35turbo/articles.js +1 -0
  37. package/dist/radianceensemble/prompts/gpt4oMini/articles.d.ts +6 -0
  38. package/dist/radianceensemble/prompts/gpt4oMini/articles.js +1 -0
  39. package/dist/radianceensemble/prompts/images.d.ts +4 -0
  40. package/dist/radianceensemble/prompts/images.js +1 -0
  41. package/dist/radianceensemble/seo.d.ts +23 -0
  42. package/dist/radianceensemble/seo.js +1 -0
  43. package/dist/radianceensemble/styles/colors.css +1 -0
  44. package/dist/radianceensemble/styles/fonts.css +1 -0
  45. package/dist/radianceensemble/styles/global.css +1 -0
  46. package/dist/radianceensemble/styles/sizing.css +1 -0
  47. package/dist/radianceensemble/styles/theme.css +1 -0
  48. package/dist/radianceensemble/styles/vars.css +1 -0
  49. package/package.json +1 -1
@@ -0,0 +1,199 @@
1
+ export declare const dataStructure: {
2
+ characterAnalyses: {
3
+ title: string;
4
+ description: string;
5
+ slug: string;
6
+ children: {
7
+ protagonistStudies: {
8
+ title: string;
9
+ description: string;
10
+ slug: string;
11
+ children: null;
12
+ };
13
+ antagonistExplorations: {
14
+ title: string;
15
+ description: string;
16
+ slug: string;
17
+ children: null;
18
+ };
19
+ supportingCharacters: {
20
+ title: string;
21
+ description: string;
22
+ slug: string;
23
+ children: null;
24
+ };
25
+ characterDevelopment: {
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
+ thematicExploration: {
40
+ title: string;
41
+ description: string;
42
+ slug: string;
43
+ children: {
44
+ comingOfAgeStories: {
45
+ title: string;
46
+ description: string;
47
+ slug: string;
48
+ children: null;
49
+ };
50
+ friendshipAndFamily: {
51
+ title: string;
52
+ description: string;
53
+ slug: string;
54
+ children: null;
55
+ };
56
+ goodVsEvil: {
57
+ title: string;
58
+ description: string;
59
+ slug: string;
60
+ children: null;
61
+ };
62
+ culturalSignificance: {
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
+ genreReviews: {
77
+ title: string;
78
+ description: string;
79
+ slug: string;
80
+ children: {
81
+ shonenReview: {
82
+ title: string;
83
+ description: string;
84
+ slug: string;
85
+ children: null;
86
+ };
87
+ shojoReview: {
88
+ title: string;
89
+ description: string;
90
+ slug: string;
91
+ children: null;
92
+ };
93
+ seinenReview: {
94
+ title: string;
95
+ description: string;
96
+ slug: string;
97
+ children: null;
98
+ };
99
+ multipleGenres: {
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
+ recommendations: {
114
+ title: string;
115
+ description: string;
116
+ slug: string;
117
+ children: {
118
+ mustWatchAnime: {
119
+ title: string;
120
+ description: string;
121
+ slug: string;
122
+ children: null;
123
+ };
124
+ hiddenGemManga: {
125
+ title: string;
126
+ description: string;
127
+ slug: string;
128
+ children: null;
129
+ };
130
+ seasonalPicks: {
131
+ title: string;
132
+ description: string;
133
+ slug: string;
134
+ children: null;
135
+ };
136
+ longReadRecommendations: {
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
+ culturalImpact: {
151
+ title: string;
152
+ description: string;
153
+ slug: string;
154
+ children: {
155
+ animeInGlobalCulture: {
156
+ title: string;
157
+ description: string;
158
+ slug: string;
159
+ children: null;
160
+ };
161
+ mangaAndSociety: {
162
+ title: string;
163
+ description: string;
164
+ slug: string;
165
+ children: null;
166
+ };
167
+ historicalEvolution: {
168
+ title: string;
169
+ description: string;
170
+ slug: string;
171
+ children: null;
172
+ };
173
+ fanCommunityContributions: {
174
+ title: string;
175
+ description: string;
176
+ slug: string;
177
+ children: null;
178
+ };
179
+ other: {
180
+ title: string;
181
+ description: string;
182
+ slug: string;
183
+ children: null;
184
+ };
185
+ };
186
+ };
187
+ };
188
+ export declare const authors: Record<string, string>;
189
+ export declare const authorsNames: string[];
190
+ export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83D\uDCDA\uD83C\uDFA8\uD83C\uDF1F\uD83C\uDF00";
191
+ export declare const categories: ("characterAnalyses" | "thematicExploration" | "genreReviews" | "recommendations" | "culturalImpact")[];
192
+ export declare const subcategories: string[];
193
+ export declare const subsubcategories: string[];
194
+ export type Category = keyof typeof dataStructure;
195
+ export type CategoryNode = (typeof dataStructure)[Category];
196
+ export type SubcategoryKeyByCategory<T extends Category> = (typeof dataStructure)[T]['children'];
197
+ export declare const startDate = "2024-09-10T00:00:00Z";
198
+ export declare const devBucketName = "idn-kawaiirealm-dev";
199
+ export declare const prodBucketName = "idn-kawaiirealm";
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./seo.js");const n={characterAnalyses:{title:"Character Analyses: Explore Anime & Manga Characters 🌟",description:"Delve into the depths of your favorite anime and manga characters with detailed analyses! Discover insights on protagonists, antagonists, and more! 📚",slug:"character-analyses",children:{protagonistStudies:{title:"Protagonist Studies: Unraveling Heroic Archetypes 🦸‍♂️",description:"Dive into the world of protagonists in anime and manga! This section focuses on their traits, growth, and heroic journeys. Engage with your favorite characters! ✨",slug:"protagonist-studies",children:null},antagonistExplorations:{title:"Antagonist Explorations: Understanding the Dark Side 🦹‍♂️",description:"Explore the motivations and complexities of anime and manga's antagonists. Understand what drives their conflict and how they shape the story! ⚔️",slug:"antagonist-explorations",children:null},supportingCharacters:{title:"Supporting Characters: The Unsung Heroes 🥇",description:"Discover the essential roles of supporting characters in anime and manga. Learn how they influence the main story and enrich the narrative! 🎭",slug:"supporting-characters",children:null},characterDevelopment:{title:"Character Development: The Journey of Growth 🌱",description:"Examine the evolution of characters in anime and manga. This section highlights crucial growth moments and transformative arcs that captivate audiences! 🔍",slug:"character-development",children:null},other:{title:"Other Character Analyses: Beyond the Main Cast 🔮",description:"Venture into analyses of varied characters outside the main storyline. Discover unique traits and contributions from minor characters in anime and manga! 🌈",slug:"other-character-analyses",children:null}}},thematicExploration:{title:"Exploring Anime and Manga Themes: Coming of Age 🔍",description:"Dive into the rich themes of coming of age in anime and manga. Discover how these stories resonate with viewers through relatable characters and experiences. 🌱",slug:"coming-of-age-stories",children:{comingOfAgeStories:{title:"The Essence of Coming of Age in Anime and Manga 🎉",description:"Uncover the fundamental elements of coming of age in anime and manga. Explore iconic titles that showcase the transformative journey of characters! 📖",slug:"essence-of-coming-of-age",children:null},friendshipAndFamily:{title:"Friendship and Family in Anime and Manga: Bonds that Matter 🤝",description:"Explore how anime and manga depict friendship and family values. Delve into stories that highlight these crucial relationships and their impact on characters. 💖",slug:"friendship-and-family",children:null},goodVsEvil:{title:"Epic Tales of Good vs Evil in Anime and Manga ⚔️",description:"Discover how classic battles of good and evil unfold in anime and manga. Analyze characters and their motivations that drive these thrilling narratives. 🌌",slug:"good-vs-evil",children:null},culturalSignificance:{title:"The Cultural Significance of Anime and Manga 🌸",description:"Examine the cultural themes in anime and manga. Learn how these art forms reflect societal values and contribute to cultural understanding across the globe. 🌏",slug:"cultural-significance",children:null},other:{title:"Other Unique Themes in Anime and Manga 🌈",description:"Explore various other themes in the rich tapestry of anime and manga. Discover hidden gems and unconventional narratives that captivate fans! 🦄",slug:"other-themes",children:null}}},genreReviews:{title:"In-Depth Reviews of Anime and Manga Genres 🎨",description:"Explore detailed reviews and insights into various anime and manga genres, from Shonen to Shojo. Discover your next favorite pick! 📚✨",slug:"anime-manga-genre-reviews",children:{shonenReview:{title:"Shonen Manga and Anime Reviews: Action-Packed Adventures! 💥",description:"Dive into the thrilling world of Shonen anime and manga with our comprehensive reviews. Uncover exciting stories and memorable characters! 🎉📖",slug:"shonen-reviews",children:null},shojoReview:{title:"Shojo Manga and Anime Reviews: Heartfelt Tales of Love 💖",description:"Discover the enchanting realm of Shojo with our detailed reviews. Explore captivating romance stories that resonate with fans of all ages! 🌸✨",slug:"shojo-reviews",children:null},seinenReview:{title:"Seinen Anime and Manga Reviews: For Mature Audiences 🍂",description:"Explore the complexities of Seinen anime and manga through our insightful reviews. Ideal for fans seeking deeper narratives and mature themes! 📚🖤",slug:"seinen-reviews",children:null},multipleGenres:{title:"Multi-Genre Anime and Manga Reviews: Diverse Stories 🌍📖",description:"Uncover unique tales that blend various genres in anime and manga. Our reviews highlight diversity and creativity in storytelling! 🎨✨",slug:"multi-genre-reviews",children:null},other:{title:"Other Anime and Manga Reviews: Hidden Gems ✨",description:"Explore lesser-known anime and manga that deserve the spotlight. Our reviews shine a light on hidden gems and unique narratives! 💎📚",slug:"other-reviews",children:null}}},recommendations:{title:"Anime and Manga Recommendations You Can't Miss! 🎉",description:"Discover KawaiiRealm's top picks for must-watch anime and hidden gem manga. Dive into seasonal selections and long reads for every fan! 🌟",slug:"anime-and-manga-recommendations",children:{mustWatchAnime:{title:"Must-Watch Anime Series for Every Fan 📺",description:"Explore must-watch anime series that every enthusiast should see. From classics to recent hits, find your next obsession here! 🍥",slug:"must-watch-anime",children:null},hiddenGemManga:{title:"Hidden Gem Manga You Need to Read! 📚",description:"Uncover hidden gem manga that deserves more attention. Dive into captivating stories and unique art styles with our top recommendations! 💖",slug:"hidden-gem-manga",children:null},seasonalPicks:{title:"Seasonal Picks: Best Anime and Manga for This Season ☀️",description:"Stay updated with seasonal picks for anime and manga. Discover trending titles and timeless classics perfect for your watch list! 🥢",slug:"seasonal-picks",children:null},longReadRecommendations:{title:"Long Read Recommendations for the Avid Reader 📖",description:"Delve into our long read recommendations for those who love in-depth manga stories! Find intricate plots that captivate and inspire. 🌌",slug:"long-read-recommendations",children:null},other:{title:"Other Anime and Manga Recommendations You’ll Love! ❤️",description:"Discover other fascinating anime and manga recommendations that span genres and styles! Perfect for every type of fan to explore. 🎈",slug:"other-recommendations",children:null}}},culturalImpact:{title:"Exploring Cultural Impact of Anime and Manga 🎌",description:"Delve into how anime and manga shape global culture, society, and communities. Discover their fascinating historical evolution and contributions! 🌏",slug:"cultural-impact-anime-manga",children:{animeInGlobalCulture:{title:"Anime's Influence in Global Culture 🌍",description:"Explore how anime has transcended borders and influenced global culture. Discover its impact on art, fashion, and film worldwide! 📺",slug:"anime-in-global-culture",children:null},mangaAndSociety:{title:"The Role of Manga in Society 📚",description:"Uncover the significant role of manga within society, addressing social issues and shaping perceptions. A deep dive into its cultural relevance! 🎨",slug:"manga-and-society",children:null},historicalEvolution:{title:"The Historical Evolution of Anime and Manga 📜",description:"Trace the fascinating history of anime and manga from their origins to modern-day phenomena. A captivating journey through time! ⌛",slug:"historical-evolution-anime-manga",children:null},fanCommunityContributions:{title:"Contributions of Fan Communities to Anime and Manga 💬",description:"Discover how fan communities contribute to the growth of anime and manga culture, promoting creativity and collaboration among enthusiasts! 🤝",slug:"fan-community-contributions",children:null},other:{title:"Miscellaneous Cultural Impacts of Anime and Manga 🌀",description:"Explore various other aspects of how anime and manga influence cultures around the world, including events and cross-cultural exchanges! 🌈",slug:"other-cultural-impacts",children:null}}}},i=e.AUTHORS_INFO.reduce(((e,n)=>Object.assign(Object.assign({},e),{[n.name]:[n.description]})),{}),a=e.AUTHORS_INFO.map((e=>e.name)),t="📚🎨🌟🌀",o=Object.keys(n),s=[],r=[];for(const e of o){const i=n[e];if(null==i?void 0:i.children){s.push(...Object.keys(i.children));for(const e of s){const n=i.children[e];(null==n?void 0:n.children)&&r.push(...Object.keys(n.children))}}}const l="2024-09-10T00:00:00Z",c="kawaiirealm",d=`idn-${c}-dev`,h=`idn-${c}`;exports.DEFAULT_DESCRIPTION_EMOJIS=t,exports.authors=i,exports.authorsNames=a,exports.categories=o,exports.dataStructure=n,exports.devBucketName=d,exports.prodBucketName=h,exports.startDate=l,exports.subcategories=s,exports.subsubcategories=r;
@@ -0,0 +1,28 @@
1
+ export declare enum FiltersNames {
2
+ AnimeAesthetics = "Anime Aesthetics",
3
+ MangaGenres = "Manga Genres",
4
+ CharacterJourneys = "Character Journeys",
5
+ CulturalInsights = "Cultural Insights",
6
+ TrendyThemes = "Trendy Themes"
7
+ }
8
+ type AnimeAestheticsValues = 'Stylized Animation' | 'Character Design' | 'Cultural References' | 'Color Palettes';
9
+ type MangaGenresValues = 'Shounen' | 'Shoujo' | 'Seinen' | 'Josei';
10
+ type CharacterJourneysValues = "Hero's Evolution" | 'Character Backstories' | 'Romantic Interests' | 'Antagonist Analysis';
11
+ type CulturalInsightsValues = 'Japanese Festivals in Anime' | 'Influence of Folklore' | 'Modern Japanese Society Reflected in Manga' | 'The Global Impact of Anime';
12
+ type TrendyThemesValues = 'Slice of Life' | 'Fantasy Worlds' | 'Mecha & Sci-Fi' | 'Romantic Comedies';
13
+ export type ArticleFilters = {
14
+ [FiltersNames.AnimeAesthetics]: AnimeAestheticsValues[];
15
+ [FiltersNames.MangaGenres]: MangaGenresValues[];
16
+ [FiltersNames.CharacterJourneys]: CharacterJourneysValues[];
17
+ [FiltersNames.CulturalInsights]: CulturalInsightsValues[];
18
+ [FiltersNames.TrendyThemes]: TrendyThemesValues[];
19
+ };
20
+ export declare const animeAestheticsValues: AnimeAestheticsValues[];
21
+ export declare const mangaGenresValues: MangaGenresValues[];
22
+ export declare const characterJourneysValues: CharacterJourneysValues[];
23
+ export declare const culturalInsightsValues: CulturalInsightsValues[];
24
+ export declare const trendyThemesValues: TrendyThemesValues[];
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={})).AnimeAesthetics="Anime Aesthetics",e.MangaGenres="Manga Genres",e.CharacterJourneys="Character Journeys",e.CulturalInsights="Cultural Insights",e.TrendyThemes="Trendy Themes";const s=["Stylized Animation","Character Design","Cultural References","Color Palettes"],t=["Shounen","Shoujo","Seinen","Josei"],r=["Hero's Evolution","Character Backstories","Romantic Interests","Antagonist Analysis"],a=["Japanese Festivals in Anime","Influence of Folklore","Modern Japanese Society Reflected in Manga","The Global Impact of Anime"],i=["Slice of Life","Fantasy Worlds","Mecha & Sci-Fi","Romantic Comedies"],n={[exports.FiltersNames.AnimeAesthetics]:[],[exports.FiltersNames.MangaGenres]:[],[exports.FiltersNames.CharacterJourneys]:[],[exports.FiltersNames.CulturalInsights]:[],[exports.FiltersNames.TrendyThemes]:[]},l={[exports.FiltersNames.AnimeAesthetics]:s,[exports.FiltersNames.MangaGenres]:t,[exports.FiltersNames.CharacterJourneys]:r,[exports.FiltersNames.CulturalInsights]:a,[exports.FiltersNames.TrendyThemes]:i},o=()=>JSON.stringify(l,null,2);exports.animeAestheticsValues=s,exports.characterJourneysValues=r,exports.culturalInsightsValues=a,exports.fullFilters=l,exports.getFiltersTypesJSON=o,exports.initialFilters=n,exports.mangaGenresValues=t,exports.trendyThemesValues=i;
@@ -0,0 +1,3 @@
1
+ import { GetDefaultImagesFrontmatter } from 'src/common/types';
2
+ export declare const getDefaultImagesFrontmatter: GetDefaultImagesFrontmatter;
3
+ export declare const prohibitedWordsInAltTitle: RegExp;
@@ -0,0 +1 @@
1
+ "use strict";const e=(e,n)=>{const t=n(e),i=undefined,a=undefined,l=undefined,o=undefined;return[{alt:`${e} Introduction`,filename:`${t}-introduction.png`,title:`${e} Introduction`},{alt:`Magnificent ${e}`,filename:`Magnificent-${t}.png`,title:`Magnificent ${e}`},{alt:`Notable ${e}`,filename:`${t}-notable.png`,title:`Notable ${e}`},{alt:`${e} Summary`,filename:`${t}-summary.png`,title:`${e} Summary`}]},n=/\b(?:hands|men|women|human|people|chief|family|mixing|serving|tasting|rolling)\b/i;exports.getDefaultImagesFrontmatter=e,exports.prohibitedWordsInAltTitle=n;
@@ -0,0 +1,15 @@
1
+ export * from './data';
2
+ export * from './filters';
3
+ export * from './helpers';
4
+ export * from './prompts/images';
5
+ export * from './seo';
6
+ import './styles/colors.css';
7
+ import './styles/fonts.css';
8
+ import './styles/global.css';
9
+ import './styles/sizing.css';
10
+ import './styles/vars.css';
11
+ import './styles/theme.css';
12
+ import * as gpt35Articles from './prompts/gpt35turbo/articles';
13
+ import * as gpt4oMiniArticles from './prompts/gpt4oMini/articles';
14
+ export { gpt35Articles, gpt4oMiniArticles };
15
+ export * from './prompts/data';
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./data.js"),t=require("./filters.js"),r=require("./helpers.js"),s=require("./prompts/images.js"),a=require("./seo.js"),o=require("./prompts/gpt35turbo/articles.js"),p=require("./prompts/gpt4oMini/articles.js"),i=require("./prompts/data.js");exports.DEFAULT_DESCRIPTION_EMOJIS=e.DEFAULT_DESCRIPTION_EMOJIS,exports.authors=e.authors,exports.authorsNames=e.authorsNames,exports.categories=e.categories,exports.dataStructure=e.dataStructure,exports.devBucketName=e.devBucketName,exports.prodBucketName=e.prodBucketName,exports.startDate=e.startDate,exports.subcategories=e.subcategories,exports.subsubcategories=e.subsubcategories,Object.defineProperty(exports,"FiltersNames",{enumerable:!0,get:function(){return t.FiltersNames}}),exports.animeAestheticsValues=t.animeAestheticsValues,exports.characterJourneysValues=t.characterJourneysValues,exports.culturalInsightsValues=t.culturalInsightsValues,exports.fullFilters=t.fullFilters,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.initialFilters=t.initialFilters,exports.mangaGenresValues=t.mangaGenresValues,exports.trendyThemesValues=t.trendyThemesValues,exports.getDefaultImagesFrontmatter=r.getDefaultImagesFrontmatter,exports.prohibitedWordsInAltTitle=r.prohibitedWordsInAltTitle,exports.getOpenAiBasedImagePrompt=s.getOpenAiBasedImagePrompt,exports.getOpenAiBasedImagePromptDalle2=s.getOpenAiBasedImagePromptDalle2,exports.getStableDiffusionImagePrompt=s.getStableDiffusionImagePrompt,exports.AUTHORS_INFO=a.AUTHORS_INFO,exports.AUTHORS_META=a.AUTHORS_META,exports.PAGES_SEO=a.PAGES_SEO,Object.defineProperty(exports,"PageNames",{enumerable:!0,get:function(){return a.PageNames}}),exports.gpt35Articles=o,exports.gpt4oMiniArticles=p,exports.END_STEP=i.END_STEP,exports.FILTERS_INFO=i.FILTERS_INFO,exports.IMAGES_PROHIBITED_WORDS=i.IMAGES_PROHIBITED_WORDS,exports.START_STEP=i.START_STEP,exports.TARGET_AUDIENCE=i.TARGET_AUDIENCE,exports.ZERO_SECTION=i.ZERO_SECTION,exports.portalInfo=i.portalInfo;
@@ -0,0 +1,7 @@
1
+ export declare const portalInfo = "The article is written for the web portal.I will give you important information regarding the web portal:\n - Brief description: KawaiiRealm is an engaging infotainment portal dedicated to the vibrant world of anime and manga. It offers readers a variety of articles that explore themes, characters, and trends, making it a must-visit destination for fans.\n - Detailed description: KawaiiRealm serves as a comprehensive resource for anime and manga enthusiasts, providing in-depth articles that delve into various aspects of these popular Japanese art forms. From character analyses and thematic explorations to reviews and recommendations, KawaiiRealm aims to enrich the understanding and appreciation of anime and manga. The portal also features engaging content that discusses the cultural impact of anime and manga, as well as their evolution over the years. With a commitment to fostering a sense of community, KawaiiRealm encourages interaction and sharing among fans, making it a vibrant hub for discussion and discovery.\n - Target audience: The target audience for KawaiiRealm includes anime and manga enthusiasts of all ages, ranging from casual viewers to hardcore fans. This includes teenagers and young adults who are active in online communities, as well as older fans looking to deepen their understanding of the genres. Additionally, individuals interested in Japanese culture and storytelling, art lovers, and those keen on exploring pop culture trends will find the content appealing.\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## Character Profiles\n - Overview of Main Characters\n - Supporting Characters\n\n## Theme Exploration\n - Central Themes\n - Cultural References\n\n## Popular Series and Recommendations\n - Top Anime Series of the Year\n - Hidden Gems in Manga\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 - Character Profiles, 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 = "Anime and manga enthusiasts";
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 a="The article is written for the web portal.I will give you important information regarding the web portal:\n - Brief description: KawaiiRealm is an engaging infotainment portal dedicated to the vibrant world of anime and manga. It offers readers a variety of articles that explore themes, characters, and trends, making it a must-visit destination for fans.\n - Detailed description: KawaiiRealm serves as a comprehensive resource for anime and manga enthusiasts, providing in-depth articles that delve into various aspects of these popular Japanese art forms. From character analyses and thematic explorations to reviews and recommendations, KawaiiRealm aims to enrich the understanding and appreciation of anime and manga. The portal also features engaging content that discusses the cultural impact of anime and manga, as well as their evolution over the years. With a commitment to fostering a sense of community, KawaiiRealm encourages interaction and sharing among fans, making it a vibrant hub for discussion and discovery.\n - Target audience: The target audience for KawaiiRealm includes anime and manga enthusiasts of all ages, ranging from casual viewers to hardcore fans. This includes teenagers and young adults who are active in online communities, as well as older fans looking to deepen their understanding of the genres. Additionally, individuals interested in Japanese culture and storytelling, art lovers, and those keen on exploring pop culture trends will find the content appealing.\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## Character Profiles\n - Overview of Main Characters\n - Supporting Characters\n\n## Theme Exploration\n - Central Themes\n - Cultural References\n\n## Popular Series and Recommendations\n - Top Anime Series of the Year\n - Hidden Gems in Manga\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 - Character Profiles, 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",i="synthesizing the information presented throughout",r="Anime and manga enthusiasts",o="any numbers, image, slug, step, seo, hand / hands, men, women, human, people, chief, preparing, process, cooking, mixing, serving, tasting, rolling",s=`That is TREMENDOUS important - if category doesn't match - return empty array for that category - []. For example if you don't find any match for $FILTERNAME, return for that category\n$FILTERNAME: []\nResponse in valid json, adhering strictly to json interface below, include every field present in it, but include values in array only suitable for article, all array values are optional!\n${require("../filters.js").getFiltersTypesJSON()}`;exports.END_STEP=i,exports.FILTERS_INFO=s,exports.IMAGES_PROHIBITED_WORDS=o,exports.START_STEP=n,exports.TARGET_AUDIENCE=r,exports.ZERO_SECTION=t,exports.portalInfo=a;
@@ -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";const e=({title:e,alt:a,articleTitle:t})=>({prompt:`1person, character, solo, [${e}], for an article [${t}], masterpiece, best quality, sfw, absurdres, full body, very aesthetic\n\t\t`,negativePrompt:"badhandv4, ng_deepnegative_v1_75t, FastNegativeV2,nsfw, explicit, sensitive, nude, naked, lowres, (bad anatomy), (bad hands), (extra legs), text, error, missing fingers, extra digit, fewer digits, liquid digits, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, blurry, artist name, (worst quality:1.6, low quality:1.6), (zombie, sketch, interlocked fingers, comic)",options:{sampler_name:"DPM++ 2M Karras",steps:32,cfg_scale:7,override_settings:{sd_model_checkpoint:"meinamix_meinaV11.safetensors [54ef3e3610]"}}}),a=({title:e,alt:a,articleTitle:t})=>`I NEED a hyper-real illustration of a ${e} at food style photography, ${a}, for an article ${t} 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}`,t=({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=t,exports.getStableDiffusionImagePrompt=e;
@@ -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 a;exports.PageNames=void 0,(a=exports.PageNames||(exports.PageNames={})).Authors="authors",a.Home="home",a.NotFound="not-found",a.AboutUs="about-us",a.PrivacyPolicy="privacy-policy",a.Terms="terms",a.Sitemap="sitemap";const e={[exports.PageNames.Authors]:{title:"Meet the Creators | KawaiiRealm - Your Anime & Manga Hub",description:"Discover our talented writers and their passion for anime and manga! 🎨✨ Dive into the world of creativity with KawaiiRealm."},[exports.PageNames.Home]:{title:"KawaiiRealm - Your Ultimate Anime & Manga Destination",description:"Welcome to KawaiiRealm! Explore the latest articles, reviews, and trends in anime and manga. 🌸📚 Join us on this kawaii adventure!"},[exports.PageNames.NotFound]:{title:"Oops! Page Not Found | KawaiiRealm",description:"We're sorry, but the page you're looking for doesn't exist. 🌌🔍 Explore our home page for the latest in anime and manga!"},[exports.PageNames.AboutUs]:{title:"About KawaiiRealm - Passion for Anime & Manga",description:"Learn more about KawaiiRealm and our mission to celebrate anime and manga culture! 🌟💖 Join us on this kawaii journey!"},[exports.PageNames.PrivacyPolicy]:{title:"Privacy Policy | KawaiiRealm - Your Trust Matters",description:"Read our Privacy Policy and learn how we safeguard your information! 🔒📜 At KawaiiRealm, your trust is our priority."},[exports.PageNames.Terms]:{title:"Terms of Service | KawaiiRealm - Know Your Rights",description:"Review our Terms of Service and understand your rights while enjoying KawaiiRealm! 📃⚖️ Dive into the details!"},[exports.PageNames.Sitemap]:{title:"Sitemap | KawaiiRealm - Navigate Our Content Easily",description:"Explore KawaiiRealm's content with our comprehensive sitemap! 🗺️✨ Find your favorite anime and manga articles today!"}},i=[{name:"Riya Sharma",description:"Riya Sharma is an Indian otaku and prolific writer based in Mumbai, with over 5 years of experience covering the latest trends in anime and manga. She has a keen interest in character development and storytelling, making her articles both insightful and engaging. When she’s not binge-watching anime, she enjoys attending conventions and connecting with fellow enthusiasts.",meta_title:"Riya Sharma - KawaiiRealm Anime and Manga Writer",meta_description:"Discover the thoughts of Riya Sharma, a passionate anime and manga writer from Mumbai, sharing insights on character development and storytelling."},{name:"Vikram Mehta",description:"Vikram Mehta is a freelance writer and anime critic from Delhi. With over a decade of experience in the anime community, he specializes in critique and thematic analysis. His articles often juxtapose traditional cultural narratives with contemporary anime themes, providing a unique perspective, making him a valuable contributor to KawaiiRealm.",meta_title:"Vikram Mehta - Anime Critic at KawaiiRealm",meta_description:"Explore the analytical reviews and critiques by Vikram Mehta, a seasoned anime enthusiast from Delhi, featured on KawaiiRealm."},{name:"Ananya Joshi",description:"Ananya Joshi is a passionate anime fan and freelance writer from Pune, with over 7 years of writing about anime and manga. Her expertise includes genre analysis and fan culture studies. She is known for her vivid descriptions and relatable writing style, making her a beloved figure among readers on KawaiiRealm.",meta_title:"Ananya Joshi - Genre Analyst at KawaiiRealm",meta_description:"Immerse yourself in the world of anime with Ananya Joshi's insightful genre analyses and engaging articles from KawaiiRealm."},{name:"Dev Patel",description:"Dev Patel is a Chennai-based writer and comic book illustrator with a deep love for manga. With 8 years of writing experience, he focuses on the intersection of art and narrative in both comics and anime. His distinct artistic perspective enriches the KawaiiRealm platform.",meta_title:"Dev Patel - Manga Artist and Writer at KawaiiRealm",meta_description:"Uncover the artistic insights of Dev Patel, a manga artist and writer, as he explores the worlds of comics and anime on KawaiiRealm."},{name:"Priya Nair",description:"Priya Nair is an upcoming anime blogger from Bangalore with a knack for writing humorous pieces about popular anime tropes. She combines her writing skills with a sociology background to analyze fandom dynamics. Her light-hearted yet insightful articles add a refreshing tone to KawaiiRealm.",meta_title:"Priya Nair - Anime Blogger at KawaiiRealm",meta_description:"Laugh along with Priya Nair, an anime blogger from Bangalore, as she humorously tackles popular anime tropes on KawaiiRealm."},{name:"Arjun Khanna",description:"Arjun Khanna is a lifelong anime enthusiast and writer from Hyderabad. With over 6 years of experience, he focuses on anime reviews and adaptation analyses. Arjun’s deep dives into story adaptations lend a critical eye to KawaiiRealm.",meta_title:"Arjun Khanna - Reviewer and Analyst at KawaiiRealm",meta_description:"Get deep insights with Arjun Khanna’s anime reviews and adaptation analyses featured in KawaiiRealm."},{name:"Sita Rao",description:"Sita Rao, hailing from Kolkata, is a creative writer and anime fan with a focus on anime cultural impact. She has been writing about anime for over 5 years and enjoys exploring the socio-political implications of various series, bringing a thoughtful lens to her work at KawaiiRealm.",meta_title:"Sita Rao - Cultural Critic at KawaiiRealm",meta_description:"Explore the cultural critiques and insights of Sita Rao, focusing on anime’s impact on society, exclusively on KawaiiRealm."},{name:"Kabir Bansal",description:"Kabir Bansal is a tech-savvy anime enthusiast from Ahmedabad, who writes about the latest anime technology and trends. With 4 years of experience, his tech reviews and insights provide a modern twist to anime discussions on KawaiiRealm.",meta_title:"Kabir Bansal - Tech Writer at KawaiiRealm",meta_description:"Stay updated with Kabir Bansal’s tech-savvy articles and insights on anime technology, exclusively on KawaiiRealm."},{name:"Neha Patil",description:"Neha Patil is a budding writer and anime lover from Jaipur with 3 years of experience. She focuses on unique storytelling techniques in anime and manga, exploring lesser-known series and creators. Her fresh outlook brings new perspectives to KawaiiRealm.",meta_title:"Neha Patil - Emerging Writer at KawaiiRealm",meta_description:"Discover new anime stories with Neha Patil, as she explores unique narratives and hidden gems in KawaiiRealm."},{name:"Karan Singh",description:"Karan Singh is an avid anime fan and novelist from Surat with more than 5 years of writing under his belt. His passionate takes on character arcs and psychological themes resonate with readers and encourage deeper reflections on popular anime series, enriching the content of KawaiiRealm.",meta_title:"Karan Singh - Anime Novelist and Writer at KawaiiRealm",meta_description:"Delve into the psychological depths of anime with Karan Singh’s compelling articles on character arcs and themes at KawaiiRealm."},{name:"Ananya Verma",description:"Ananya Verma is an avid anime and manga enthusiast from Mumbai, India. With a Bachelor’s degree in Animation, she has combined her love for storytelling with art. Ananya has been writing articles about anime and manga for over five years, contributing to various online platforms and magazines. Her unique perspectives and in-depth analyses make her a compelling voice in the otaku community.",meta_title:"Ananya Verma - Anime & Manga Writer | KawaiiRealm",meta_description:"Explore the insightful articles of Ananya Verma at KawaiiRealm. With years of experience in the anime and manga industry, Ananya offers in-depth analyses and captivating stories."},{name:"Ravi Mehta",description:"Ravi Mehta is a dedicated manga reviewer and anime critic based in Delhi. With over a decade of experience, he has worked with numerous publications, focusing on the cultural and artistic significance of various anime and manga series. In addition to his writing, Ravi is also a renowned content creator, sharing his insights through podcasts and YouTube.",meta_title:"Ravi Mehta - Expert Manga Reviewer | KawaiiRealm",meta_description:"Join Ravi Mehta on KawaiiRealm as he delves into the world of manga and anime. His expert reviews and cultural insights have made him a respected voice among fans."},{name:"Priya Kapoor",description:"Priya Kapoor hails from Bangalore and has been deeply passionate about anime and manga since childhood. With a Master’s degree in Comparative Literature, she blends her literary skills with her love for visual storytelling. Priya has published several articles and essays exploring themes in anime and manga and is an active member of local fan communities.",meta_title:"Priya Kapoor - Anime & Manga Analyst | KawaiiRealm",meta_description:"Discover the analytical articles of Priya Kapoor at KawaiiRealm. With a literary background, Priya explores deep themes within your favorite anime and manga series."},{name:"Sneha Iyer",description:"Sneha Iyer is an art historian and anime blogger from Chennai. With a keen interest in the intersection of art and storytelling, she specializes in visual storytelling techniques in manga and anime. Her articles are informative, helping readers understand the artistic nuances and cultural contexts behind popular titles.",meta_title:"Sneha Iyer - Artistic Insights on Anime & Manga | KawaiiRealm",meta_description:"Explore Sneha Iyer's insightful articles at KawaiiRealm, where she examines the artistic nuances and cultural contexts of beloved anime and manga."},{name:"Aditya Rao",description:"Aditya Rao is a seasoned writer and anime content strategist from Kolkata, known for his engaging storytelling methods. With over eight years of experience crafting articles for niche audiences, he has become an authority on anime reviews, recommendations, and news. Aditya has also served as a guest speaker at various anime conventions.",meta_title:"Aditya Rao - Anime Review Expert | KawaiiRealm",meta_description:"Stay updated with the latest in anime through Aditya Rao's articles at KawaiiRealm. His extensive experience guarantees insightful reviews and recommendations."},{name:"Nisha Banerjee",description:"Nisha Banerjee is a passionate otaku and writer from Hyderabad. With a background in Literature and Creative Writing, she has combined her academic expertise with her love for manga. Nisha’s writing often explores complex character arcs and narratives, making her a favorite among readers seeking in-depth content.",meta_title:"Nisha Banerjee - Deep Dives into Anime Character Arcs | KawaiiRealm",meta_description:"Uncover the depth of character arcs in anime with Nisha Banerjee's articles at KawaiiRealm. Her creative insights make every read worthwhile."},{name:"Rohit Chawla",description:"Rohit Chawla is an anime journalist and critic based in Pune. With over six years of experience, he is known for his reviews and editorial pieces on the anime industry. A dedicated member of several anime forums, Rohit often connects with fans to provide a guideline for emerging trends in the global anime scene.",meta_title:"Rohit Chawla - Anime Journalist & Critic | KawaiiRealm",meta_description:"Follow Rohit Chawla's journalistic journey in the anime industry at KawaiiRealm. His keen insights and reviews keep fans informed and engaged."},{name:"Tanya Joshi",description:"Tanya Joshi is a freelance writer and long-time anime fan from Ahmedabad. With a degree in Media Studies, she has written extensively on various anime genres and subcultures. Tanya's articles often feature interviews with creators and fans, connecting enthusiasts around shared interests.",meta_title:"Tanya Joshi - Anime and Manga Advocate | KawaiiRealm",meta_description:"Join Tanya Joshi at KawaiiRealm as she champions the world of anime and manga. Her engaging interviews and articles celebrate the culture of fandom."},{name:"Vikram Desai",description:"Vikram Desai is a seasoned translator and writer from Surat, specializing in anime and manga localization. Through his work, he provides readers with accessibility to content in multiple languages and discusses the intricacies of translation. Vikram's articles enhance understanding of international anime and manga culture.",meta_title:"Vikram Desai - Manga Translator & Writer | KawaiiRealm",meta_description:"Delve into the multifaceted world of anime and manga translation with Vikram Desai at KawaiiRealm. His expertise enlightens readers about localization."},{name:"Rohan Mehta",description:"Rohan Mehta is a passionate anime and manga enthusiast from Mumbai. With over five years of experience in writing articles and reviews, Rohan delves deep into the intricacies of beloved franchises, exploring themes, character development, and art styles. A regular contributor to various online platforms, he aims to bridge the gap between traditional storytelling and contemporary anime.",meta_title:"Rohan Mehta - Anime & Manga Writer at KawaiiRealm",meta_description:"Discover the world of anime and manga through Rohan Mehta's insightful articles at KawaiiRealm. Explore themes, character development, and more in his engaging writings."},{name:"Anjali Kumar",description:"Anjali Kumar is an anime and manga critic hailing from Bangalore. Known for her analytical approach, Anjali specializes in dissecting character arcs and narratives. With her vibrant writing style and a deep-rooted love for shoujo manga, she provides fresh perspectives that resonate with both casual viewers and hardcore fans.",meta_title:"Anjali Kumar - Manga Critic at KawaiiRealm",meta_description:"Join Anjali Kumar at KawaiiRealm as she analyzes character arcs and narratives in the anime and manga world. Gain fresh perspectives on your favorite series!"},{name:"Vikram Singh",description:"Vikram Singh, a self-proclaimed otaku from Delhi, combines his expertise in graphic design with his love for anime and manga. He has worked on numerous fan art projects and contributes insightful articles that explore the artistic side of the anime world, making art appreciation accessible to all.",meta_title:"Vikram Singh - Graphic Designer & Anime Enthusiast at KawaiiRealm",meta_description:"Explore the artistic realm of anime and manga with Vikram Singh at KawaiiRealm. Dive into fan art projects and article-driven insights on your favorite series!"},{name:"Priya Desai",description:"Priya Desai is a Tokyo-based journalist from Pune who covers the latest trends in anime and manga. With her finger on the pulse of the industry, she provides updates, reviews, and interviews with creators, making her a beloved figure amongst KawaiiRealm’s readers who seek to stay informed.",meta_title:"Priya Desai - Anime Trends Journalist at KawaiiRealm",meta_description:"Stay updated with the latest anime and manga trends through Priya Desai's articles on KawaiiRealm. Discover reviews, interviews, and industry insights!"},{name:"Sameer Bhatia",description:"Sameer Bhatia is an anime historian from Ahmedabad with a keen interest in the evolution of Japanese animation. His extensive knowledge translates into compelling articles that educate readers about the history and developments of their favorite genres and tropes.",meta_title:"Sameer Bhatia - Anime Historian at KawaiiRealm",meta_description:"Journey through the history of anime and manga with Sameer Bhatia's articles at KawaiiRealm. Explore the evolution and cultural significance of beloved genres!"},{name:"Sneha Nair",description:"Sneha Nair, based in Hyderabad, is a dedicated voice actor and writer who brings her understanding of character portrayal to her articles. With a flair for engaging storytelling, Sneha connects her audience to the emotional depth of anime and manga, providing relatable insights that make her a favorite at KawaiiRealm.",meta_title:"Sneha Nair - Voice Actor & Writer at KawaiiRealm",meta_description:"Connect with the emotional depth of anime and manga through Sneha Nair's engaging articles at KawaiiRealm. Discover relatable insights from a voice actor’s perspective!"},{name:"Karan Choudhury",description:"Karan Choudhury is a content creator from Kolkata who reviews anime and manga on his YouTube channel and now writes for KawaiiRealm. With a focus on storytelling and cinematography, Karan helps readers appreciate the artistic elements that make anime a unique medium.",meta_title:"Karan Choudhury - Content Creator & Reviewer at KawaiiRealm",meta_description:"Appreciate the storytelling and artistry of anime and manga through Karan Choudhury's reviews at KawaiiRealm. Dive into a unique exploration of the medium!"},{name:"Anisha Roy",description:"Anisha Roy, an avid reader and anime fan from Chandigarh, specializes in writing about manga series and their impact on contemporary culture. Her articles often draw parallels between real-world issues and themes in manga, offering a critical yet engaging perspective.",meta_title:"Anisha Roy - Manga Specialist at KawaiiRealm",meta_description:"Explore the cultural impact of manga series with Anisha Roy at KawaiiRealm. Discover critical insights and captivating articles that resonate with real-world issues!"},{name:"Nikhil Verma",description:"Nikhil Verma, a tech educator from Noida, combines his love for technology and animation. He writes extensively on anime’s technological advancements, including animation techniques, CGI, and the future of storytelling in the digital age, making complex information digestible for laypersons.",meta_title:"Nikhil Verma - Tech & Anime Writer at KawaiiRealm",meta_description:"Uncover the intersection of technology and anime with Nikhil Verma at KawaiiRealm. Learn about animation techniques and the future of storytelling in the digital realm!"},{name:"Shivani Agarwal",description:"Shivani Agarwal, a budding manga artist from Jaipur, writes about art in anime and manga. Through her articles, she shares tips, techniques, and motivations for aspiring artists while exploring the artistic journey behind popular series.",meta_title:"Shivani Agarwal - Manga Artist & Writer at KawaiiRealm",meta_description:"Embark on an artistic journey through anime and manga with Shivani Agarwal at KawaiiRealm. Get tips and insights for aspiring artists from a manga creator's viewpoint!"},{name:"Meena Shah",description:"Meena is a seasoned anime and manga enthusiast with over a decade of experience writing articles for various online platforms. An anime scholar and cultural analyst, she explores the intricate relationship between Japanese pop culture and Indian youth. Her passion shines through her insightful articles on both classic and contemporary anime.",meta_title:"Meena Shah - Anime & Manga Expert | KawaiiRealm",meta_description:"Explore the world of anime with Meena Shah, an expert writer who delves into the cultural nuances of Japanese pop culture and its impact on Indian society."},{name:"Ravi Kumar",description:"Ravi is a well-known figure in the anime community, his writing is backed by a background in film studies. For over 5 years, he has contributed to various publications, sharing his unique perspectives on storytelling and animation techniques in anime and manga.",meta_title:"Ravi Kumar - Film Studies Graduate & Anime Writer | KawaiiRealm",meta_description:"Discover Ravi Kumar's analytical insights on anime and manga through his articles filled with rich perspectives on storytelling and artistic techniques."},{name:"Aditi Mehra",description:"With a lifelong passion for anime and manga, Aditi has made her mark as a creative writer. She specializes in character analysis and thematic discussions, and her articles have been featured in several anime magazines. Aditi's keen eye for detail makes her a treasured contributor.",meta_title:"Aditi Mehra - Character Analyst & Writer | KawaiiRealm",meta_description:"Delve into character explorations and thematic discussions with Aditi Mehra, a passionate writer whose insights enrich the understanding of anime and manga."},{name:"Arjun Patil",description:"Arjun is an indie comic artist and anime critic based in Mumbai. His background in visual arts brings a unique perspective to his writing, allowing him to analyze anime through an artistic lens. He has contributed to numerous online forums and blogs, sharing his passion for animation.",meta_title:"Arjun Patil - Indie Comic Artist & Anime Critic | KawaiiRealm",meta_description:"Explore the artistic side of anime and manga with Arjun Patil, an indie comic artist sharing his insights and critiques on animation and storytelling."},{name:"Nisha Verma",description:"As an editor for multiple anime publications, Nisha boasts considerable experience in content curation and trend analysis in the anime world. Her articles focus on new releases and industry news, making her a go-to source for up-to-date information.",meta_title:"Nisha Verma - Anime Industry Analyst & Editor | KawaiiRealm",meta_description:"Stay updated with the latest trends and releases in anime and manga through Nisha Verma's insightful articles, delivering fresh insights and analysis."},{name:"Sameer Iyer",description:"Sameer is a passionate otaku and travel blogger who chronicles his adventures at anime conventions around the world. His firsthand experiences add a unique layer to his articles, where he shares everything from cosplay tips to the best events to attend.",meta_title:"Sameer Iyer - Travel Blogger & Anime Enthusiast | KawaiiRealm",meta_description:"Join Sameer Iyer on his global journey through anime conventions, sharing firsthand experiences, cosplay tips, and community insights."},{name:"Lina Ghosh",description:"A manga artist and writer, Lina has transitioned into writing about anime and manga with a focus on art styles and cultural storytelling. She actively engages with the anime community through her illustrations and analytical pieces in various art magazines.",meta_title:"Lina Ghosh - Manga Artist & Anime Writer | KawaiiRealm",meta_description:"Discover the art of storytelling in anime and manga with Lina Ghosh, a manga artist sharing her unique insights on styles and cultural narratives."},{name:"Devika Rao",description:"With a deep appreciation for the lore of anime, Devika combines her background in literature with her love for manga to create compelling articles. Her work often highlights the literary techniques used in storytelling within the anime realm.",meta_title:"Devika Rao - Literary Analyst & Anime Writer | KawaiiRealm",meta_description:"Dive into the literary elements of anime with Devika Rao, whose articles explore storytelling techniques and thematic depth across various series."},{name:"Karan Mehta",description:"Karan is a film enthusiast turned anime critic who offers a cinematic analysis of popular series and films. His engaging reviews and thought-provoking articles make him a prominent voice within the KawaiiRealm community.",meta_title:"Karan Mehta - Cinematic Analyst & Anime Critic | KawaiiRealm",meta_description:"Experience the cinematic depth of anime through Karan Mehta's articles, offering engaging reviews and analyses of popular series and films."},{name:"Pooja Sethi",description:"Pooja is a cultural commentator and anime writer with a knack for discussing the societal impact of anime and manga in India. Her thought-provoking articles tackle representation, themes, and the growing influence of anime in Indian pop culture.",meta_title:"Pooja Sethi - Cultural Commentator & Anime Writer | KawaiiRealm",meta_description:"Explore the societal implications and cultural themes of anime and manga with Pooja Sethi, an insightful writer discussing their impact on Indian society."},{name:"Sarah Tanaka",description:"A passionate writer and anime enthusiast from Japan, Sarah has been immersed in the world of anime and manga since childhood. With over 5 years of experience freelancing for popular culture websites, she brings a unique perspective on traditional and modern anime. She loves to analyze character developments and plot intricacies, making her articles both insightful and engaging.",meta_title:"Sarah Tanaka - Anime and Manga Enthusiast at KawaiiRealm",meta_description:"Explore the thoughts and insights of Sarah Tanaka, a passionate anime and manga writer with 5 years of experience, contributing her unique perspectives to KawaiiRealm."},{name:"Liam O'Reilly",description:"Hailing from Ireland, Liam is an avid manga collector and critic with over 7 years of experience in writing for various online publications. His analytical reviews and engaging content help readers appreciate the art and storytelling of manga. He specializes in indie manga and lesser-known titles that deserve the spotlight.",meta_title:"Liam O'Reilly - Manga Critic and Writer at KawaiiRealm",meta_description:"Join Liam O'Reilly as he shares his expertise on indie manga and highlights hidden gems in the manga world through KawaiiRealm's articles."},{name:"Maria Gonzalez",description:"Based in Mexico, Maria is a committed anime fan and cultural researcher. With a background in anthropology, she explores the cultural significance of anime and manga through her work. Having written for various academic journals and blogs over the past 6 years, her articles provide a deeper understanding of the themes and narratives prevalent in anime.",meta_title:"Maria Gonzalez - Cultural Insight Writer at KawaiiRealm",meta_description:"Discover the cultural depths of anime and manga with Maria Gonzalez, a seasoned writer and researcher contributing to KawaiiRealm."},{name:"Sofia Müller",description:"Originally from Germany, Sofia is an experienced writer and editor with a passion for both anime and manga from different cultures. With over 8 years in the field, she provides detailed coverage of international anime festivals and conventions, sharing tips and guides for fans around the world. Her engaging narratives bridge cultural gaps and connect fans globally.",meta_title:"Sofia Müller - International Anime Culture Writer at KawaiiRealm",meta_description:"Join Sofia Müller in her journey through international anime culture as she shares insights and experiences that connect fans worldwide on KawaiiRealm."},{name:"Jack Thompson",description:"A freelance writer from Australia, Jack focuses on anime film critiques and cinematic trends in the anime industry. With over 3 years of experience, he’s known for his deep analysis and creative insights, shedding light on narrative styles and visual storytelling in anime films.",meta_title:"Jack Thompson - Anime Film Critic at KawaiiRealm",meta_description:"Get in-depth film critiques and analyses from Jack Thompson, an expert writer at KawaiiRealm, focusing on anime's cinematic narratives."},{name:"Yuki Takahashi",description:"With roots in Japan, Yuki is a vibrant podcaster and writer who brings her 6 years of anime content creation experience to KawaiiRealm. She's passionate about discussing anime episodes, character arcs, and trends in a way that resonates with fans. Yuki's contagious enthusiasm and knowledge make her content enjoyable and informative.",meta_title:"Yuki Takahashi - Enthusiastic Anime Podcaster at KawaiiRealm",meta_description:"Explore the latest anime trends and character evaluations with Yuki Takahashi, a dynamic podcaster and writer for KawaiiRealm."},{name:"Nina Petrov",description:"A Russian native, Nina has spent over 5 years dedicated to analyzing the stylistic and artistic elements of manga and anime. She’s a graphic design student with a knack for visual storytelling, enriching KawaiiRealm’s content with her artistic insights and reviews of visual trends within the community.",meta_title:"Nina Petrov - Visual Art Writer at KawaiiRealm",meta_description:"Join Nina Petrov as she delves into the artistic side of anime and manga, bringing visual storytelling insights to KawaiiRealm."},{name:"Gabriel Brown",description:"Based in Canada, Gabriel has over 4 years of experience writing about anime genres and their evolution. His analytical skills and love for shonen and shojo genres fuel his articles, helping fans discover new favorites and appreciate classic titles alike.",meta_title:"Gabriel Brown - Anime Genre Specialist at KawaiiRealm",meta_description:"Explore the evolution of anime genres with Gabriel Brown, a knowledgeable writer at KawaiiRealm who helps you discover your next favorite series."},{name:"Hanna Lee",description:"An experienced content creator from South Korea, Hanna has a passion for anime history and storytelling. With over 7 years of writing, she provides rich historical context to anime shows and films, enabling readers to understand the culture behind their favorite titles.",meta_title:"Hanna Lee - Anime Historian and Writer at KawaiiRealm",meta_description:"Dive into the rich history of anime with Hanna Lee, an expert writer at KawaiiRealm bringing cultural context to your favorite shows."},{name:"Aiko Tanaka",description:"Aiko Tanaka is a passionate writer and anime researcher based in Tokyo, Japan. With over 5 years of experience in the anime blogging community, she specializes in character analysis and story arcs. Aiko has contributed to various Japanese and English-language publications, exploring the dynamics of anime fandom and the cultural impact of manga.",meta_title:"Aiko Tanaka - KawaiiRealm Anime and Manga Writer",meta_description:"Discover Aiko Tanaka, our talented writer based in Tokyo, specializing in character analysis and anime fandom. Explore her insights on KawaiiRealm!"},{name:"Lucas Müller",description:"Lucas Müller is an avid anime fan and freelance writer from Berlin, Germany. With a background in media studies, he has spent over 7 years creating content for various platforms, focusing on anime reviews and seasonal round-ups. His deep understanding of Western and Eastern media allows him to bridge cultural gaps.",meta_title:"Lucas Müller - Expert Anime Reviews at KawaiiRealm",meta_description:"Read expert anime reviews by Lucas Müller, a freelance writer from Berlin. Join him on KawaiiRealm for the latest anime insights and seasonal highlights!"},{name:"Tomás Silva",description:"Hailing from São Paulo, Brazil, Tomás Silva has been writing critically about anime and manga for over 6 years. As a digital media expert, he analyzes trends in the industry and their influence on global pop culture. His articles often delve into the technical aspects of animation and storytelling.",meta_title:"Tomás Silva - Anime and Manga Trend Analyst",meta_description:"Stay up to date with Tomás Silva's analyses of anime and manga trends. Join him on KawaiiRealm for in-depth industry insights!"},{name:"Chloe Wright",description:"Based in London, UK, Chloe Wright is a lifestyle blogger and anime aficionado with over 5 years of experience. Chloe explores the impact of anime on mental health and personal growth through her articles, sharing her journey and connecting with others who are passionate about the anime medium.",meta_title:"Chloe Wright - Anime Impact on Lifestyle",meta_description:"Discover how anime can influence lifestyle and mental health in Chloe Wright's articles on KawaiiRealm. Join her journey today!"},{name:"Sofia Ivanova",description:"Sofia Ivanova, a writer from Moscow, Russia, has a decade-long fascination with anime and manga. She contributes critically acclaimed articles that examine the artistic styles and narrative structures within the medium. Her thorough research and engaging writing make her a valuable voice on KawaiiRealm.",meta_title:"Sofia Ivanova - Artistic Insights into Anime and Manga",meta_description:"Uncover artistic insights into anime and manga with Sofia Ivanova on KawaiiRealm. Explore her critically acclaimed articles!"},{name:"Nia Abdi",description:"Nia Abdi is a Somali-American writer based in Atlanta, Georgia. With a background in literature and cultural studies, Nia brings a refreshing perspective to her analyses of anime themes and cultural representations. She has been actively writing about anime and manga for over 3 years.",meta_title:"Nia Abdi - Cultural Insights in Anime",meta_description:"Explore the cultural insights Nia Abdi offers on KawaiiRealm as she examines themes and representations in anime and manga!"},{name:"Ethan Chen",description:"Ethan Chen is a content creator from Shanghai, China. With a strong passion for storytelling, Ethan has been writing about anime and manga for over 6 years, focusing on hidden gems and underrated titles. His articles aim to introduce readers to lesser-known gems in the anime world.",meta_title:"Ethan Chen - Discover Hidden Anime Gems",meta_description:"Join Ethan Chen on KawaiiRealm as he uncovers hidden anime gems and underrated manga titles. Discover new favorites today!"},{name:"Isabella Rossi",description:"Isabella Rossi, an Italian anime and manga writer based in Milan, Italy, has been part of the anime community for over 8 years. Her writing focuses on the historical evolution of anime and manga and their influence on modern art. Isabella shares her insights with a rich cultural context.",meta_title:"Isabella Rossi - Historical Perspectives on Anime & Manga",meta_description:"Delve into historical perspectives on anime and manga with Isabella Rossi on KawaiiRealm. Explore the evolution of animation and storytelling!"},{name:"Yumi Kim",description:"Based in Seoul, South Korea, Yumi Kim is a dedicated anime and manga journalist with over 5 years of experience. Specializing in industry news and fan events, she provides readers with the latest updates from conventions, festivals, and cultural discussions surrounding anime and manga worldwide.",meta_title:"Yumi Kim - Latest Anime & Manga News from Korea",meta_description:"Stay updated with the latest anime and manga news from Korea with Yumi Kim on KawaiiRealm. Join her for exclusive event coverage!"}],n=i.reduce(((a,e)=>Object.assign(Object.assign({},a),{[e.name]:{title:e.meta_title,description:e.meta_description}})),{});exports.AUTHORS_INFO=i,exports.AUTHORS_META=n,exports.PAGES_SEO=e;
@@ -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:#ff6f61;--theme-color-8:#ff8f73;--theme-color-7:#ffb2b1;--theme-color-6:#ffdfd3;--theme-color-5:#ffe6e9;--theme-color-3:#f6e0e4;--theme-color-2:#fff3f5;--color-bg-layout:#fafafa;--color-bg-hover:#fff5f7;--article-border-radius:25px;--btn-border-radius:15px;--category-border-radius:25px;}
@@ -0,0 +1 @@
1
+ @import "sizing.css";@import "colors.css";@import "fonts.css";@import "theme.css";
@@ -0,0 +1,273 @@
1
+ export declare const dataStructure: {
2
+ fashionTrends: {
3
+ title: string;
4
+ description: string;
5
+ slug: string;
6
+ children: {
7
+ seasonalStyles: {
8
+ title: string;
9
+ description: string;
10
+ slug: string;
11
+ children: null;
12
+ };
13
+ streetStyleInspo: {
14
+ title: string;
15
+ description: string;
16
+ slug: string;
17
+ children: null;
18
+ };
19
+ celebrityLooks: {
20
+ title: string;
21
+ description: string;
22
+ slug: string;
23
+ children: null;
24
+ };
25
+ colorPalettes: {
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
+ beautyTips: {
40
+ title: string;
41
+ description: string;
42
+ slug: string;
43
+ children: {
44
+ skincareRoutines: {
45
+ title: string;
46
+ description: string;
47
+ slug: string;
48
+ children: null;
49
+ };
50
+ makeupEssentials: {
51
+ title: string;
52
+ description: string;
53
+ slug: string;
54
+ children: null;
55
+ };
56
+ hairCareAdvice: {
57
+ title: string;
58
+ description: string;
59
+ slug: string;
60
+ children: null;
61
+ };
62
+ nailArtIdeas: {
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
+ sustainableFashion: {
77
+ title: string;
78
+ description: string;
79
+ slug: string;
80
+ children: {
81
+ ecoFriendlyBrands: {
82
+ title: string;
83
+ description: string;
84
+ slug: string;
85
+ children: null;
86
+ };
87
+ upcycledFashion: {
88
+ title: string;
89
+ description: string;
90
+ slug: string;
91
+ children: null;
92
+ };
93
+ thriftShopping: {
94
+ title: string;
95
+ description: string;
96
+ slug: string;
97
+ children: null;
98
+ };
99
+ ethicalFashionGuides: {
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
+ wardrobeEssentials: {
114
+ title: string;
115
+ description: string;
116
+ slug: string;
117
+ children: {
118
+ basicsEveryWomanNeeds: {
119
+ title: string;
120
+ description: string;
121
+ slug: string;
122
+ children: null;
123
+ };
124
+ accessoryTrends: {
125
+ title: string;
126
+ description: string;
127
+ slug: string;
128
+ children: null;
129
+ };
130
+ footwearFashion: {
131
+ title: string;
132
+ description: string;
133
+ slug: string;
134
+ children: null;
135
+ };
136
+ seasonalMustHaves: {
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
+ beautyProductReviews: {
151
+ title: string;
152
+ description: string;
153
+ slug: string;
154
+ children: {
155
+ skincareProducts: {
156
+ title: string;
157
+ description: string;
158
+ slug: string;
159
+ children: null;
160
+ };
161
+ makeupBrands: {
162
+ title: string;
163
+ description: string;
164
+ slug: string;
165
+ children: null;
166
+ };
167
+ hairCareProducts: {
168
+ title: string;
169
+ description: string;
170
+ slug: string;
171
+ children: null;
172
+ };
173
+ toolsAndAccessories: {
174
+ title: string;
175
+ description: string;
176
+ slug: string;
177
+ children: null;
178
+ };
179
+ other: {
180
+ title: string;
181
+ description: string;
182
+ slug: string;
183
+ children: null;
184
+ };
185
+ };
186
+ };
187
+ styleGuides: {
188
+ title: string;
189
+ description: string;
190
+ slug: string;
191
+ children: {
192
+ bodyShapeDressing: {
193
+ title: string;
194
+ description: string;
195
+ slug: string;
196
+ children: null;
197
+ };
198
+ workwearLooks: {
199
+ title: string;
200
+ description: string;
201
+ slug: string;
202
+ children: null;
203
+ };
204
+ casualOutfitIdeas: {
205
+ title: string;
206
+ description: string;
207
+ slug: string;
208
+ children: null;
209
+ };
210
+ eventFashion: {
211
+ title: string;
212
+ description: string;
213
+ slug: string;
214
+ children: null;
215
+ };
216
+ other: {
217
+ title: string;
218
+ description: string;
219
+ slug: string;
220
+ children: null;
221
+ };
222
+ };
223
+ };
224
+ trendingTopics: {
225
+ title: string;
226
+ description: string;
227
+ slug: string;
228
+ children: {
229
+ fashionWeekHighlights: {
230
+ title: string;
231
+ description: string;
232
+ slug: string;
233
+ children: null;
234
+ };
235
+ viralBeautyTrends: {
236
+ title: string;
237
+ description: string;
238
+ slug: string;
239
+ children: null;
240
+ };
241
+ culturalInfluences: {
242
+ title: string;
243
+ description: string;
244
+ slug: string;
245
+ children: null;
246
+ };
247
+ fashionIcons: {
248
+ title: string;
249
+ description: string;
250
+ slug: string;
251
+ children: null;
252
+ };
253
+ other: {
254
+ title: string;
255
+ description: string;
256
+ slug: string;
257
+ children: null;
258
+ };
259
+ };
260
+ };
261
+ };
262
+ export declare const authors: Record<string, string>;
263
+ export declare const authorsNames: string[];
264
+ export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83D\uDC57\uD83D\uDC84\u2728\uD83D\uDC60";
265
+ export declare const categories: ("fashionTrends" | "styleGuides" | "wardrobeEssentials" | "beautyProductReviews" | "beautyTips" | "sustainableFashion" | "trendingTopics")[];
266
+ export declare const subcategories: string[];
267
+ export declare const subsubcategories: string[];
268
+ export type Category = keyof typeof dataStructure;
269
+ export type CategoryNode = (typeof dataStructure)[Category];
270
+ export type SubcategoryKeyByCategory<T extends Category> = (typeof dataStructure)[T]['children'];
271
+ export declare const startDate = "2024-09-10T00:00:00Z";
272
+ export declare const devBucketName = "idn-radianceensemble-dev";
273
+ export declare const prodBucketName = "idn-radianceensemble";
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./seo.js");const t={fashionTrends:{title:"Discover the Latest Fashion Trends for Women in 2023 🌟",description:"Explore exciting fashion trends and style tips for women. Stay updated with seasonal styles, street style inspiration, and more! 🌸",slug:"latest-fashion-trends-for-women",children:{seasonalStyles:{title:"Seasonal Styles: Embrace Fashion with the Seasons 🍂",description:"Dive into seasonal styles that enhance your wardrobe. Discover must-have outfits that define each season's chic vibe! ☀️❄️",slug:"seasonal-styles",children:null},streetStyleInspo:{title:"Street Style Inspiration: Elevate Your Everyday Look 🚶‍♀️",description:"Get inspired by the latest street style trends! Discover practical fashion tips to express your personal style effortlessly. 🎨",slug:"street-style-inspo",children:null},celebrityLooks:{title:"Celebrity Looks: Style Like Your Favorite Stars ✨",description:"Recreate stunning celebrity looks with style inspiration from your favorite icons. Stand out with glamorous outfits! 🌟👗",slug:"celebrity-looks",children:null},colorPalettes:{title:"Color Palettes: Unlock the Power of Colors in Fashion 🎨",description:"Master the use of colors in your outfits with our trending color palettes. Find your perfect match today! 🌈✨",slug:"color-palettes",children:null},other:{title:"Other Fashion Trends: Explore Unique Styles & Ideas 💖",description:"Delve into other exciting fashion trends that don't fit the norm! Discover unique styles and creative fashion ideas. 🌟💡",slug:"other-fashion-trends",children:null}}},beautyTips:{title:"Ultimate Beauty Tips for Modern Women ✨",description:"Discover expert beauty tips including skincare routines, makeup must-haves, hair care secrets, and stunning nail art ideas to elevate your style! 🌸",slug:"ultimate-beauty-tips",children:{skincareRoutines:{title:"Essential Skincare Routines for Every Woman 🌼",description:"Explore essential skincare routines tailored for various skin types to help you achieve radiant, healthy skin every day! 💖",slug:"essential-skincare-routines",children:null},makeupEssentials:{title:"Must-Have Makeup Essentials for Flawless Looks 💄",description:"Unlock your beauty potential with these must-have makeup essentials that ensure a flawless look for any occasion! 💕",slug:"must-have-makeup-essentials",children:null},hairCareAdvice:{title:"Hair Care Advice for Gorgeous Locks Every Day 🌟",description:"Get insider hair care advice to maintain stunning locks, from tips for all hair types to nourishing treatments and styling tricks! 🌸",slug:"hair-care-advice",children:null},nailArtIdeas:{title:"Creative Nail Art Ideas to Express Your Style 💅",description:"Express your unique style with creative nail art ideas that showcase your personality and keep your nails looking fabulous! 🌈",slug:"creative-nail-art-ideas",children:null},other:{title:"Other Beauty Tips and Tricks for Modern Women 🎀",description:"Explore a variety of other beauty tips and tricks, from lifestyle hacks to DIY beauty solutions that enhance your everyday routine! 🌟",slug:"other-beauty-tips",children:null}}},sustainableFashion:{title:"Explore Sustainable Fashion: Empower Your Style 🌱",description:"Delve into sustainable fashion at RadianceEnsemble. Discover eco-friendly brands, upcycled fashion pieces, and thrift shopping tips to elevate your wardrobe! 🌸",slug:"sustainable-fashion",children:{ecoFriendlyBrands:{title:"Top Eco-Friendly Fashion Brands for Women ♻️",description:"Uncover the best eco-friendly fashion brands that help you look stylish while protecting the planet. Embrace sustainable choices with these fabulous labels. 🌼",slug:"eco-friendly-brands",children:null},upcycledFashion:{title:"Creative Upcycled Fashion Ideas for Unique Styles ♻️✨",description:"Transform your wardrobe with upcycled fashion! Discover unique styles that combine creativity and sustainability in every piece you wear. Your eco-friendly journey starts here! 🌺",slug:"upcycled-fashion",children:null},thriftShopping:{title:"The Ultimate Thrift Shopping Guide for Fashion Lovers 🛍️💖",description:"Master the art of thrift shopping with our guide! Find incredible treasures and learn tips on how to score stylish and sustainable fashion pieces at unbeatable prices. 🌻",slug:"thrift-shopping",children:null},ethicalFashionGuides:{title:"Essential Ethical Fashion Guides for Conscious Consumers 🌍",description:"Navigate the world of ethical fashion with our comprehensive guides! Learn about sustainable practices and shopping tips to make informed fashion choices. 💚",slug:"ethical-fashion-guides",children:null},other:{title:"Miscellaneous Insights into Sustainable Fashion 🌟",description:"Explore various topics related to sustainable fashion beyond the usual. Discover additional insights and ideas that inspire eco-conscious choices in your wardrobe. 🌈",slug:"sustainable-fashion-other",children:null}}},wardrobeEssentials:{title:"Wardrobe Essentials for Every Woman: Style & Functionality",description:"Discover essential wardrobe pieces every woman needs to elevate her style. From classics to trendy must-haves, explore ways to enhance your fashion! 👗✨",slug:"wardrobe-essentials",children:{basicsEveryWomanNeeds:{title:"Must-Have Basics Every Woman Needs in Her Closet",description:"Uncover the basics every woman should have in her wardrobe. From classic tees to versatile dresses, these pieces are timeless essentials! 🛍️💖",slug:"basics-every-woman-needs",children:null},accessoryTrends:{title:"Latest Accessory Trends Every Fashionista Should Know",description:"Stay updated with the latest accessory trends that elevate your outfits! Explore must-have jewelry, bags, and scarves for a chic look. 👜✨",slug:"accessory-trends",children:null},footwearFashion:{title:"Explore the Hottest Footwear Fashion Trends for Women",description:"Step up your style with the latest footwear fashion trends! Discover must-have shoes that combine comfort and style effortlessly. 👠💃",slug:"footwear-fashion",children:null},seasonalMustHaves:{title:"Seasonal Must-Haves: Essential Fashion for Every Season",description:"Prepare for each season with must-have fashion items! Discover the key pieces to keep you stylish and comfortable all year round. 🌸❄️",slug:"seasonal-must-haves",children:null},other:{title:"Unique Wardrobe Essentials: Beyond the Basics",description:"Explore unique wardrobe essentials that go beyond the basics. Discover special pieces that add flair to any outfit! 🌟👗",slug:"unique-wardrobe-essentials",children:null}}},beautyProductReviews:{title:"Explore the Latest Beauty Product Reviews for Women",description:"Discover comprehensive reviews of the latest beauty products tailored for modern women. Get insights into skincare, makeup, and hair care! 🌸",slug:"beauty-product-reviews",children:{skincareProducts:{title:"Essential Skincare Products for Radiant Skin",description:"Uncover the best skincare products designed to keep your skin glowing and healthy. From cleansers to moisturizers, we’ve got you covered! 🧴✨",slug:"skincare-products",children:null},makeupBrands:{title:"Top Makeup Brands to Elevate Your Look",description:"Dive into reviews of leading makeup brands and find the products that will enhance your beauty routine and boost your confidence! 💄🌟",slug:"makeup-brands",children:null},hairCareProducts:{title:"Hair Care Products for Every Hair Type",description:"Explore a variety of hair care products tailored for all hair types, ensuring your locks are gorgeous and healthy every day. 🌺💇‍♀️",slug:"hair-care-products",children:null},toolsAndAccessories:{title:"Must-Have Tools and Accessories for Beauty",description:"Find the essential tools and accessories that every beauty enthusiast needs to elevate their application and styling game! 🛠️💖",slug:"tools-and-accessories",children:null},other:{title:"Other Noteworthy Beauty Products to Explore",description:"Discover additional beauty products worth trying out, from innovative trends to timeless favorites that can enhance your daily routine! 🌈🛍️",slug:"other-beauty-products",children:null}}},styleGuides:{title:"Fashion and Beauty Style Guides for Women 🌸",description:"Explore style guides covering body shape dressing, workwear looks, casual outfits, and event fashion tailored for modern women. ✨",slug:"fashion-beauty-style-guides",children:{bodyShapeDressing:{title:"Mastering Body Shape Dressing: Flatter Your Figure 👗",description:"Unlock the secrets to dressing for your unique body shape, featuring tips and styles that enhance your beauty and confidence! 💁‍♀️",slug:"body-shape-dressing",children:null},workwearLooks:{title:"Elevate Your Professional Style with Workwear Looks 👩‍💼",description:"Discover chic and stylish workwear options that empower your professional image while keeping comfort and elegance in mind! 🌟",slug:"workwear-looks",children:null},casualOutfitIdeas:{title:"Casual Outfit Ideas: Style Meets Comfort 🛍️",description:"Explore trendy and comfortable casual outfit ideas perfect for everyday wear, allowing you to express your unique style effortlessly! 🌈",slug:"casual-outfit-ideas",children:null},eventFashion:{title:"Event Fashion: Stand Out at Every Occasion 🎉",description:"Get inspired with event fashion ideas that help you stand out, making a memorable impression at weddings, parties, and more! ✨",slug:"event-fashion",children:null},other:{title:"Other Fashion Insights: Unique Style Tips 🌼",description:"Dive into diverse fashion insights covering various styles and trends not captured in other categories, perfect for fashion enthusiasts! 🌟",slug:"other-fashion-insights",children:null}}},trendingTopics:{title:"Discover the Latest Trends in Women's Fashion and Beauty ✨",description:"Stay ahead in women's fashion and beauty trends with insightful articles and tips that empower your style and confidence. 🌼",slug:"trending-topics-fashion-beauty",children:{fashionWeekHighlights:{title:"Exciting Highlights from Fashion Week to Inspire Your Style 🎉",description:"Explore the latest fashion week highlights that set trends for your wardrobe. From stunning collections to must-have pieces, we cover it all! 👗",slug:"fashion-week-highlights",children:null},viralBeautyTrends:{title:"Viral Beauty Trends Everyone is Talking About Right Now 🌟",description:"Discover viral beauty trends that are taking social media by storm! Uncover techniques and products that will elevate your beauty routine. 💄",slug:"viral-beauty-trends",children:null},culturalInfluences:{title:"Fashion and Beauty Influences from Around the World 🌍",description:"Delve into the cultural influences shaping today's fashion and beauty landscape. See how traditions inspire contemporary trends! 🎨",slug:"cultural-influences",children:null},fashionIcons:{title:"Fashion Icons Who Redefine Style Through the Ages 👑",description:"Celebrate fashion icons whose unique styles have influenced generations. Get inspired by their looks and discover how to wear them! ✨",slug:"fashion-icons",children:null},other:{title:"Additional Fashion and Beauty Tips You Need to Know 💡",description:"Explore various fashion and beauty topics that enhance your knowledge and style approach. From tips to advice, we've got you covered! 🌺",slug:"other-fashion-beauty-tips",children:null}}}},s=e.AUTHORS_INFO.reduce(((e,t)=>Object.assign(Object.assign({},e),{[t.name]:[t.description]})),{}),i=e.AUTHORS_INFO.map((e=>e.name)),o="👗💄✨👠",n=Object.keys(t),r=[],a=[];for(const e of n){const s=t[e];if(null==s?void 0:s.children){r.push(...Object.keys(s.children));for(const e of r){const t=s.children[e];(null==t?void 0:t.children)&&a.push(...Object.keys(t.children))}}}const l="2024-09-10T00:00:00Z",c="radianceensemble",u=`idn-${c}-dev`,d=`idn-${c}`;exports.DEFAULT_DESCRIPTION_EMOJIS=o,exports.authors=s,exports.authorsNames=i,exports.categories=n,exports.dataStructure=t,exports.devBucketName=u,exports.prodBucketName=d,exports.startDate=l,exports.subcategories=r,exports.subsubcategories=a;
@@ -0,0 +1,28 @@
1
+ export declare enum FiltersNames {
2
+ TrendyThemes = "Trendy Themes",
3
+ BeautyBreakdowns = "Beauty Breakdowns",
4
+ SeasonalStyles = "Seasonal Styles",
5
+ SustainableFocus = "Sustainable Focus",
6
+ AgeAesthetics = "Age Aesthetics"
7
+ }
8
+ type TrendyThemesValues = 'Bohemian Chic' | 'Minimalist Aesthetics' | 'Vintage Vibes' | 'Streetwear Styles' | 'Athleisure Looks';
9
+ type BeautyBreakdownsValues = 'Skincare Ethics' | 'Natural Makeup Tips' | 'Anti-Aging Secrets' | 'DIY Beauty Hacks' | 'Inclusive Beauty Products';
10
+ type SeasonalStylesValues = 'Spring Essentials' | 'Summer Wardrobe' | 'Autumn Layers' | 'Winter Warmers' | 'Year-Round Classics';
11
+ type SustainableFocusValues = 'Eco-Friendly Fabrics' | 'Vegan Beauty Brands' | 'Upcycled Fashion' | 'Conscious Consumerism' | 'Ethically Sourced Products';
12
+ type AgeAestheticsValues = 'Teen Trends' | '20s Fashion Forward' | '30s Empowerment' | '40s & Fabulous' | 'Timeless Elegance';
13
+ export type ArticleFilters = {
14
+ [FiltersNames.TrendyThemes]: TrendyThemesValues[];
15
+ [FiltersNames.BeautyBreakdowns]: BeautyBreakdownsValues[];
16
+ [FiltersNames.SeasonalStyles]: SeasonalStylesValues[];
17
+ [FiltersNames.SustainableFocus]: SustainableFocusValues[];
18
+ [FiltersNames.AgeAesthetics]: AgeAestheticsValues[];
19
+ };
20
+ export declare const trendyThemesValues: TrendyThemesValues[];
21
+ export declare const beautyBreakdownsValues: BeautyBreakdownsValues[];
22
+ export declare const seasonalStylesValues: SeasonalStylesValues[];
23
+ export declare const sustainableFocusValues: SustainableFocusValues[];
24
+ export declare const ageAestheticsValues: AgeAestheticsValues[];
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={})).TrendyThemes="Trendy Themes",e.BeautyBreakdowns="Beauty Breakdowns",e.SeasonalStyles="Seasonal Styles",e.SustainableFocus="Sustainable Focus",e.AgeAesthetics="Age Aesthetics";const s=["Bohemian Chic","Minimalist Aesthetics","Vintage Vibes","Streetwear Styles","Athleisure Looks"],t=["Skincare Ethics","Natural Makeup Tips","Anti-Aging Secrets","DIY Beauty Hacks","Inclusive Beauty Products"],a=["Spring Essentials","Summer Wardrobe","Autumn Layers","Winter Warmers","Year-Round Classics"],r=["Eco-Friendly Fabrics","Vegan Beauty Brands","Upcycled Fashion","Conscious Consumerism","Ethically Sourced Products"],i=["Teen Trends","20s Fashion Forward","30s Empowerment","40s & Fabulous","Timeless Elegance"],l={[exports.FiltersNames.TrendyThemes]:[],[exports.FiltersNames.BeautyBreakdowns]:[],[exports.FiltersNames.SeasonalStyles]:[],[exports.FiltersNames.SustainableFocus]:[],[exports.FiltersNames.AgeAesthetics]:[]},o={[exports.FiltersNames.TrendyThemes]:s,[exports.FiltersNames.BeautyBreakdowns]:t,[exports.FiltersNames.SeasonalStyles]:a,[exports.FiltersNames.SustainableFocus]:r,[exports.FiltersNames.AgeAesthetics]:i},n=()=>JSON.stringify(o,null,2);exports.ageAestheticsValues=i,exports.beautyBreakdownsValues=t,exports.fullFilters=o,exports.getFiltersTypesJSON=n,exports.initialFilters=l,exports.seasonalStylesValues=a,exports.sustainableFocusValues=r,exports.trendyThemesValues=s;
@@ -0,0 +1,3 @@
1
+ import { GetDefaultImagesFrontmatter } from 'src/common/types';
2
+ export declare const getDefaultImagesFrontmatter: GetDefaultImagesFrontmatter;
3
+ export declare const prohibitedWordsInAltTitle: RegExp;
@@ -0,0 +1 @@
1
+ "use strict";const e=(e,n)=>{const t=n(e),i=undefined,a=undefined,l=undefined,o=undefined;return[{alt:`${e} Introduction`,filename:`${t}-introduction.png`,title:`${e} Introduction`},{alt:`Magnificent ${e}`,filename:`Magnificent-${t}.png`,title:`Magnificent ${e}`},{alt:`Notable ${e}`,filename:`${t}-notable.png`,title:`Notable ${e}`},{alt:`${e} Summary`,filename:`${t}-summary.png`,title:`${e} Summary`}]},n=/\b(?:hands|men|women|human|people|chief|family|mixing|serving|tasting|rolling)\b/i;exports.getDefaultImagesFrontmatter=e,exports.prohibitedWordsInAltTitle=n;
@@ -0,0 +1,15 @@
1
+ export * from './data';
2
+ export * from './filters';
3
+ export * from './helpers';
4
+ export * from './prompts/images';
5
+ export * from './seo';
6
+ import './styles/colors.css';
7
+ import './styles/fonts.css';
8
+ import './styles/global.css';
9
+ import './styles/sizing.css';
10
+ import './styles/vars.css';
11
+ import './styles/theme.css';
12
+ import * as gpt35Articles from './prompts/gpt35turbo/articles';
13
+ import * as gpt4oMiniArticles from './prompts/gpt4oMini/articles';
14
+ export { gpt35Articles, gpt4oMiniArticles };
15
+ export * from './prompts/data';
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./data.js"),t=require("./filters.js"),s=require("./helpers.js"),r=require("./prompts/images.js"),a=require("./seo.js"),o=require("./prompts/gpt35turbo/articles.js"),p=require("./prompts/gpt4oMini/articles.js"),i=require("./prompts/data.js");exports.DEFAULT_DESCRIPTION_EMOJIS=e.DEFAULT_DESCRIPTION_EMOJIS,exports.authors=e.authors,exports.authorsNames=e.authorsNames,exports.categories=e.categories,exports.dataStructure=e.dataStructure,exports.devBucketName=e.devBucketName,exports.prodBucketName=e.prodBucketName,exports.startDate=e.startDate,exports.subcategories=e.subcategories,exports.subsubcategories=e.subsubcategories,Object.defineProperty(exports,"FiltersNames",{enumerable:!0,get:function(){return t.FiltersNames}}),exports.ageAestheticsValues=t.ageAestheticsValues,exports.beautyBreakdownsValues=t.beautyBreakdownsValues,exports.fullFilters=t.fullFilters,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.initialFilters=t.initialFilters,exports.seasonalStylesValues=t.seasonalStylesValues,exports.sustainableFocusValues=t.sustainableFocusValues,exports.trendyThemesValues=t.trendyThemesValues,exports.getDefaultImagesFrontmatter=s.getDefaultImagesFrontmatter,exports.prohibitedWordsInAltTitle=s.prohibitedWordsInAltTitle,exports.getOpenAiBasedImagePrompt=r.getOpenAiBasedImagePrompt,exports.getOpenAiBasedImagePromptDalle2=r.getOpenAiBasedImagePromptDalle2,exports.getStableDiffusionImagePrompt=r.getStableDiffusionImagePrompt,exports.AUTHORS_INFO=a.AUTHORS_INFO,exports.AUTHORS_META=a.AUTHORS_META,exports.PAGES_SEO=a.PAGES_SEO,Object.defineProperty(exports,"PageNames",{enumerable:!0,get:function(){return a.PageNames}}),exports.gpt35Articles=o,exports.gpt4oMiniArticles=p,exports.END_STEP=i.END_STEP,exports.FILTERS_INFO=i.FILTERS_INFO,exports.IMAGES_PROHIBITED_WORDS=i.IMAGES_PROHIBITED_WORDS,exports.START_STEP=i.START_STEP,exports.TARGET_AUDIENCE=i.TARGET_AUDIENCE,exports.ZERO_SECTION=i.ZERO_SECTION,exports.portalInfo=i.portalInfo;
@@ -0,0 +1,7 @@
1
+ export declare const portalInfo = "The article is written for the web portal.I will give you important information regarding the web portal:\n - Brief description: RadianceEnsemble is a captivating infotainment portal dedicated to women's fashion and beauty, offering a blend of style inspiration and practical tips for modern women.\n - Detailed description: RadianceEnsemble serves as a comprehensive resource for women eager to explore the latest trends in fashion and beauty. The portal features a wide array of informative articles that cover various topics such as seasonal fashion trends, skincare routines, makeup tutorials, and sustainable fashion practices. By providing in-depth analysis, expert advice, and creative style guides, RadianceEnsemble aims to empower women to express their unique style and enhance their beauty with confidence. The portal's engaging content is designed to resonate with both fashion enthusiasts and those seeking everyday beauty solutions, making it a go-to destination for anyone interested in elevating their style game.\n - Target audience: The target audience for RadianceEnsemble comprises women of diverse ages, typically ranging from young adults to middle-aged individuals who are passionate about fashion and beauty. This audience includes trendsetters, style-conscious consumers, and those looking to refine their personal aesthetic or seek practical beauty tips. Additionally, the portal appeals to women who advocate for sustainable fashion choices and are interested in keeping up with evolving beauty standards.\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## Key Trends\n - Overview of Current Fashion Trends\n - Popular Beauty Trends\n\n## Beauty Tips and Tutorials\n - Skincare Routines for Different Skin Types\n - Step-by-Step Makeup Tutorials\n\n## Sustainable Practices\n - Understanding Sustainable Fashion\n - Tips for Sustainable Beauty\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 - Key Trends, 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 = "women 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: RadianceEnsemble is a captivating infotainment portal dedicated to women's fashion and beauty, offering a blend of style inspiration and practical tips for modern women.\n - Detailed description: RadianceEnsemble serves as a comprehensive resource for women eager to explore the latest trends in fashion and beauty. The portal features a wide array of informative articles that cover various topics such as seasonal fashion trends, skincare routines, makeup tutorials, and sustainable fashion practices. By providing in-depth analysis, expert advice, and creative style guides, RadianceEnsemble aims to empower women to express their unique style and enhance their beauty with confidence. The portal's engaging content is designed to resonate with both fashion enthusiasts and those seeking everyday beauty solutions, making it a go-to destination for anyone interested in elevating their style game.\n - Target audience: The target audience for RadianceEnsemble comprises women of diverse ages, typically ranging from young adults to middle-aged individuals who are passionate about fashion and beauty. This audience includes trendsetters, style-conscious consumers, and those looking to refine their personal aesthetic or seek practical beauty tips. Additionally, the portal appeals to women who advocate for sustainable fashion choices and are interested in keeping up with evolving beauty standards.\n\n",n="This is important to include the following headers to the section, ONLY if they are applicable to the title, abstract and description of the article:\n## Key Trends\n - Overview of Current Fashion Trends\n - Popular Beauty Trends\n\n## Beauty Tips and Tutorials\n - Skincare Routines for Different Skin Types\n - Step-by-Step Makeup Tutorials\n\n## Sustainable Practices\n - Understanding Sustainable Fashion\n - Tips for Sustainable Beauty\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 - Key Trends, IF it's applicable to the theme of the article.\n",a="highlighting the key points that will be discussed and the relevance of the topic",i="synthesizing the information presented throughout",s="women of all ages",o="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\n$FILTERNAME: []\nResponse in valid json, adhering strictly to json interface below, include every field present in it, but include values in array only suitable for article, all array values are optional!\n${require("../filters.js").getFiltersTypesJSON()}`;exports.END_STEP=i,exports.FILTERS_INFO=r,exports.IMAGES_PROHIBITED_WORDS=o,exports.START_STEP=a,exports.TARGET_AUDIENCE=s,exports.ZERO_SECTION=n,exports.portalInfo=t;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt35turbo/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),p=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),i=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=i,exports.getFiltersPrompt=p,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt4oMini/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),i=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),p=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=p,exports.getFiltersPrompt=i,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,4 @@
1
+ import { GetOpenAiBasedImagePrompt, GetStableDiffusionImagePrompt } from 'src/common/types';
2
+ export declare const getStableDiffusionImagePrompt: GetStableDiffusionImagePrompt;
3
+ export declare const getOpenAiBasedImagePrompt: GetOpenAiBasedImagePrompt;
4
+ export declare const getOpenAiBasedImagePromptDalle2: GetOpenAiBasedImagePrompt;
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../common/prompts/images.js");const a=({title:a,alt:o,articleTitle:t})=>({prompt:`Award-winning hyper-real cinematic photo of a ${a}, ${o}, for an article ${t} from professional fashion and beauty photograph for a glossy fashion and beauty magazine, fashion style photography, glossy beauty magazine, photorealistic, ultra realistic, maximum detail, highly detailed, commercial photography, foreground focus, instagram, 4K, 8K, volumetric light, cinematic, octane render, uplight, no blur, depth of field, dof, film, bokeh, foreground focus, 35mm photograph`,negativePrompt:e.SD_NEGATIVE_PROMPT}),o=({title:e,alt:a,articleTitle:o})=>`I NEED a hyper-real illustration of a ${e} at food style photography, ${a}, for an article ${o} for a glossy recipe magazine, photorealistic, ultra realistic, maximum detail, highly detailed, food style, food style photography, professional food photography, commercial photography, foreground focus, recipes.com, delish.com, epicurious, instagram, 4K, 8K, volumetric light, octane render, uplight, no blur, depth of field, dof, bokeh, foreground focus. Please exclude any: Photocamera, videocamera, Spotlight, soffit, ramp, scanners, strobe, soffit truss, film props, radio, cooking timer, watches, clocks, men, woman, people, hand, nands, leg, legs, font, username, error, words, letters, digits, autograph, trademark, name, easy-negative, cartoon, worst quality, low quality, blind, bad eyes, ugly eyes, dead eyes, greyscale, monochrome, vignette, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, censored, rabs, muscular, rib, blurry, blur, grainy, teeth, low resolution, lowres, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bw, bad photo, bad photography, bad art, morbid, ugly, asymmetrical, mutated malformed, mutilated, poorly lit, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, duplicate, airbrushed,, anime, semi-realistic, cgi, render, 3D, blender, digital art, manga, amateur, 3D, 3D Game, 3D Game Scene, 3D Character, bad hands, , bad body, bad face, bad teeth, bad arms, bad legs, deformities, drawing, deformed iris, deformed pupils, deformed, painting, crayon, sketch, graphite, impressionist, noisy, poorly drawn hands, poorly drawn face, poorly drawn eyes, mutation, bad proportions, cloned face, disfigured, gross proportions, malformed limbs, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck, incoherent from this hyper-real illustration of a ${e}`,t=({title:e})=>`\n\tPhotorealistic highly detailed image of ingredients for ${e}, arranged professionally as if for a food photography shoot. image should showcase maximum detail realism, with a focus on foreground, emulating the style of a high-definition, 8k resolution professional food photograph. lighting should be volumetric and uplit, with a depth of field and bokeh effect, avoiding any blur for clarity. overall aesthetic should be reminiscent of the Kodak Portrait 800 style.\n\tNegative Prompt:\n\teasy-negative, cartoon, worst quality, low quality, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, blurry, blur, grainy, teeth, low resolution, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, airbrushed, anime, semi-realistic, cgi, render, 3D, blender, manga, amateur, 3D, 3D Game, drawing, sketch\n`;exports.getOpenAiBasedImagePrompt=o,exports.getOpenAiBasedImagePromptDalle2=t,exports.getStableDiffusionImagePrompt=a;
@@ -0,0 +1,23 @@
1
+ export interface PageSeoData {
2
+ title: string;
3
+ description: string;
4
+ }
5
+ export declare enum PageNames {
6
+ Authors = "authors",
7
+ Home = "home",
8
+ NotFound = "not-found",
9
+ AboutUs = "about-us",
10
+ PrivacyPolicy = "privacy-policy",
11
+ Terms = "terms",
12
+ Sitemap = "sitemap"
13
+ }
14
+ export type PagesSeo = Record<PageNames, PageSeoData>;
15
+ export interface AuthorInfo {
16
+ name: string;
17
+ description: string;
18
+ meta_title: string;
19
+ meta_description: string;
20
+ }
21
+ export declare const PAGES_SEO: PagesSeo;
22
+ export declare const AUTHORS_INFO: AuthorInfo[];
23
+ export declare const AUTHORS_META: Record<string, PageSeoData>;
@@ -0,0 +1 @@
1
+ "use strict";var e;exports.PageNames=void 0,(e=exports.PageNames||(exports.PageNames={})).Authors="authors",e.Home="home",e.NotFound="not-found",e.AboutUs="about-us",e.PrivacyPolicy="privacy-policy",e.Terms="terms",e.Sitemap="sitemap";const a={[exports.PageNames.Authors]:{title:"Meet Our Fashion & Beauty Gurus | RadianceEnsemble",description:"🌟 Get to know the talented authors behind RadianceEnsemble who bring you the latest in fashion and beauty trends tailored for women! 💄✨"},[exports.PageNames.Home]:{title:"RadianceEnsemble: Your Ultimate Fashion & Beauty Source",description:"Welcome to RadianceEnsemble! 👗✨ Discover the latest trends, tips, and insights in women's fashion and beauty. Elevate your style with us! 🌺"},[exports.PageNames.NotFound]:{title:"Page Not Found | RadianceEnsemble",description:"Oops! 😱 The page you're looking for doesn't exist. Explore our latest articles on fashion and beauty for women! 💖"},[exports.PageNames.AboutUs]:{title:"About RadianceEnsemble | Our Mission & Vision",description:"Learn about RadianceEnsemble! 🌈 Our mission is to empower women through fashion and beauty insights. Join our vibrant community! 💕"},[exports.PageNames.PrivacyPolicy]:{title:"Privacy Policy | RadianceEnsemble",description:"Your privacy matters! 🔒 Read our Privacy Policy at RadianceEnsemble to understand how we protect your personal information. 🛡️"},[exports.PageNames.Terms]:{title:"Terms of Service | RadianceEnsemble",description:"Stay informed! 📜 Read our Terms of Service to understand the rules and agreements for using RadianceEnsemble. 📅"},[exports.PageNames.Sitemap]:{title:"Sitemap | Find Your Way Around RadianceEnsemble",description:"Navigate easily! 🗺️ Explore the complete sitemap of RadianceEnsemble and find your favorite fashion and beauty articles for women. 🌟"}},i=[{name:"Nisha Sharma",description:"Nisha Sharma is a celebrated fashion blogger with over a decade of experience in the fashion industry. A graduate from the National Institute of Fashion Technology, she has worked with various designers and brands globally. Nisha's keen eye for detail and her passion for cultural fashion trends allow her to create unique and inspiring content for women. Her work emphasizes sustainable fashion and the importance of ethical choices in the beauty industry.",meta_title:"Nisha Sharma - Fashion & Beauty Expert at RadianceEnsemble",meta_description:"Explore the world of fashion and beauty with Nisha Sharma, a seasoned fashion blogger and expert with a decade of experience, at RadianceEnsemble. Discover her insights on sustainable and ethical fashion."},{name:"Meera Kapoor",description:"Meera Kapoor, a renowned beauty influencer, has captivated audiences with her extensive knowledge of skincare and makeup. With over seven years in the industry, she specializes in holistic beauty practices and has collaborated with several international cosmetic brands. Meera aims to empower women to embrace their natural beauty while enhancing their personal style through her informative articles.",meta_title:"Meera Kapoor - Holistic Beauty Specialist at RadianceEnsemble",meta_description:"Join Meera Kapoor, a holistic beauty specialist with seven years of experience, at RadianceEnsemble. Dive into her expert articles on skincare, makeup, and enhancing your natural beauty."},{name:"Sita Reddy",description:"Sita Reddy is a fashion and lifestyle journalist with over eight years of experience in the digital space. She's known for her compelling storytelling and ability to connect modern trends with traditional Indian aesthetics. Sita's work focuses on diverse women’s narratives within the fashion world, offering unique perspectives that inspire and engage.",meta_title:"Sita Reddy - Fashion & Lifestyle Journalist at RadianceEnsemble",meta_description:"Discover the vibrant world of fashion with Sita Reddy, a seasoned journalist, at RadianceEnsemble. Her articles connect modern trends with traditional Indian aesthetics, celebrating women’s narratives in style."},{name:"Ananya Bose",description:"Ananya Bose is a distinguished stylist and fashion consultant with over five years of industry experience. Having worked with a diverse clientele, her expertise lies in curating personalized fashion statements and guiding women to express their unique style. Ananya is dedicated to helping women feel confident and empowered through her insightful articles.",meta_title:"Ananya Bose - Stylist & Fashion Consultant at RadianceEnsemble",meta_description:"Unleash your unique style with Ananya Bose, a stylist and fashion consultant with five years of experience, at RadianceEnsemble. Explore her insightful articles for confidence and empowerment in fashion."},{name:"Priya Choudhury",description:"Priya Choudhury is a beauty and wellness writer who emphasizes the synergy between fashion and health. With a background in dermatology and holistic wellness, she brings a scientific approach to beauty. Having published articles in various reputed publications, Priya's informative content guides women towards holistic beauty practices.",meta_title:"Priya Choudhury - Beauty & Wellness Writer at RadianceEnsemble",meta_description:"Explore beauty from a holistic perspective with Priya Choudhury, a beauty and wellness writer at RadianceEnsemble. Discover her articles that blend fashion, health, and holistic practices."},{name:"Sonal Jain",description:"Sonal Jain is a trend forecaster and fashion editor, with an eye on upcoming styles and innovations in women's fashion. With extensive experience in fashion forecasting, she provides insights into the trending styles that will define the seasons to come. Sonal’s contributions to RadianceEnsemble help women stay ahead of the curve in the ever-evolving fashion landscape.",meta_title:"Sonal Jain - Trend Forecaster & Fashion Editor at RadianceEnsemble",meta_description:"Stay ahead with Sonal Jain, a trend forecaster and fashion editor, at RadianceEnsemble. Discover her insights into upcoming styles and innovations in women's fashion."},{name:"Lakshmi Nair",description:"Lakshmi Nair is a celebrated jewelry designer and fashion enthusiast, bringing her unique insights into the world of accessories and their role in fashion. With over six years of experience, she focuses on combining traditional craftsmanship with contemporary designs in her articles, guiding women on how to elevate their outfits with the right accessories.",meta_title:"Lakshmi Nair - Jewelry Designer & Fashion Enthusiast at RadianceEnsemble",meta_description:"Discover the art of accessorizing with Lakshmi Nair, a jewelry designer and fashion enthusiast at RadianceEnsemble. Explore her unique insights on blending traditional and contemporary styles."},{name:"Riya Kapoor",description:"Riya Kapoor is a skilled fashion photographer and observer of street style trends. Through her lens, she captures authentic fashion moments in urban environments, sharing visual stories that resonate with women's experiences. Her articles offer tips on how to capture personal style and the importance of self-expression through fashion.",meta_title:"Riya Kapoor - Fashion Photographer & Style Observer at RadianceEnsemble",meta_description:"Explore fashion through Riya Kapoor’s lens at RadianceEnsemble. A fashion photographer and street style observer, she showcases tips on capturing personal style and self-expression."},{name:"Neelam Iyer",description:"Neelam Iyer is a lifestyle coach and fashion expert known for her transformative approach to personal styling. With ten years of experience, she helps women redefine their wardrobes and adopt styles that resonate with their personalities. Neelam’s insightful articles encourage women to embrace their bodies and express themselves confidently.",meta_title:"Neelam Iyer - Personal Stylist & Lifestyle Coach at RadianceEnsemble",meta_description:"Transform your wardrobe with Neelam Iyer, a personal stylist and lifestyle coach at RadianceEnsemble. Discover her articles on embracing body positivity and confident self-expression through fashion."},{name:"Tara Mehta",description:"Tara Mehta is an accomplished fashion entrepreneur and author with a deep understanding of the fashion business landscape. With over twelve years of experience, she focuses on empowering women through fashion entrepreneurship and offers insights on how women can carve their own paths in the fashion industry.",meta_title:"Tara Mehta - Fashion Entrepreneur & Author at RadianceEnsemble",meta_description:"Empower your fashion journey with Tara Mehta, a fashion entrepreneur and author at RadianceEnsemble. Explore her expert articles on fashion entrepreneurship for women."},{name:"Aditi Sharma",description:"Aditi Sharma is a renowned fashion journalist with over a decade of experience in the industry. She specializes in sustainable fashion and women’s beauty trends in India. Aditi has contributed to several leading publications and has a strong online presence through her blog, which focuses on eco-friendly fashion choices.",meta_title:"Aditi Sharma - Fashion and Beauty Writer at RadianceEnsemble",meta_description:"Discover Aditi Sharma's insights on sustainable fashion and beauty trends at RadianceEnsemble. With over a decade of journalistic experience, she brings a unique perspective to the world of women's fashion."},{name:"Rina Patil",description:"Rina Patil is a celebrated blogger and social media influencer with a passion for fashion and beauty. She has a background in fashion design and has worked with numerous brands to create stunning campaigns that resonate with women. Rina combines her artistic flair with industry knowledge to deliver expert advice.",meta_title:"Rina Patil - Fashion Consultant and Beauty Writer at RadianceEnsemble",meta_description:"Explore Rina Patil's expert fashion and beauty advice at RadianceEnsemble. A former fashion designer and influencer, Rina infuses creativity into her writing while connecting with women everywhere."},{name:"Namita Rao",description:"Namita Rao is a style expert and beauty editor who has spent over 8 years shaping the beauty landscape in India. With a keen eye for detail and trends, she provides practical tips and in-depth reviews on beauty products that cater to a variety of skin types.",meta_title:"Namita Rao - Beauty Editor and Writer at RadianceEnsemble",meta_description:"Immerse yourself in the beauty insights of Namita Rao at RadianceEnsemble. With over 8 years of experience, she offers practical beauty tips and product reviews tailored for every woman."},{name:"Maya Verma",description:"Maya Verma is a trend forecaster and fashion analyst known for her insightful articles on the latest fashion trends. With a background in fashion merchandising, she has worked with some of the top fashion houses in India. Maya’s writings focus on empowering women through fashion.",meta_title:"Maya Verma - Fashion Analyst and Writer at RadianceEnsemble",meta_description:"Stay ahead with Maya Verma's fashion trend forecasts at RadianceEnsemble. A seasoned fashion analyst, she empowers women through stylish insights and industry expertise."},{name:"Priya Gupta",description:"Priya Gupta is an award-winning beauty writer with a focus on wellness and skincare. With over 5 years of experience in the beauty industry, she specializes in product evaluations and holistic beauty approaches tailored to Indian women.",meta_title:"Priya Gupta - Wellness and Beauty Writer at RadianceEnsemble",meta_description:"Join Priya Gupta at RadianceEnsemble as she explores the intersection of skincare and wellness in her beauty articles. Her expertise brings a thoughtful approach to women’s beauty routines."},{name:"Neelam Joshi",description:"Neelam Joshi is a fashion stylist and editor who focuses on modern and traditional Indian attire. With her extensive experience in styling celebrities, Neelam shares her knowledge on combining traditional elegance with contemporary fashion trends.",meta_title:"Neelam Joshi - Fashion Stylist and Editor at RadianceEnsemble",meta_description:"Discover Neelam Joshi's expert styling tips for blending modern and traditional Indian fashion at RadianceEnsemble. Her experience with celebrities gives her insights unmatched in the industry."},{name:"Alisha Mehta",description:"Alisha Mehta is a lifestyle and fashion writer known for her engaging articles on beauty hacks and travel. With experience in editorial management, Alisha thrives on helping women navigate their beauty routines efficiently.",meta_title:"Alisha Mehta - Lifestyle and Fashion Writer at RadianceEnsemble",meta_description:"Follow Alisha Mehta on RadianceEnsemble for engaging beauty hacks and lifestyle tips. As a seasoned writer, she helps women simplify their beauty routines effortlessly."},{name:"Rashi Singh",description:"Rashi Singh is a seasoned beauty enthusiast and digital content creator with a strong focus on ethnic beauty trends. Through her articles, she celebrates diversity in beauty and provides makeup tutorials catering to Indian skin tones.",meta_title:"Rashi Singh - Ethnic Beauty Expert and Writer at RadianceEnsemble",meta_description:"Explore Rashi Singh's celebration of ethnic beauty at RadianceEnsemble, where she shares tutorials and insights tailored for Indian skin tones to empower women everywhere."},{name:"Shweta Nair",description:"Shweta Nair is a cultural trend analyst and fashion writer with expertise in Indian textiles. She has worked extensively in the fashion industry, crafting compelling narratives about the art of Indian wear that resonates with women.",meta_title:"Shweta Nair - Cultural Trend Analyst and Fashion Writer at RadianceEnsemble",meta_description:"Delve into Shweta Nair's exploration of Indian textiles and cultural trends at RadianceEnsemble. Her unique narratives enrich the understanding of Indian fashion for modern women."},{name:"Tanvi Kaur",description:"Tanvi Kaur is a beauty influencer and content marketer with a passion for skincare and makeup. Her extensive knowledge and engaging storytelling make her articles a go-to source for aspiring beauty enthusiasts.",meta_title:"Tanvi Kaur - Beauty Influencer and Writer at RadianceEnsemble",meta_description:"Learn from Tanvi Kaur at RadianceEnsemble, a sought-after beauty influencer who shares her passion for skincare and makeup through engaging and informative articles for aspiring beauty lovers."},{name:"Ananya Sen",description:"Ananya Sen is a beauty writer and makeup artist who channels her passion for cosmetics and skincare into her work. With a background in cosmetic chemistry, she shares expert tips and product reviews that empower women to express their individuality.",meta_title:"Ananya Sen - Beauty Writer at RadianceEnsemble",meta_description:"Dive into the world of beauty with Ananya Sen, a skilled makeup artist and beauty writer, offering tips and product reviews at RadianceEnsemble."},{name:"Radhika Jain",description:"Radhika Jain is a lifestyle blogger and stylist known for her keen fashion sense and innovative styling techniques. With years in the fashion retail sector, she has a talent for curating looks that inspire confidence and elegance in everyday wear.",meta_title:"Radhika Jain - Fashion Stylist at RadianceEnsemble",meta_description:"Explore fashion insights from Radhika Jain, a lifestyle blogger and stylist, dedicated to empowering women through her innovative styling at RadianceEnsemble."},{name:"Priya Desai",description:"Priya Desai is a fashion entrepreneur and influencer with a passion for helping women find their style. Known for her relatable content and engaging social media presence, she combines her business acumen with fashion expertise to inspire others.",meta_title:"Priya Desai - Fashion Influencer at RadianceEnsemble",meta_description:"Follow Priya Desai, a fashion entrepreneur and influencer, as she shares her journey and style tips for women at RadianceEnsemble."},{name:"Pooja Verma",description:"Pooja Verma is a seasoned beauty editor with extensive knowledge in skincare and wellness. She has spent over 8 years working with reputable beauty brands and has a knack for demystifying beauty routines for every woman.",meta_title:"Pooja Verma - Beauty Editor at RadianceEnsemble",meta_description:"Join Pooja Verma, a beauty editor with over 8 years of experience, as she shares skincare and beauty wisdom tailored for every woman at RadianceEnsemble."},{name:"Nisha Reddy",description:"Nisha Reddy is a trend analyst and style coach dedicated to helping women discover their unique fashion voice. With a background in fashion marketing, she curates trends that reflect individuality and body positivity.",meta_title:"Nisha Reddy - Trend Analyst at RadianceEnsemble",meta_description:"Discover style insights from Nisha Reddy, a trend analyst and coach focused on empowering women's fashion choices at RadianceEnsemble."},{name:"Sneha Pillai",description:"Sneha Pillai is a lifestyle and beauty expert who has been creating engaging content for various platforms. With a passion for makeup and wellness, she offers practical advice and product recommendations that cater to modern women's busy lives.",meta_title:"Sneha Pillai - Lifestyle & Beauty Expert at RadianceEnsemble",meta_description:"Join Sneha Pillai, a lifestyle and beauty expert, as she shares practical tips and product recommendations for modern women at RadianceEnsemble."},{name:"Isha Bansal",description:"Isha Bansal is an innovative fashion photographer and writer who combines her artistic vision with a passion for women-centric narratives in fashion. Her work aims to empower women through creativity and visual storytelling.",meta_title:"Isha Bansal - Fashion Photographer & Writer at RadianceEnsemble",meta_description:"Explore the artistic world of fashion with Isha Bansal, a photographer and writer who inspires women's empowerment through creative storytelling at RadianceEnsemble."},{name:"Kavya Sharma",description:"Kavya Sharma is a fashion historian and writer with a deep understanding of cultural influences on fashion. Her articles draw connections between history and modern trends, showcasing the evolution of women's fashion in India.",meta_title:"Kavya Sharma - Fashion Historian at RadianceEnsemble",meta_description:"Delve into fashion history with Kavya Sharma, a historian who connects cultural influences with modern trends at RadianceEnsemble."},{name:"Radhika Mehta",description:"Radhika Mehta is a seasoned fashion journalist with over a decade of experience in the industry. She specializes in sustainable fashion and women’s wear trends, contributing her insights to several leading fashion publications. Her unique perspective combines elegant style with practical advice for the modern woman.",meta_title:"Radhika Mehta - Fashion Journalist at RadianceEnsemble",meta_description:"Explore articles by Radhika Mehta, a fashion journalist with over 10 years of experience in sustainable fashion and women's wear trends on RadianceEnsemble."},{name:"Ananya Singh",description:"Ananya Singh is a beauty expert and makeup artist with a passion for helping women enhance their natural beauty. With a background in cosmetics and over 8 years of professional experience, Ananya shares beauty tips, makeup tutorials, and product reviews tailored for Indian women.",meta_title:"Ananya Singh - Beauty Expert and Makeup Artist at RadianceEnsemble",meta_description:"Discover beauty articles and tips by Ananya Singh, a talented makeup artist and beauty expert, on RadianceEnsemble."},{name:"Neha Kapoor",description:"Neha Kapoor is a fashion blogger and social media influencer known for her vibrant style and creative outfits. With a background in fashion design, she offers styling advice, outfit inspiration, and personal anecdotes, making her a relatable voice for women everywhere.",meta_title:"Neha Kapoor - Fashion Blogger and Influencer at RadianceEnsemble",meta_description:"Follow Neha Kapoor's fashion insights and outfit inspirations at RadianceEnsemble, where style meets creativity."},{name:"Priya Choudhary",description:"Priya Choudhary is a lifestyle and beauty editor with over 6 years of experience in the digital landscape. She has a knack for researching and curating beauty trends, focusing on skincare and wellness, empowering women to embrace their individuality through beauty.",meta_title:"Priya Choudhary - Lifestyle and Beauty Editor at RadianceEnsemble",meta_description:"Explore lifestyle and beauty articles by Priya Choudhary, a dedicated editor passionate about skincare and female empowerment, at RadianceEnsemble."},{name:"Simran Verma",description:"Simran Verma is an established fashion editor and stylist with a keen eye for trends. With over 7 years in the fashion industry, she provides valuable insights into seasonal styles and runway looks, ensuring that women stay ahead in the fashion game.",meta_title:"Simran Verma - Fashion Editor and Stylist at RadianceEnsemble",meta_description:"Stay updated with the latest fashion trends from Simran Verma, a fashion editor and stylist at RadianceEnsemble."},{name:"Riya Sethi",description:"Riya Sethi is a certified nutritionist turned wellness and beauty writer. With a focus on the connection between diet and beauty, Riya shares expert advice on skin-friendly foods and holistic beauty practices that resonate with women looking for a natural glow.",meta_title:"Riya Sethi - Wellness and Beauty Writer at RadianceEnsemble",meta_description:"Transform your beauty routine with health tips from Riya Sethi, a wellness writer dedicated to natural beauty at RadianceEnsemble."},{name:"Kavita Rao",description:"Kavita Rao is a lifestyle journalist and beauty aficionado who loves to explore cultural fashion references. With extensive travel experience and a diverse portfolio, Kavita writes engaging articles that connect global trends with Indian aesthetics, inspiring women through fashion.",meta_title:"Kavita Rao - Lifestyle Journalist at RadianceEnsemble",meta_description:"Join Kavita Rao on a journey through cultural fashion and beauty insights, combining global trends with Indian aesthetics at RadianceEnsemble."},{name:"Sneha Joshi",description:"Sneha Joshi is a budding fashion designer and columnist. With fresh perspectives and innovative ideas, she writes about emerging trends, fashion innovation, and the intersection of art and personal style, appealing to the fashion-forward woman.",meta_title:"Sneha Joshi - Fashion Designer and Columnist at RadianceEnsemble",meta_description:"Read Sneha Joshi's innovative fashion columns exploring trends and personal style at RadianceEnsemble."},{name:"Lina Patel",description:"Lina Patel is an experienced fashion researcher and trend analyst. With a background in business management and fashion studies, she dives deep into market analysis, providing readers with data-driven fashion insights and analytics for empowerment.",meta_title:"Lina Patel - Fashion Researcher and Analyst at RadianceEnsemble",meta_description:"Delve into data-driven fashion insights with Lina Patel, a dedicated researcher and analyst at RadianceEnsemble."},{name:"Sofia Zhang",description:"Sofia is a fashion journalist with over 8 years of experience in the industry. Based in Shanghai, she specializes in sustainable fashion and has contributed to several international magazines. Her passion for eco-friendly styles drives her to promote brands focused on ethical practices.",meta_title:"Sofia Zhang - Fashion Journalist & Sustainability Advocate",meta_description:"Discover Sofia Zhang’s insights on sustainable fashion trends and eco-friendly beauty tips. A professional journalist with 8 years in the industry, making waves in women's fashion."},{name:"Maria Lopez",description:"Maria is a Los Angeles-based beauty expert with a background in cosmetic chemistry. With over 5 years of experience, she provides in-depth analysis of beauty products and skincare routines while emphasizing inclusivity in beauty standards.",meta_title:"Maria Lopez - Beauty Expert & Inclusivity Advocate",meta_description:"Explore Maria Lopez’s expert advice on skincare and beauty products. A specialist in cosmetic chemistry with over 5 years of experience, promoting inclusive beauty for all women."},{name:"Jasmine Patel",description:"An elevating voice in the fashion industry, Jasmine hails from London with 6 years of experience in lifestyle blogging. She skillfully intertwines fashion, art, and culture in her writing, inspiring women to embrace their unique styles.",meta_title:"Jasmine Patel - Fashion & Lifestyle Blogger",meta_description:"Join Jasmine Patel on a journey through fashion, art, and culture. A lifestyle blogger with 6 years of experience, inspiring women to express their individuality."},{name:"Elena Rossi",description:"With a strong background in fashion design, Elena has worked with renowned brands in Milan for nearly a decade. She writes about fashion trends, style forecasting, and the artistry behind clothing and accessories.",meta_title:"Elena Rossi - Fashion Designer & Trend Forecaster",meta_description:"Delve into the world of fashion with Elena Rossi, a Milan-based designer with a decade of experience, offering insights into current trends and style predictions for women."},{name:"Aisha Khan",description:"Aisha is a cultural commentator and fashion editor from Dubai, focusing on Middle Eastern fashion trends. With over 7 years of experience, she champions the intersection of tradition and modernity in women's fashion.",meta_title:"Aisha Khan - Fashion Editor & Cultural Commentator",meta_description:"Explore the rich tapestry of Middle Eastern fashion with Aisha Khan, a seasoned editor with 7 years of experience, bridging tradition and modernity in women's styles."},{name:"Nina Petrescu",description:"Nina is a beauty influencer and makeup artist from Bucharest with 5 years of hands-on experience. She specializes in makeup tutorials and product reviews, focusing on empowering women to feel confident in their beauty.",meta_title:"Nina Petrescu - Beauty Influencer & Makeup Artist",meta_description:"Uncover beauty secrets with Nina Petrescu, a Bucharest-based makeup artist and influencer, dedicated to empowering women through makeup and skincare expertise."},{name:"Clara Bennett",description:"Clara is a style consultant from New York with a Bachelor’s degree in Fashion Merchandising. She has11 years of experience working with clients to refine their personal style and frequently writes tips on mastering workplace fashion.",meta_title:"Clara Bennett - Style Consultant & Fashion Expert",meta_description:"Step up your fashion game with Clara Bennett, a New York-based style consultant with 11 years of experience, providing tips for impeccable workplace fashion and personal style."},{name:"Tanya Mitrovic",description:"Tanya is a Serbian fashion photographer and creative director with a keen eye for detail. With over 8 years of experience, she captures the essence of fashion and beauty in her work while contributing articles on style and photography.",meta_title:"Tanya Mitrovic - Fashion Photographer & Creative Director",meta_description:"Experience the art of fashion through Tanya Mitrovic, a Serbian photographer with 8 years of industry experience, blending creativity with insights on style and beauty."},{name:"Khadija El Alami",description:"Khadija is a Moroccan textile designer and writer who brings a unique perspective to fashion. With 6 years of industry experience, she explores the significance of textiles in women's fashion and promotes traditional craftsmanship.",meta_title:"Khadija El Alami - Textile Designer & Fashion Writer",meta_description:"Discover the world of textiles with Khadija El Alami, a Moroccan designer and writer with 6 years in the fashion industry, celebrating craftsmanship in women's fashion."},{name:"Nia Kwan",description:"Based in Sydney, Nia is a fashion and beauty blogger with a focus on Australian brands. With 5 years of experience, she curates content centered around body positivity and eco-conscious beauty choices.",meta_title:"Nia Kwan - Fashion & Beauty Blogger",meta_description:"Join Nia Kwan on her journey through Australian fashion and beauty, focusing on body positivity and sustainability as a blogger with 5 years of experience."},{name:"Ava Thompson",description:"Ava Thompson is an international fashion journalist with over ten years of experience covering the latest trends and styles. She has written for renowned publications like Vogue and Harper's Bazaar, offering insights into the evolving landscape of women's fashion and beauty.",meta_title:"Ava Thompson - Fashion Journalist | RadianceEnsemble",meta_description:"Explore the world of women’s fashion with Ava Thompson, an experienced international fashion journalist sharing insights and trends on RadianceEnsemble."},{name:"Clara Chen",description:"Clara Chen is a fashion designer and stylist from Shanghai, China, with a keen eye for aesthetics and detail. With over eight years of experience in the fashion industry, Clara contributes her knowledge of design and trends to empower women across the globe.",meta_title:"Clara Chen - Fashion Designer & Stylist | RadianceEnsemble",meta_description:"Discover fashion tips and design insights from Clara Chen, an experienced fashion designer and stylist contributing to RadianceEnsemble."},{name:"Nia Johnson",description:"Nia Johnson is a beauty enthusiast and lifestyle writer from New York City. With her extensive knowledge of skincare and cosmetics, she aims to inspire women to embrace their unique style while prioritizing self-care.",meta_title:"Nia Johnson - Beauty Enthusiast & Lifestyle Writer | RadianceEnsemble",meta_description:"Explore beauty tips, skincare, and lifestyle inspiration from Nia Johnson, a dedicated writer on RadianceEnsemble focused on empowering women."},{name:"Isabella Rossi",description:"Isabella Rossi is an Italian fashion influencer and cultural commentator with over six years of experience. She uses her platform to discuss fashion diversity and promote ethical fashion brands that empower women.",meta_title:"Isabella Rossi - Fashion Influencer & Cultural Commentator | RadianceEnsemble",meta_description:"Join Isabella Rossi on RadianceEnsemble as she explores fashion diversity, ethical brands, and empowers women through her insights."},{name:"Emily Garcia",description:"Emily Garcia is a Canadian fashion and beauty photographer who captures the essence of femininity in her work. With a background in visual arts, she combines photography with storytelling to inspire women through her articles.",meta_title:"Emily Garcia - Fashion & Beauty Photographer | RadianceEnsemble",meta_description:"Discover the beauty of femininity through the lens of Emily Garcia, a fashion and beauty photographer sharing her vision on RadianceEnsemble."},{name:"Fatima Khan",description:"Fatima Khan is a renowned fashion and beauty consultant from Dubai, UAE. With a diverse portfolio and over seven years in the industry, she specializes in creating bespoke beauty solutions for women of all ages.",meta_title:"Fatima Khan - Fashion & Beauty Consultant | RadianceEnsemble",meta_description:"Explore tailored fashion and beauty solutions with Fatima Khan, an experienced consultant sharing her expertise on RadianceEnsemble."},{name:"Sophia Wang",description:"Sophia Wang is a South Korean beauty expert and YouTuber who shares her knowledge about makeup techniques and skincare routines. Her community of followers appreciates her authenticity and creativity in all things beauty.",meta_title:"Sophia Wang - Beauty Expert & YouTuber | RadianceEnsemble",meta_description:"Join Sophia Wang on RadianceEnsemble as she shares authentic beauty tips and creative makeup techniques with her followers."},{name:"Emma O’Reilly",description:"Emma O’Reilly is a fashion editor based in London, UK, with over a decade of experience in the fashion sector. She has a deep understanding of the industry and focuses on sustainable fashion articles that empower women's fashion choices.",meta_title:"Emma O’Reilly - Fashion Editor | RadianceEnsemble",meta_description:"Delve into sustainable fashion insights with Emma O'Reilly, an experienced fashion editor providing empowering articles on RadianceEnsemble."},{name:"Zara Iqbal",description:"Zara Iqbal is a Middle Eastern fashion model and lifestyle influencer who inspires women through her unique style and personal stories. With a substantial online presence, she is an advocate for body positivity and self-expression.",meta_title:"Zara Iqbal - Fashion Model & Lifestyle Influencer | RadianceEnsemble",meta_description:"Explore lifestyle and fashion inspiration with Zara Iqbal, a body positivity advocate and influencer featured on RadianceEnsemble."}],n=i.reduce(((e,a)=>Object.assign(Object.assign({},e),{[a.name]:{title:a.meta_title,description:a.meta_description}})),{});exports.AUTHORS_INFO=i,exports.AUTHORS_META=n,exports.PAGES_SEO=a;
@@ -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:#5b2e91;--theme-color-8:#8839c0;--theme-color-7:#a150d6;--theme-color-6:#c78be3;--theme-color-5:#edd2f1;--theme-color-3:#f2b2d8;--theme-color-2:#fee4f5;--color-bg-layout:#f9f4ff;--color-bg-hover:#e6d3e7;--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";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tedo-publisher",
3
- "version": "1.3.244",
3
+ "version": "1.3.246",
4
4
  "description": "Package for config files and reusable code/components between projects",
5
5
  "main": "dist/index.js",
6
6
  "files": [