tedo-publisher 1.3.248 → 1.3.250

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/mangami/data.d.ts +236 -0
  2. package/dist/mangami/data.js +1 -0
  3. package/dist/mangami/filters.d.ts +24 -0
  4. package/dist/mangami/filters.js +1 -0
  5. package/dist/mangami/helpers.d.ts +3 -0
  6. package/dist/mangami/helpers.js +1 -0
  7. package/dist/mangami/index.d.ts +15 -0
  8. package/dist/mangami/index.js +1 -0
  9. package/dist/mangami/prompts/data.d.ts +7 -0
  10. package/dist/mangami/prompts/data.js +1 -0
  11. package/dist/mangami/prompts/gpt35turbo/articles.d.ts +6 -0
  12. package/dist/mangami/prompts/gpt35turbo/articles.js +1 -0
  13. package/dist/mangami/prompts/gpt4oMini/articles.d.ts +6 -0
  14. package/dist/mangami/prompts/gpt4oMini/articles.js +1 -0
  15. package/dist/mangami/prompts/images.d.ts +4 -0
  16. package/dist/mangami/prompts/images.js +1 -0
  17. package/dist/mangami/seo.d.ts +23 -0
  18. package/dist/mangami/seo.js +1 -0
  19. package/dist/mangami/styles/colors.css +1 -0
  20. package/dist/mangami/styles/fonts.css +1 -0
  21. package/dist/mangami/styles/global.css +1 -0
  22. package/dist/mangami/styles/sizing.css +1 -0
  23. package/dist/mangami/styles/theme.css +1 -0
  24. package/dist/mangami/styles/vars.css +1 -0
  25. package/dist/otaxel/data.d.ts +231 -0
  26. package/dist/otaxel/data.js +1 -0
  27. package/dist/otaxel/filters.d.ts +24 -0
  28. package/dist/otaxel/filters.js +1 -0
  29. package/dist/otaxel/helpers.d.ts +3 -0
  30. package/dist/otaxel/helpers.js +1 -0
  31. package/dist/otaxel/index.d.ts +15 -0
  32. package/dist/otaxel/index.js +1 -0
  33. package/dist/otaxel/prompts/data.d.ts +7 -0
  34. package/dist/otaxel/prompts/data.js +1 -0
  35. package/dist/otaxel/prompts/gpt35turbo/articles.d.ts +6 -0
  36. package/dist/otaxel/prompts/gpt35turbo/articles.js +1 -0
  37. package/dist/otaxel/prompts/gpt4oMini/articles.d.ts +6 -0
  38. package/dist/otaxel/prompts/gpt4oMini/articles.js +1 -0
  39. package/dist/otaxel/prompts/images.d.ts +4 -0
  40. package/dist/otaxel/prompts/images.js +1 -0
  41. package/dist/otaxel/seo.d.ts +23 -0
  42. package/dist/otaxel/seo.js +1 -0
  43. package/dist/otaxel/styles/colors.css +1 -0
  44. package/dist/otaxel/styles/fonts.css +1 -0
  45. package/dist/otaxel/styles/global.css +1 -0
  46. package/dist/otaxel/styles/sizing.css +1 -0
  47. package/dist/otaxel/styles/theme.css +1 -0
  48. package/dist/otaxel/styles/vars.css +1 -0
  49. package/package.json +1 -1
@@ -0,0 +1,236 @@
1
+ export declare const dataStructure: {
2
+ animeGenres: {
3
+ title: string;
4
+ description: string;
5
+ slug: string;
6
+ children: {
7
+ shonen: {
8
+ title: string;
9
+ description: string;
10
+ slug: string;
11
+ children: null;
12
+ };
13
+ shojo: {
14
+ title: string;
15
+ description: string;
16
+ slug: string;
17
+ children: null;
18
+ };
19
+ seinen: {
20
+ title: string;
21
+ description: string;
22
+ slug: string;
23
+ children: null;
24
+ };
25
+ josei: {
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
+ characterAnalyses: {
40
+ title: string;
41
+ description: string;
42
+ slug: string;
43
+ children: {
44
+ mainProtagonists: {
45
+ title: string;
46
+ description: string;
47
+ slug: string;
48
+ children: null;
49
+ };
50
+ antagonists: {
51
+ title: string;
52
+ description: string;
53
+ slug: string;
54
+ children: null;
55
+ };
56
+ supportingCharacters: {
57
+ title: string;
58
+ description: string;
59
+ slug: string;
60
+ children: null;
61
+ };
62
+ characterArcs: {
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
+ thematicExplorations: {
77
+ title: string;
78
+ description: string;
79
+ slug: string;
80
+ children: {
81
+ loveAndFriendship: {
82
+ title: string;
83
+ description: string;
84
+ slug: string;
85
+ children: null;
86
+ };
87
+ identityAndGrowth: {
88
+ title: string;
89
+ description: string;
90
+ slug: string;
91
+ children: null;
92
+ };
93
+ societyAndCulture: {
94
+ title: string;
95
+ description: string;
96
+ slug: string;
97
+ children: null;
98
+ };
99
+ philosophicalThemes: {
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
+ artisticStyles: {
114
+ title: string;
115
+ description: string;
116
+ slug: string;
117
+ children: {
118
+ visualAesthetics: {
119
+ title: string;
120
+ description: string;
121
+ slug: string;
122
+ children: null;
123
+ };
124
+ animationTechniques: {
125
+ title: string;
126
+ description: string;
127
+ slug: string;
128
+ children: null;
129
+ };
130
+ graphicNovelArt: {
131
+ title: string;
132
+ description: string;
133
+ slug: string;
134
+ children: null;
135
+ };
136
+ designElements: {
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
+ fandomCommunities: {
151
+ title: string;
152
+ description: string;
153
+ slug: string;
154
+ children: {
155
+ fanArtAndFanFiction: {
156
+ title: string;
157
+ description: string;
158
+ slug: string;
159
+ children: null;
160
+ };
161
+ conventionsAndEvents: {
162
+ title: string;
163
+ description: string;
164
+ slug: string;
165
+ children: null;
166
+ };
167
+ onlineCommunities: {
168
+ title: string;
169
+ description: string;
170
+ slug: string;
171
+ children: null;
172
+ };
173
+ cosplayCulture: {
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
+ storyBreakdowns: {
188
+ title: string;
189
+ description: string;
190
+ slug: string;
191
+ children: {
192
+ plotSummaries: {
193
+ title: string;
194
+ description: string;
195
+ slug: string;
196
+ children: null;
197
+ };
198
+ episodeReviews: {
199
+ title: string;
200
+ description: string;
201
+ slug: string;
202
+ children: null;
203
+ };
204
+ seasonAnalysis: {
205
+ title: string;
206
+ description: string;
207
+ slug: string;
208
+ children: null;
209
+ };
210
+ mangaAdaptations: {
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
+ };
225
+ export declare const authors: Record<string, string>;
226
+ export declare const authorsNames: string[];
227
+ export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83D\uDCD6\uD83C\uDFA8\uD83D\uDC7E\uD83C\uDF38";
228
+ export declare const categories: ("characterAnalyses" | "animeGenres" | "thematicExplorations" | "artisticStyles" | "fandomCommunities" | "storyBreakdowns")[];
229
+ export declare const subcategories: string[];
230
+ export declare const subsubcategories: string[];
231
+ export type Category = keyof typeof dataStructure;
232
+ export type CategoryNode = (typeof dataStructure)[Category];
233
+ export type SubcategoryKeyByCategory<T extends Category> = (typeof dataStructure)[T]['children'];
234
+ export declare const startDate = "2024-09-10T00:00:00Z";
235
+ export declare const devBucketName = "idn-mangami-dev";
236
+ export declare const prodBucketName = "idn-mangami";
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./seo.js");const n={animeGenres:{title:"Explore the Diverse Genres of Anime and Manga 📚✨",description:"Dive into the captivating worlds of shonen, shojo, seinen, josei, and other anime genres. Discover thematic insights and character explorations on Mangami.",slug:"anime-genres",children:{shonen:{title:"Exciting Shonen Anime and Manga: Action and Adventure Awaits! ⚔️🔥",description:"Uncover thrilling shonen stories filled with action, friendship, and growth. Explore character arcs and popular titles that define the genre!",slug:"shonen",children:null},shojo:{title:"Enchanting Shojo Anime and Manga: Love and Dreams 🌸💖",description:"Delve into the delightful world of shojo where romance and coming-of-age stories flourish. Experience heartfelt narratives that resonate!",slug:"shojo",children:null},seinen:{title:"Complex Seinen Anime and Manga: Depth and Dark Themes 🌌🖤",description:"Explore the intricate narratives of seinen that dive into mature themes and character complexities. Perfect for the discerning reader!",slug:"seinen",children:null},josei:{title:"Captivating Josei Anime and Manga: Real Life and Emotion 🎨❤️",description:"Discover the rich emotional landscapes of josei. These stories offer witty, realistic portrayals of women's lives and relationships.",slug:"josei",children:null},other:{title:"Other Unique Anime and Manga Genres: Expand Your Horizons 🌈📖",description:"Broaden your perspective with various other genres in anime and manga. Unearth hidden gems and diverse styles that inspire creativity!",slug:"other",children:null}}},characterAnalyses:{title:"In-Depth Character Analyses of Anime & Manga 🌟",description:"Explore the multifaceted characters in anime and manga with our expert analyses. Dive deep into their tales and motivations! 📖✨",slug:"character-analyses",children:{mainProtagonists:{title:"Exploring Main Protagonists in Anime & Manga 🦸‍♂️",description:"Delve into the lives and challenges of main protagonists in anime and manga. What drives them and shapes their journeys? 🚀🌈",slug:"main-protagonists",children:null},antagonists:{title:"Unveiling Antagonists in Anime & Manga ⚔️",description:"Discover the complexities of antagonists in anime and manga. What makes them memorable and impactful in their narratives? 🎭🔍",slug:"antagonists",children:null},supportingCharacters:{title:"Understanding Supporting Characters in Anime & Manga 🤝",description:"Examine the vital roles of supporting characters who enhance the main storyline in anime and manga. Their influence is profound! 🌟📖",slug:"supporting-characters",children:null},characterArcs:{title:"Character Arcs: Growth & Transformation in Anime & Manga 🚀",description:"Analyze character arcs in anime and manga that showcase growth, challenges, and transformations over time. A deep dive awaits! 🌈📜",slug:"character-arcs",children:null},other:{title:"Miscellaneous Character Analyses in Anime & Manga 🔍",description:"Explore assorted character analyses that don't fit traditional categories in anime and manga. Unique insights into captivating features! 🎨✨",slug:"other-character-analyses",children:null}}},thematicExplorations:{title:"Thematic Explorations in Anime and Manga 🎨",description:"Explore the diverse themes of anime and manga on Mangami, from love to philosophy, and unravel the captivating stories behind your favorite characters! 🌟",slug:"thematic-explorations",children:{loveAndFriendship:{title:"Exploring Love and Friendship in Anime and Manga ❤️",description:"Dive into the heartwarming and complex themes of love and friendship in anime and manga. Discover character dynamics that warm your soul! 💖",slug:"love-and-friendship",children:null},identityAndGrowth:{title:"Identity and Growth Themes in Anime and Manga 🌱",description:"Discover the profound themes of identity and personal growth in anime and manga. Explore how characters evolve and face their challenges! 💪",slug:"identity-and-growth",children:null},societyAndCulture:{title:"Society and Culture Reflections in Anime and Manga 🌍",description:"Uncover the societal and cultural reflections shown in anime and manga. Delve into how these narratives shape and reflect our world! 🏛️",slug:"society-and-culture",children:null},philosophicalThemes:{title:"Philosophical Themes in Anime and Manga 🧠",description:"Engage with the deep philosophical themes found in anime and manga. Question life, existence, and morality in these thought-provoking stories! 🤔",slug:"philosophical-themes",children:null},other:{title:"Diverse Themes in Anime and Manga 🎭",description:"Explore miscellaneous themes within the realms of anime and manga. Discover unique insights that don't fit traditional categories! 🌈",slug:"other-themes",children:null}}},artisticStyles:{title:"Exploring Artistic Styles in Anime and Manga 🎨",description:"Dive into the diverse artistic styles of anime and manga. Explore visual aesthetics, animation techniques, graphic novel art, and design elements. 🌟",slug:"artistic-styles",children:{visualAesthetics:{title:"Understanding Visual Aesthetics in Anime and Manga 🌈",description:"Delve into the visual aesthetics that define anime and manga. Discover how art shapes storytelling and character portrayal. 🖌️",slug:"visual-aesthetics",children:null},animationTechniques:{title:"Innovative Animation Techniques in Modern Anime ✨",description:"Explore the cutting-edge animation techniques used in contemporary anime. Learn how they enhance storytelling and visual appeal. 🎞️",slug:"animation-techniques",children:null},graphicNovelArt:{title:"The Art of Graphic Novels in Anime and Manga 📚",description:"Examine the unique art styles in graphic novels that influence anime and manga. Discover how illustrations bring narratives to life. 🎨",slug:"graphic-novel-art",children:null},designElements:{title:"Key Design Elements in Anime and Manga Art ✏️",description:"Analyze essential design elements that contribute to the visual storytelling in anime and manga. Understand the role of color, form, and layout. 🎉",slug:"design-elements",children:null},other:{title:"Other Artistic Styles in Anime and Manga 🌀",description:"Explore various lesser-known artistic styles in the anime and manga industry. Discover the creative diversity that fuels this fascinating medium. 🌌",slug:"other-artistic-styles",children:null}}},fandomCommunities:{title:"Explore Fandom Communities in Anime and Manga 🌟",description:"Discover the diverse fandom communities surrounding anime and manga. Dive into fan art, events, cosplay, and more for ultimate engagement! 🎭",slug:"fandom-communities",children:{fanArtAndFanFiction:{title:"Fan Art and Fan Fiction: The Creative Spirit 🎨",description:"Delve into the vibrant world of fan art and fan fiction that celebrates beloved anime and manga characters. Create and share your passion! ✍️",slug:"fan-art-and-fan-fiction",children:null},conventionsAndEvents:{title:"Anime Conventions and Events: Join the Fun 🎉",description:"Stay updated on upcoming anime conventions and events. Celebrate your fandom with fellow enthusiasts and immerse yourself in exciting experiences! 🎊",slug:"conventions-and-events",children:null},onlineCommunities:{title:"Online Communities: Connect with Fellow Fans 🌐",description:"Explore vibrant online communities dedicated to anime and manga. Discuss theories, share fan works, and make lifelong connections! 🤝",slug:"online-communities",children:null},cosplayCulture:{title:"Cosplay Culture: Transforming Into Your Heroes 🦸‍♂️",description:"Uncover the artistry of cosplay in anime and manga. Get inspired by amazing costumes and learn tips to create your own! 👗✨",slug:"cosplay-culture",children:null},other:{title:"Other Fandom Aspects: Beyond the Norm 🌌",description:"Discover various elements of anime and manga fandom that don't fit into traditional categories. Embrace the unexpected and explore more! 🔍",slug:"other",children:null}}},storyBreakdowns:{title:"Deepen Your Understanding of Anime and Manga 📖",description:"Explore insightful articles covering plot summaries, episode reviews, and more, designed for every anime and manga enthusiast. 🌟",slug:"anime-and-manga-story-breakdowns",children:{plotSummaries:{title:"Comprehensive Plot Summaries of Your Favorite Anime and Manga 📚",description:"Dive into detailed plot summaries that reveal the captivating stories behind your favorite anime and manga series! 🏆",slug:"plot-summaries",children:null},episodeReviews:{title:"In-Depth Episode Reviews for Anime Fans 🎬",description:"Stay updated with our engaging episode reviews that analyze key moments, character arcs, and plot twists in popular anime series! 🔍",slug:"episode-reviews",children:null},seasonAnalysis:{title:"Season Analysis of Trending Anime Series 📺",description:"Explore thorough season analyses that dissect themes, character development, and artistic styles, enhancing your viewing experience! 🌈",slug:"season-analysis",children:null},mangaAdaptations:{title:"Understanding Manga Adaptations to Anime 📖➡️📺",description:"Learn how beloved manga are adapted into anime series with our articles analyzing changes and the impact on storytelling! 📊",slug:"manga-adaptations",children:null},other:{title:"Explore Unique Aspects of Anime and Manga 🌀",description:"Discover lesser-known facets of anime and manga culture through diverse articles addressing niche topics, characters, and themes! 🌌",slug:"other-aspects",children:null}}}},i=e.AUTHORS_INFO.reduce(((e,n)=>Object.assign(Object.assign({},e),{[n.name]:[n.description]})),{}),t=e.AUTHORS_INFO.map((e=>e.name)),a="📖🎨👾🌸",s=Object.keys(n),r=[],o=[];for(const e of s){const i=n[e];if(null==i?void 0:i.children){r.push(...Object.keys(i.children));for(const e of r){const n=i.children[e];(null==n?void 0:n.children)&&o.push(...Object.keys(n.children))}}}const l="2024-09-10T00:00:00Z",d="mangami",c=`idn-${d}-dev`,h=`idn-${d}`;exports.DEFAULT_DESCRIPTION_EMOJIS=a,exports.authors=i,exports.authorsNames=t,exports.categories=s,exports.dataStructure=n,exports.devBucketName=c,exports.prodBucketName=h,exports.startDate=l,exports.subcategories=r,exports.subsubcategories=o;
@@ -0,0 +1,24 @@
1
+ export declare enum FiltersNames {
2
+ StoryDepth = "Story Depth",
3
+ GenreFocus = "Genre Focus",
4
+ CulturalImpact = "Cultural Impact",
5
+ ArtisticStyles = "Artistic Styles"
6
+ }
7
+ type StoryDepthValues = 'Character Analysis' | 'Plot Breakdown' | 'Thematic Exploration' | 'Narrative Techniques';
8
+ type GenreFocusValues = 'Shonen' | 'Shojo' | 'Seinen' | 'Isekai' | 'Slice of Life';
9
+ type CulturalImpactValues = 'Historical Context' | 'Global Influence' | 'Fandom Trends' | 'Merchandising Phenomena';
10
+ type ArtisticStylesValues = 'Traditional Animation' | 'Digital Art' | 'Manga Illustrations' | 'Character Design';
11
+ export type ArticleFilters = {
12
+ [FiltersNames.StoryDepth]: StoryDepthValues[];
13
+ [FiltersNames.GenreFocus]: GenreFocusValues[];
14
+ [FiltersNames.CulturalImpact]: CulturalImpactValues[];
15
+ [FiltersNames.ArtisticStyles]: ArtisticStylesValues[];
16
+ };
17
+ export declare const storyDepthValues: StoryDepthValues[];
18
+ export declare const genreFocusValues: GenreFocusValues[];
19
+ export declare const culturalImpactValues: CulturalImpactValues[];
20
+ export declare const artisticStylesValues: ArtisticStylesValues[];
21
+ export declare const initialFilters: ArticleFilters;
22
+ export declare const fullFilters: ArticleFilters;
23
+ export declare const getFiltersTypesJSON: () => string;
24
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e;exports.FiltersNames=void 0,(e=exports.FiltersNames||(exports.FiltersNames={})).StoryDepth="Story Depth",e.GenreFocus="Genre Focus",e.CulturalImpact="Cultural Impact",e.ArtisticStyles="Artistic Styles";const t=["Character Analysis","Plot Breakdown","Thematic Exploration","Narrative Techniques"],s=["Shonen","Shojo","Seinen","Isekai","Slice of Life"],r=["Historical Context","Global Influence","Fandom Trends","Merchandising Phenomena"],i=["Traditional Animation","Digital Art","Manga Illustrations","Character Design"],a={[exports.FiltersNames.StoryDepth]:[],[exports.FiltersNames.GenreFocus]:[],[exports.FiltersNames.CulturalImpact]:[],[exports.FiltersNames.ArtisticStyles]:[]},l={[exports.FiltersNames.StoryDepth]:t,[exports.FiltersNames.GenreFocus]:s,[exports.FiltersNames.CulturalImpact]:r,[exports.FiltersNames.ArtisticStyles]:i},o=()=>JSON.stringify(l,null,2);exports.artisticStylesValues=i,exports.culturalImpactValues=r,exports.fullFilters=l,exports.genreFocusValues=s,exports.getFiltersTypesJSON=o,exports.initialFilters=a,exports.storyDepthValues=t;
@@ -0,0 +1,3 @@
1
+ import { GetDefaultImagesFrontmatter } from 'src/common/types';
2
+ export declare const getDefaultImagesFrontmatter: GetDefaultImagesFrontmatter;
3
+ export declare const prohibitedWordsInAltTitle: RegExp;
@@ -0,0 +1 @@
1
+ "use strict";const e=(e,n)=>{const t=n(e),i=undefined,a=undefined,l=undefined,o=undefined;return[{alt:`${e} Introduction`,filename:`${t}-introduction.png`,title:`${e} Introduction`},{alt:`Magnificent ${e}`,filename:`Magnificent-${t}.png`,title:`Magnificent ${e}`},{alt:`Notable ${e}`,filename:`${t}-notable.png`,title:`Notable ${e}`},{alt:`${e} Summary`,filename:`${t}-summary.png`,title:`${e} Summary`}]},n=/\b(?:hands|men|women|human|people|chief|family|mixing|serving|tasting|rolling)\b/i;exports.getDefaultImagesFrontmatter=e,exports.prohibitedWordsInAltTitle=n;
@@ -0,0 +1,15 @@
1
+ export * from './data';
2
+ export * from './filters';
3
+ export * from './helpers';
4
+ export * from './prompts/images';
5
+ export * from './seo';
6
+ import './styles/colors.css';
7
+ import './styles/fonts.css';
8
+ import './styles/global.css';
9
+ import './styles/sizing.css';
10
+ import './styles/vars.css';
11
+ import './styles/theme.css';
12
+ import * as gpt35Articles from './prompts/gpt35turbo/articles';
13
+ import * as gpt4oMiniArticles from './prompts/gpt4oMini/articles';
14
+ export { gpt35Articles, gpt4oMiniArticles };
15
+ export * from './prompts/data';
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./data.js"),t=require("./filters.js"),r=require("./helpers.js"),s=require("./prompts/images.js"),o=require("./seo.js"),a=require("./prompts/gpt35turbo/articles.js"),p=require("./prompts/gpt4oMini/articles.js"),i=require("./prompts/data.js");exports.DEFAULT_DESCRIPTION_EMOJIS=e.DEFAULT_DESCRIPTION_EMOJIS,exports.authors=e.authors,exports.authorsNames=e.authorsNames,exports.categories=e.categories,exports.dataStructure=e.dataStructure,exports.devBucketName=e.devBucketName,exports.prodBucketName=e.prodBucketName,exports.startDate=e.startDate,exports.subcategories=e.subcategories,exports.subsubcategories=e.subsubcategories,Object.defineProperty(exports,"FiltersNames",{enumerable:!0,get:function(){return t.FiltersNames}}),exports.artisticStylesValues=t.artisticStylesValues,exports.culturalImpactValues=t.culturalImpactValues,exports.fullFilters=t.fullFilters,exports.genreFocusValues=t.genreFocusValues,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.initialFilters=t.initialFilters,exports.storyDepthValues=t.storyDepthValues,exports.getDefaultImagesFrontmatter=r.getDefaultImagesFrontmatter,exports.prohibitedWordsInAltTitle=r.prohibitedWordsInAltTitle,exports.getOpenAiBasedImagePrompt=s.getOpenAiBasedImagePrompt,exports.getOpenAiBasedImagePromptDalle2=s.getOpenAiBasedImagePromptDalle2,exports.getStableDiffusionImagePrompt=s.getStableDiffusionImagePrompt,exports.AUTHORS_INFO=o.AUTHORS_INFO,exports.AUTHORS_META=o.AUTHORS_META,exports.PAGES_SEO=o.PAGES_SEO,Object.defineProperty(exports,"PageNames",{enumerable:!0,get:function(){return o.PageNames}}),exports.gpt35Articles=a,exports.gpt4oMiniArticles=p,exports.END_STEP=i.END_STEP,exports.FILTERS_INFO=i.FILTERS_INFO,exports.IMAGES_PROHIBITED_WORDS=i.IMAGES_PROHIBITED_WORDS,exports.START_STEP=i.START_STEP,exports.TARGET_AUDIENCE=i.TARGET_AUDIENCE,exports.ZERO_SECTION=i.ZERO_SECTION,exports.portalInfo=i.portalInfo;
@@ -0,0 +1,7 @@
1
+ export declare const portalInfo = "The article is written for the web portal.I will give you important information regarding the web portal:\n - Brief description: Mangami is a comprehensive infotainment articles portal dedicated to the captivating worlds of anime and manga. It serves as a hub for fans seeking insightful articles, character analyses, and story breakdowns that deepen their appreciation for these popular cultural phenomena.\n - Detailed description: Mangami offers a rich collection of articles that delve into various aspects of anime and manga culture. From in-depth character studies to thematic explorations, the portal is designed for readers who want to go beyond just surface-level content. Each article is crafted with care, utilizing SEO best practices to ensure that fans can easily find the information they seek. Whether one is new to the medium or a seasoned aficionado, Mangami provides valuable insights into plot developments, artistic styles, genre trends, and fandom communities. The portal aims to create a vibrant space for discussion and discovery, encouraging readers to engage deeply with their favorite series and characters.\n - Target audience: The target audience for Mangami consists of anime and manga enthusiasts of all ages, including both casual viewers and dedicated fans. This includes individuals looking for deeper narrative analyses, aspiring creators seeking inspiration, and anyone interested in the cultural impact of anime and manga globally. The portal caters to a diverse demographic, from teenagers to adult readers, fostering a welcoming environment for all who share a love for this dynamic form of entertainment.\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 Analysis\n - Background and Development\n - Motivations and Goals\n\n## Thematic Explorations\n - Key Themes and Messages\n - Cultural Significance\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 Analysis, 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 t="The article is written for the web portal.I will give you important information regarding the web portal:\n - Brief description: Mangami is a comprehensive infotainment articles portal dedicated to the captivating worlds of anime and manga. It serves as a hub for fans seeking insightful articles, character analyses, and story breakdowns that deepen their appreciation for these popular cultural phenomena.\n - Detailed description: Mangami offers a rich collection of articles that delve into various aspects of anime and manga culture. From in-depth character studies to thematic explorations, the portal is designed for readers who want to go beyond just surface-level content. Each article is crafted with care, utilizing SEO best practices to ensure that fans can easily find the information they seek. Whether one is new to the medium or a seasoned aficionado, Mangami provides valuable insights into plot developments, artistic styles, genre trends, and fandom communities. The portal aims to create a vibrant space for discussion and discovery, encouraging readers to engage deeply with their favorite series and characters.\n - Target audience: The target audience for Mangami consists of anime and manga enthusiasts of all ages, including both casual viewers and dedicated fans. This includes individuals looking for deeper narrative analyses, aspiring creators seeking inspiration, and anyone interested in the cultural impact of anime and manga globally. The portal caters to a diverse demographic, from teenagers to adult readers, fostering a welcoming environment for all who share a love for this dynamic form of entertainment.\n\n",a="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 Analysis\n - Background and Development\n - Motivations and Goals\n\n## Thematic Explorations\n - Key Themes and Messages\n - Cultural Significance\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 Analysis, 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=a,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";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 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 the Creators | Mangami - Your Anime & Manga Hub",description:"Discover the talented authors behind your favorite anime and manga series! ✍️ Dive into their stories and inspiration with Mangami. 📚"},[exports.PageNames.Home]:{title:"Mangami - Your Ultimate Anime & Manga Destination",description:"Welcome to Mangami! 🌟 Explore the latest articles, reviews, and news in the world of anime and manga. Join our community today! 🎉"},[exports.PageNames.NotFound]:{title:"Page Not Found | Mangami",description:"Oops! It seems the page you’re looking for doesn't exist. 🤔 Check our homepage for the latest articles on anime and manga! 📖"},[exports.PageNames.AboutUs]:{title:"About Mangami | Passion for Anime & Manga",description:"Learn about Mangami's journey and our love for anime and manga! 💖 Join us as we explore this vibrant world together. 🌈"},[exports.PageNames.PrivacyPolicy]:{title:"Privacy Policy | Mangami",description:"Your privacy matters to us! 🔒 Read Mangami's privacy policy to know how we protect your information while you enjoy anime and manga. 📜"},[exports.PageNames.Terms]:{title:"Terms of Service | Mangami",description:"Understand the rules of engagement on Mangami! 📄 Explore our terms of service and join our anime & manga community today! 🤝"},[exports.PageNames.Sitemap]:{title:"Sitemap | Mangami",description:"Navigate Mangami effortlessly! 🌐 Check out our sitemap to find all your favorite anime and manga articles quickly. 🔍"}},i=[{name:"Aditi Gupta",description:"Aditi is a passionate writer and anime enthusiast with over 5 years of experience in the Japanese pop culture space. She has contributed to various online platforms, sharing her insights on anime trends, character analysis, and manga reviews. Aditi holds a degree in Visual Communication and enjoys cosplaying at conventions!",meta_title:"Aditi Gupta - Anime Writer and Reviewer at Mangami",meta_description:"Explore anime insights and manga reviews by Aditi Gupta, a seasoned anime writer with 5 years of experience in Japanese pop culture. Discover her passion for anime at Mangami."},{name:"Rahul Mehta",description:"Rahul is a freelance writer and avid manga reader from Mumbai, India. With a background in Literature, he has spent more than 7 years analyzing and critiquing various anime and manga series. His keen understanding of narrative and character development makes his articles engaging and thought-provoking.",meta_title:"Rahul Mehta - Manga Analyst at Mangami",meta_description:"Dive into the world of manga and anime with Rahul Mehta, an expert analyst and writer with over 7 years of experience in the field. Read his articles at Mangami."},{name:"Priya Sharma",description:"Priya is a cultural studies graduate who delves into the significance of anime and manga in contemporary society. With over 4 years of writing experience, she focuses on exploring diverse themes in storytelling and representation within the anime community. Her articles often highlight underappreciated series.",meta_title:"Priya Sharma - Cultural Expert on Anime at Mangami",meta_description:"Learn about the cultural significance of anime and manga with Priya Sharma, a writer with over 4 years of experience at Mangami. Discover hidden gems in her articles."},{name:"Siddharth Rao",description:"Siddharth is an illustrator and anime creator who brings a unique perspective to the world of writing. With experience in both the creative and analytical realms of anime, Siddharth has been penning articles for over 6 years, showcasing art, animation techniques, and inspirational artists.",meta_title:"Siddharth Rao - Illustrator and Anime Writer at Mangami",meta_description:"Explore the intersection of art and storytelling in anime with Siddharth Rao, an illustrator and writer with over 6 years of experience. Visit Mangami for his insights."},{name:"Nisha Patel",description:"Nisha is a dedicated anime fan and blogger who has spent the last 5 years amassing a diverse collection of anime knowledge. Her enthusiasm for writing shines through her in-depth reviews and engaging commentary on popular and niche series alike. She also hosts a podcast exploring anime culture.",meta_title:"Nisha Patel - Anime Blogger and Podcaster at Mangami",meta_description:"Join Nisha Patel, an anime blogger with 5 years of experience, as she shares her unique perspectives and reviews on Mangami. Listen to her podcasts too!"},{name:"Karan Singh",description:"Karan is a technology enthusiast and anime writer who bridges the gap between tech and entertainment. With over 3 years of experience, he writes articles focusing on the portrayal of technology in anime and the evolution of anime streaming platforms.",meta_title:"Karan Singh - Tech and Anime Writer at Mangami",meta_description:"Discover the fusion of technology and anime with Karan Singh, a writer with 3 years of expertise in the sector. Get insights on Mangami."},{name:"Tanya Kapoor",description:"Tanya is a creative writer with a passion for storytelling through anime and manga. She has a background in childhood education and has been exploring the impact of anime on youth culture in her writings for the past 5 years, focusing on themes of growth and education.",meta_title:"Tanya Kapoor - Storytelling Advocate in Anime at Mangami",meta_description:"Explore the impact of storytelling in anime with Tanya Kapoor, a writer dedicated to youth culture and education. Read her insightful articles at Mangami."},{name:"Aarav Desai",description:"Aarav is a rising star in the anime community, providing analyses and predictions for upcoming series. With a background in media studies and over 2 years of writing experience, he engages readers with thought-provoking discussions on future trends in anime.",meta_title:"Aarav Desai - Anime Trend Analyst at Mangami",meta_description:"Stay ahead of anime trends with Aarav Desai, a fresh voice and analyst with 2 years of writing experience. Explore his articles on Mangami."},{name:"Simran Kaur",description:"Simran is a manga artist and writer who combines her artistic flair with her love for writing. With over 4 years of experience, she offers valuable insights on the art of manga creation and storytelling techniques, appealing to aspiring artists and writers.",meta_title:"Simran Kaur - Manga Artist and Writer at Mangami",meta_description:"Join Simran Kaur, a manga artist and writer with 4 years of experience, as she explores the art and techniques of manga creation at Mangami."},{name:"Aisha Sharma",description:"Aisha Sharma is a passionate anime and manga writer with over seven years of experience in the industry. Hailing from Mumbai, India, she combines her love for storytelling with analytical insights into popular culture. Aisha has contributed to several online portals and magazines, focusing on character analysis and narrative techniques.",meta_title:"Aisha Sharma - Expert Anime and Manga Writer | Mangami",meta_description:"Discover Aisha Sharma's insightful articles on anime and manga at Mangami. With over seven years of experience, Aisha offers unique perspectives and deep analysis."},{name:"Rahul Verma",description:"Rahul Verma is a seasoned anime enthusiast from New Delhi, India, who has been writing about anime and manga for the past five years. Known for his engaging and humorous style, Rahul connects the world of anime with diverse cultural themes, making his works exceptionally relatable.",meta_title:"Rahul Verma - Engaging Anime & Manga Writer | Mangami",meta_description:"Explore Rahul Verma's engaging and humorous articles on anime and manga at Mangami. Bringing cultural themes to life through creative storytelling."},{name:"Neha Dixit",description:"Neha Dixit is a Bangalore-based writer and editor celebrated for her extensive knowledge of Japanese culture and anime. With a background in literature, she has been weaving tales about anime and manga since 2016, specializing in reviews and analysis of emerging trends.",meta_title:"Neha Dixit - Anime & Manga Analysis Expert | Mangami",meta_description:"Join Neha Dixit on her journey through the world of anime and manga at Mangami. A literature enthusiast with expert analytical skills since 2016."},{name:"Arjun Singh",description:"Arjun Singh, a passionate otaku from Pune, India, has been contributing his voice to the anime and manga community for over four years. His articles often dive into philosophical themes within popular series, encouraging readers to think critically about their favorite shows.",meta_title:"Arjun Singh - Thought-Provoking Anime & Manga Writer | Mangami",meta_description:"Delve into Arjun Singh's thought-provoking articles on anime and manga at Mangami. Challenging fans to think critically and explore deeper themes."},{name:"Priya Mehta",description:"With a diverse background in graphic design and a love for storytelling, Priya Mehta from Hyderabad has been an integral part of the anime writing community since 2018. Her artistic insight enriches her reviews, making them both informative and visually inspiring.",meta_title:"Priya Mehta - Artistic Anime & Manga Reviewer | Mangami",meta_description:"Discover Priya Mehta's artistic insights into anime and manga at Mangami. A graphic designer and storyteller since 2018, she brings aesthetics to writing."},{name:"Karan Gupta",description:"Karan Gupta is an anime blogger and digital content creator from Chandigarh. With over six years of experience, he focuses on anime series recommendations and hidden gems in the manga world, helping readers expand their horizons.",meta_title:"Karan Gupta - Anime Recommendations & Insights | Mangami",meta_description:"Join Karan Gupta at Mangami for anime recommendations and insights into lesser-known manga gems. Sharing six years of expertise in the anime blogging world."},{name:"Sneha Reddy",description:"An anime artist and writer based in Kolkata, Sneha Reddy brings her unique perspective on the convergence of art and storytelling in anime and manga. With over three years of writing experience, she focuses on character development and visual aesthetics.",meta_title:"Sneha Reddy - Anime Artist & Writer | Mangami",meta_description:"Explore Sneha Reddy's artistic take on anime and manga at Mangami. An anime artist with three years of experience, focusing on character and visual narratives."},{name:"Vikram Joshi",description:"Vikram Joshi is an avid manga collector from Ahmedabad, India, with a keen eye for historical context in storytelling. Writing for over five years, he specializes in in-depth analyses of classic and contemporary manga series.",meta_title:"Vikram Joshi - In-Depth Manga Analyst | Mangami",meta_description:"Dive into the insightful writings of Vikram Joshi on manga at Mangami. With five years of experience, he offers in-depth analyses of your favorite series."},{name:"Meera Patel",description:"Meera Patel is a content writer and translator from Surat specializing in anime and manga since 2019. Fluent in Japanese and English, she translates popular manga into English and shares her unique interpretations and analyses.",meta_title:"Meera Patel - Bilingual Anime & Manga Writer | Mangami",meta_description:"Join Meera Patel at Mangami for her bilingual insights into anime and manga. Translating and interpreting popular series, she enriches the community with fresh perspectives."},{name:"Nikhil Desai",description:"Nikhil Desai is a dynamic content creator from Jaipur with a deep-seated love for anime music and its lyrical storytelling since 2017. He explores the connection between anime soundtracks and narrative, making his work a favorite among music aficionados.",meta_title:"Nikhil Desai - Anime Music & Storytelling Expert | Mangami",meta_description:"Explore Nikhil Desai's exploration of anime music and storytelling at Mangami. A content creator since 2017, he's a favorite among music lovers and anime fans alike."},{name:"Arjun Desai",description:"Arjun is a passionate writer and anime enthusiast from Mumbai. With over five years of experience in the industry, he specializes in writing reviews and analysis of popular anime series and films. His insightful articles provide readers with a deeper understanding of character development and storytelling in anime.",meta_title:"Arjun Desai - Anime and Manga Writer at Mangami",meta_description:"Discover Arjun Desai's expert insights into anime and manga, featuring reviews, analyses, and more, exclusively on Mangami."},{name:"Meera Kapoor",description:"Meera is a Bangalore-based writer and artist who has been immersed in the world of manga since childhood. With a degree in graphic design, she combines her knowledge of art and storytelling to create engaging articles that explore the intricate details of manga artwork and storytelling techniques.",meta_title:"Meera Kapoor - Manga Specialist at Mangami",meta_description:"Explore the brilliance of manga through Meera Kapoor's insights on art, storytelling, and more. Read her articles on Mangami."},{name:"Rahul Nair",description:"Rahul is a cultural researcher and writer hailing from Delhi, excelling in bridging the gap between East and West in the anime community. His articles often delve into the cultural nuances and implications in anime and manga, making them accessible to a global audience.",meta_title:"Rahul Nair - Cultural Analyst of Anime & Manga at Mangami",meta_description:"Join Rahul Nair in exploring the cultural depths of anime and manga. Gain insights into the global influence of these art forms on Mangami."},{name:"Vikram Sethi",description:"Vikram, based in Pune, is a professional content creator and anime fan who focuses on the evolution of art styles in anime. Through his detailed and insightful articles, he analyzes how trends impact storytelling and viewer engagement.",meta_title:"Vikram Sethi - Anime Art Expert at Mangami",meta_description:"Dive into the world of anime aesthetics with Vikram Sethi's articles examining art styles and trends, available on Mangami."},{name:"Nisha Menon",description:"Nisha is an experienced journalist and anime connoisseur from Chennai. With a knack for narrative storytelling, she writes engaging features on anime conventions, trends, and interviews with industry insiders, providing readers with an insider's perspective.",meta_title:"Nisha Menon - Anime Journalist at Mangami",meta_description:"Get the latest updates on anime conventions, trends, and exclusive interviews with Nisha Menon's feature articles on Mangami."},{name:"Deepak Iyer",description:"Deepak is a content strategist and manga lover from Kolkata, passionate about anime's impact on society. His articles often explore social issues and representation in anime and manga, sparking conversations around relevant themes.",meta_title:"Deepak Iyer - Social Commentator on Anime at Mangami",meta_description:"Engage with Deepak Iyer's thought-provoking articles on social issues represented in anime and manga, exclusively on Mangami."},{name:"Sophie Chatterjee",description:"Sophie is a Tokyo-based writer of Indian heritage who explores the intersection of Japanese culture and anime. Her articles often feature translations and contextual interpretations of Japanese culture within anime narratives.",meta_title:"Sophie Chatterjee - Cultural Interpreter and Writer at Mangami",meta_description:"Join Sophie Chatterjee in understanding Japanese culture through anime by reading her unique interpretations on Mangami."},{name:"Karan Malik",description:"Karan is an anime podcaster and blogger from Surat. He shares his expertise on character development and voice acting in anime through articles that dissect popular series, helping fans appreciate the cinematic elements of their favorite shows.",meta_title:"Karan Malik - Anime Podcaster and Article Contributor at Mangami",meta_description:"Explore Karan Malik's expert analyses on character development and voice acting in anime, featured on Mangami."},{name:"Aditi Ramesh",description:"Aditi is a novelist and passionate anime fan from Jaipur. Her writing blends her knowledge of storytelling with insights on character arcs and plot twists in anime, making her articles both compelling and informative.",meta_title:"Aditi Ramesh - Storytelling Expert on Anime at Mangami",meta_description:"Discover character arcs and plot twists in anime through Aditi Ramesh's compelling articles, exclusively at Mangami."},{name:"Ravi Kumar",description:"Ravi Kumar is a passionate anime and manga enthusiast with over a decade of experience in writing. He runs a popular blog that reviews both mainstream and indie anime. His deep understanding of storytelling and character development enhances his articles, making them a favorite among fans.",meta_title:"Ravi Kumar - Anime & Manga Enthusiast | Mangami",meta_description:"Discover Ravi Kumar's insights on anime and manga as he shares his expertise and passion for storytelling through engaging articles on Mangami."},{name:"Ananya Sen",description:"Ananya Sen is an Indian writer and illustrator who specializes in anime and manga commentary. With a background in graphic design, she offers a unique perspective on art styles and character design, enriching her articles with visual analysis.",meta_title:"Ananya Sen - Manga Artist & Writer | Mangami",meta_description:"Explore Ananya Sen's unique take on anime and manga, blending art critiques and storytelling in her engaging articles on Mangami."},{name:"Vikram Rao",description:"Vikram Rao is a seasoned content creator with a deep-seated passion for Japanese pop culture. Having collaborated with various anime networks, his articles delve into both classic and contemporary works, bringing fresh perspectives to fans on Mangami.",meta_title:"Vikram Rao - Anime Culture Expert | Mangami",meta_description:"Dive into Vikram Rao's in-depth analysis of anime and manga, where he shares expert insights and reviews on Mangami."},{name:"Priya Desai",description:"Priya Desai is an avid anime fan and freelance writer known for her thought-provoking essays on anime themes and cultural references. Her academic background in literature makes her articles a source of inspiration for deep dives into storytelling.",meta_title:"Priya Desai - Anime Essayist & Critic | Mangami",meta_description:"Join Priya Desai as she thoughtfully analyzes anime themes and culture, bringing her literary expertise to the forefront on Mangami."},{name:"Amit Verma",description:"Amit Verma is an animation student turned blogger who shares his insights on anime and manga through reviews and recommendations. His passion for storytelling and character analysis resonates with readers, making his articles highly engaging on Mangami.",meta_title:"Amit Verma - Manga Reviewer & Storyteller | Mangami",meta_description:"Read Amit Verma's captivating reviews and recommendations for anime and manga, blending his animation expertise with storytelling on Mangami."},{name:"Neha Agarwal",description:"Neha Agarwal is a content writer and anime aficionado who contributes her unique perspectives on trending titles and hidden gems. Known for her engaging writing style, she aims to make the anime world more accessible to newcomers.",meta_title:"Neha Agarwal - Anime Advocate & Writer | Mangami",meta_description:"Discover Neha Agarwal's engaging articles that promote anime culture and help newcomers navigate the world of manga and anime on Mangami."},{name:"Sakshi Mehta",description:"Sakshi Mehta is an anime blogger with a flair for colorful storytelling. Her articles provide a fun yet informative look at various genres while also addressing fan theories and community discussions, making her one of the prominent voices on Mangami.",meta_title:"Sakshi Mehta - Fun Anime Blogger | Mangami",meta_description:"Join Sakshi Mehta for a colorful exploration of anime genres and fan theories through her lighthearted yet informative articles on Mangami."},{name:"Rahul Bansal",description:"Rahul Bansal is a lifelong anime watcher and content creator, whose critical reviews and in-depth analyses have gained a loyal following. His expertise includes exploring anime adaptations of popular manga and is a trusted voice in the community.",meta_title:"Rahul Bansal - Anime Critic & Reviewer | Mangami",meta_description:"Get insights from Rahul Bansal, an expert on anime adaptations and manga, in his thoughtful reviews and analyses on Mangami."},{name:"Tina Choudhury",description:"Tina Choudhury is a writer and anthropologist who examines the influence of anime and manga on global culture. Her scholarly approach enriches her articles, which often explore cross-cultural themes and the evolution of anime as an art form.",meta_title:"Tina Choudhury - Cultural Anthropologist & Writer | Mangami",meta_description:"Explore Tina Choudhury's analytical perspectives on the global impact of anime and manga culture in her insightful articles on Mangami."},{name:"Sakura Yoshida",description:"Sakura Yoshida is a passionate anime enthusiast and freelance writer based in Tokyo, Japan. With over 5 years of experience covering both mainstream and indie titles, she is well-versed in the intricacies of Japanese pop culture. Sakura has a knack for detailed character analyses and currently contributes to several anime blogs.",meta_title:"Sakura Yoshida - Mangami Anime & Manga Author",meta_description:"Meet Sakura Yoshida, our expert anime writer from Tokyo. With 5+ years in the industry, she brings deep insights into anime characters and storytelling."},{name:"James Thompson",description:"James Thompson is a veteran in the anime and manga community, hailing from London, UK. With over a decade of writing experience, he covers topics from new releases to classic reviews. James is known for his engaging writing style and has a keen focus on exploring anime themes.",meta_title:"James Thompson - Mangami Anime & Manga Author",meta_description:"Discover James Thompson, our talented anime critic from London. With 10+ years in the field, he offers insightful reviews and thematic explorations."},{name:"Maria Gomez",description:"Maria Gomez is a Colombian writer and anime lover who infuses her articles with cultural perspectives. With 4 years of professional writing experience, she specializes in anime recommendations and fandom discussions, making her a vibrant addition to the Mangami team.",meta_title:"Maria Gomez - Mangami Anime & Manga Author",meta_description:"Introducing Maria Gomez, a unique voice from Colombia. With 4 years of experience, she shares anime recommendations and cultural insights."},{name:"Liam O'Connor",description:"Liam O'Connor is an Irish content creator and manga collector based in Dublin, Ireland. He has spent over 6 years analyzing and reviewing manga, and he enjoys sharing his findings through insightful articles that resonate with fans around the world.",meta_title:"Liam O'Connor - Mangami Anime & Manga Author",meta_description:"Meet Liam O'Connor, our dedicated manga analyst from Dublin. With 6 years of experience, he crafts articles filled with insightful reviews and recommendations."},{name:"Aditi Sharma",description:"Aditi Sharma is an anime and manga blogger based in Mumbai, India. With 7 years of experience, she writes extensively on emerging trends within the anime community and champions underrepresented voices in the genre.",meta_title:"Aditi Sharma - Mangami Anime & Manga Author",meta_description:"Explore the work of Aditi Sharma, our anime expert from Mumbai. With 7 years of expertise, she sheds light on new trends and niche topics."},{name:"Henry Chen",description:"Henry Chen is a Chinese-American writer located in San Francisco, California. A lifelong anime fan, he has over 8 years of experience in digital media writing, focusing on anime series critiques and industry news.",meta_title:"Henry Chen - Mangami Anime & Manga Author",meta_description:"Get to know Henry Chen, our industry-savvy writer from San Francisco. With 8 years in digital media, he covers series critiques and news."},{name:"Elena Petrova",description:"Elena Petrova is a Russian anime journalist from Moscow. With 5 years of in-depth research and articles, she focuses on the cultural impact of anime and its global reach, making her insights essential for any anime enthusiast.",meta_title:"Elena Petrova - Mangami Anime & Manga Author",meta_description:"Discover Elena Petrova, our cultural analyst from Moscow. Her 5-year journey in journalism highlights anime's global influence."},{name:"Carlos Rivera",description:"Carlos Rivera is a Mexican writer and artist currently living in Guadalajara. He has 6 years of experience writing for various online platforms, focusing on art and animation styles in both anime and manga.",meta_title:"Carlos Rivera - Mangami Anime & Manga Author",meta_description:"Meet Carlos Rivera, our art-focused writer from Guadalajara. With 6 years of experience, he explores the visual artistry of anime and manga."},{name:"Chloe Lee",description:"Chloe Lee is a South Korean anime critic based in Seoul. With extensive experience in both content writing and film critique, she brings a unique perspective to anime storytelling and character development.",meta_title:"Chloe Lee - Mangami Anime & Manga Author",meta_description:"Introducing Chloe Lee, our film critique expert from Seoul. She provides unique insights into anime storytelling and character depth."},{name:"Omar Aziz",description:"Omar Aziz is a passionate anime and manga expert from Dubai, UAE. Specializing in manga reviews and fan theories, he has been writing for over 4 years and is known for his engaging and thought-provoking articles.",meta_title:"Omar Aziz - Mangami Anime & Manga Author",meta_description:"Explore the work of Omar Aziz, our engaging writer from Dubai. With 4 years of experience, he delves into manga reviews and fan theories."},{name:"Akira Tanaka",description:"Akira Tanaka is a seasoned anime and manga journalist from Tokyo, Japan. With over a decade of experience in the industry, Akira has contributed to various publications and websites, providing insights on anime trends, reviews, and convention coverage. His deep connection to Japanese culture and his passion for storytelling make his articles engaging and informative.",meta_title:"Akira Tanaka - Anime and Manga Expert | Mangami",meta_description:"Discover the insightful articles of Akira Tanaka, a seasoned journalist specializing in anime and manga. With over ten years in the industry, Akira shares unique perspectives on anime trends and storytelling."},{name:"Emma Johnson",description:"Emma Johnson is a dedicated anime and manga fan from Toronto, Canada. She has been writing about her favorite series for over five years, focusing on character development and art style. Emma’s articles often reflect her extensive personal collection and her participation in various anime conventions across North America.",meta_title:"Emma Johnson - Anime & Manga Enthusiast | Mangami",meta_description:"Join Emma Johnson on a journey through the world of anime and manga. As an enthusiastic writer with a passion for character analysis, Emma offers clever insights and reviews on her favorite series."},{name:"Liam O'Reilly",description:"Liam O'Reilly is an Irish content creator based in Dublin, specializing in anime and manga critique. With a background in literature and film studies, Liam writes analytical reviews and opinion pieces that challenge mainstream perceptions. His nuanced understanding of storytelling allows readers to appreciate the depths of their favorite narratives.",meta_title:"Liam O'Reilly - Manga and Anime Critic | Mangami",meta_description:"Explore the analytical world of anime and manga with Liam O'Reilly. As a former literature student, Liam provides critical reviews and insightful articles that delve deep into storytelling."},{name:"Fatima El-Sayed",description:"Fatima El-Sayed is an Egyptian writer and anime enthusiast living in Cairo. With a rich background in cultural studies, Fatima uses her platform to highlight the intersections of anime, culture, and identity. Her approach combines personal narratives with deep analyses, fostering a diverse understanding of the medium.",meta_title:"Fatima El-Sayed - Cultural Anime Writer | Mangami",meta_description:"Discover the unique perspectives of Fatima El-Sayed as she explores anime and manga through cultural lenses. Her articles beautifully weave personal narratives and deep cultural analyses."},{name:"Carlos Gonzalez",description:"Carlos Gonzalez is a passionate anime and manga writer from Madrid, Spain. With over three years of experience, he covers a broad range of topics, from classic series to the latest releases. Carlos engages his readers with lively discussions on character arcs and thematic exploration.",meta_title:"Carlos Gonzalez - Anime and Manga Writer | Mangami",meta_description:"Join Carlos Gonzalez in exploring the vibrant world of anime and manga. His engaging articles delve into story arcs, character development, and the hottest new releases."},{name:"Sofia Ivanova",description:"Sofia Ivanova, hailing from Moscow, Russia, is an avid manga artist and writer. With years of experience in creating her own manga, Sofia combines her artistic insight with her writing to offer readers a unique perspective on the art form. Her articles often explore the craft of manga-making as well as reviews of popular titles.",meta_title:"Sofia Ivanova - Manga Artist and Writer | Mangami",meta_description:"Explore the intricate world of manga with Sofia Ivanova. As a manga artist and writer, Sofia shares unique insights into the art form alongside her reviews and recommendations."},{name:"Rajesh Patel",description:"Rajesh Patel is an anime historian and writer based in Mumbai, India. With his extensive knowledge of anime history and its global impact, Rajesh’s articles provide readers with an appreciation of how anime has evolved over the years. He enjoys connecting historical context with contemporary trends.",meta_title:"Rajesh Patel - Anime Historian and Writer | Mangami",meta_description:"Uncover the history of anime with Rajesh Patel. His informed articles blend historical insights with modern trends, giving readers a deeper understanding of this beloved medium."},{name:"Zara Neha",description:"Zara Neha is a creative writer from Sydney, Australia, who infuses her love for storytelling into her articles on anime and manga. As an active member of the anime community, she shares her thoughts on diverse topics, from character-driven narratives to thematic comparisons across cultures.",meta_title:"Zara Neha - Storytelling Writer on Anime and Manga | Mangami",meta_description:"Join Zara Neha as she explores storytelling in anime and manga. Her articles offer captivating insights into character-driven stories and cultural comparisons across beloved series."},{name:"Daniel Müller",description:"Daniel Müller, a Berlin-based blogger, spends his time writing in-depth reviews and analysis of both popular and indie anime and manga. Passionate about discovering hidden gems, Daniel provides thoughtful recommendations and engages with his audience through a conversational writing style.",meta_title:"Daniel Müller - In-Depth Anime and Manga Reviewer | Mangami",meta_description:"Dive into the world of anime and manga with Daniel Müller. His in-depth reviews and analyses reveal hidden gems and foster engaging discussions about beloved series."},{name:"Chloe Hernandez",description:"Chloe Hernandez is a young writer from Los Angeles, USA, who has a keen eye for detail and creativity. Her blog focuses on the impact of anime and manga in contemporary society and how it shapes youth culture. Chloe enjoys writing engaging articles that resonate with a younger audience.",meta_title:"Chloe Hernandez - Modern Anime and Manga Writer | Mangami",meta_description:"Discover the impact of anime and manga in today's society with Chloe Hernandez. Her engaging articles explore how these mediums shape youth culture and contemporary narratives."}],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:#2b0b3e;--theme-color-8:#4e1a64;--theme-color-7:#743e8e;--theme-color-6:#a67bc4;--theme-color-5:#d4b8e0;--theme-color-3:#eae3ff;--theme-color-2:#f7f2ff;--color-bg-layout:#ffffff;--color-bg-hover:#e1deed;--article-border-radius:12px;--btn-border-radius:8px;--category-border-radius:25px;}
@@ -0,0 +1 @@
1
+ @import "sizing.css";@import "colors.css";@import "fonts.css";@import "theme.css";
@@ -0,0 +1,231 @@
1
+ export declare const dataStructure: {
2
+ characterAnalysis: {
3
+ title: string;
4
+ description: string;
5
+ slug: string;
6
+ children: {
7
+ protagonists: {
8
+ title: string;
9
+ description: string;
10
+ slug: string;
11
+ children: null;
12
+ };
13
+ antagonists: {
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
+ other: {
26
+ title: string;
27
+ description: string;
28
+ slug: string;
29
+ children: null;
30
+ };
31
+ };
32
+ };
33
+ genreExploration: {
34
+ title: string;
35
+ description: string;
36
+ slug: string;
37
+ children: {
38
+ shonen: {
39
+ title: string;
40
+ description: string;
41
+ slug: string;
42
+ children: null;
43
+ };
44
+ shojo: {
45
+ title: string;
46
+ description: string;
47
+ slug: string;
48
+ children: null;
49
+ };
50
+ seinen: {
51
+ title: string;
52
+ description: string;
53
+ slug: string;
54
+ children: null;
55
+ };
56
+ other: {
57
+ title: string;
58
+ description: string;
59
+ slug: string;
60
+ children: null;
61
+ };
62
+ };
63
+ };
64
+ thematicStudies: {
65
+ title: string;
66
+ description: string;
67
+ slug: string;
68
+ children: {
69
+ loveAndFriendship: {
70
+ title: string;
71
+ description: string;
72
+ slug: string;
73
+ children: null;
74
+ };
75
+ identityAndGrowth: {
76
+ title: string;
77
+ description: string;
78
+ slug: string;
79
+ children: null;
80
+ };
81
+ battleAndConflict: {
82
+ title: string;
83
+ description: string;
84
+ slug: string;
85
+ children: null;
86
+ };
87
+ other: {
88
+ title: string;
89
+ description: string;
90
+ slug: string;
91
+ children: null;
92
+ };
93
+ };
94
+ };
95
+ mangaReviews: {
96
+ title: string;
97
+ description: string;
98
+ slug: string;
99
+ children: {
100
+ completedSeries: {
101
+ title: string;
102
+ description: string;
103
+ slug: string;
104
+ children: null;
105
+ };
106
+ ongoingSeries: {
107
+ title: string;
108
+ description: string;
109
+ slug: string;
110
+ children: null;
111
+ };
112
+ bestMangaLists: {
113
+ title: string;
114
+ description: string;
115
+ slug: string;
116
+ children: null;
117
+ };
118
+ other: {
119
+ title: string;
120
+ description: string;
121
+ slug: string;
122
+ children: null;
123
+ };
124
+ };
125
+ };
126
+ animeReviews: {
127
+ title: string;
128
+ description: string;
129
+ slug: string;
130
+ children: {
131
+ seasonalAnime: {
132
+ title: string;
133
+ description: string;
134
+ slug: string;
135
+ children: null;
136
+ };
137
+ classicAnime: {
138
+ title: string;
139
+ description: string;
140
+ slug: string;
141
+ children: null;
142
+ };
143
+ animeAdaptations: {
144
+ title: string;
145
+ description: string;
146
+ slug: string;
147
+ children: null;
148
+ };
149
+ other: {
150
+ title: string;
151
+ description: string;
152
+ slug: string;
153
+ children: null;
154
+ };
155
+ };
156
+ };
157
+ artAndAnimation: {
158
+ title: string;
159
+ description: string;
160
+ slug: string;
161
+ children: {
162
+ characterDesign: {
163
+ title: string;
164
+ description: string;
165
+ slug: string;
166
+ children: null;
167
+ };
168
+ animationTechniques: {
169
+ title: string;
170
+ description: string;
171
+ slug: string;
172
+ children: null;
173
+ };
174
+ illustrationStyles: {
175
+ title: string;
176
+ description: string;
177
+ slug: string;
178
+ children: null;
179
+ };
180
+ other: {
181
+ title: string;
182
+ description: string;
183
+ slug: string;
184
+ children: null;
185
+ };
186
+ };
187
+ };
188
+ culturalInsights: {
189
+ title: string;
190
+ description: string;
191
+ slug: string;
192
+ children: {
193
+ mythologyAndFolklore: {
194
+ title: string;
195
+ description: string;
196
+ slug: string;
197
+ children: null;
198
+ };
199
+ japaneseTraditions: {
200
+ title: string;
201
+ description: string;
202
+ slug: string;
203
+ children: null;
204
+ };
205
+ impactOnWesternCulture: {
206
+ title: string;
207
+ description: string;
208
+ slug: string;
209
+ children: null;
210
+ };
211
+ other: {
212
+ title: string;
213
+ description: string;
214
+ slug: string;
215
+ children: null;
216
+ };
217
+ };
218
+ };
219
+ };
220
+ export declare const authors: Record<string, string>;
221
+ export declare const authorsNames: string[];
222
+ export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83C\uDFA8\uD83D\uDCDA\uD83D\uDD8C\uFE0F\u2728";
223
+ export declare const categories: ("animeReviews" | "mangaReviews" | "characterAnalysis" | "genreExploration" | "thematicStudies" | "artAndAnimation" | "culturalInsights")[];
224
+ export declare const subcategories: string[];
225
+ export declare const subsubcategories: string[];
226
+ export type Category = keyof typeof dataStructure;
227
+ export type CategoryNode = (typeof dataStructure)[Category];
228
+ export type SubcategoryKeyByCategory<T extends Category> = (typeof dataStructure)[T]['children'];
229
+ export declare const startDate = "2024-09-11T00:00:00Z";
230
+ export declare const devBucketName = "idn-otaxel-dev";
231
+ export declare const prodBucketName = "idn-otaxel";
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./seo.js");const n={characterAnalysis:{title:"Dive into Comprehensive Character Analyses in Anime & Manga 📚✨",description:"Explore in-depth character analyses in anime and manga. Uncover insights about protagonists, antagonists, and supporting characters that enrich your fandom! 🌟",slug:"character-analysis-anime-manga",children:{protagonists:{title:"Understanding Protagonists: The Heart of Anime & Manga 💖",description:"Delve into the unique traits and journeys of protagonists in anime and manga. Discover what makes them relatable and memorable for fans! 🌈",slug:"protagonists-anime-manga",children:null},antagonists:{title:"Exploring Antagonists: The Forces Behind Conflict ⚔️",description:"Uncover the complex motivations and backgrounds of antagonists in anime and manga. Learn how they enhance storytelling and character development! 🕵️‍♂️",slug:"antagonists-anime-manga",children:null},supportingCharacters:{title:"The Role of Supporting Characters in Anime & Manga 🌼",description:"Examine the vital contributions of supporting characters in anime and manga. See how they enrich the narrative and impact the protagonists! 🌟",slug:"supporting-characters-anime-manga",children:null},other:{title:"Unique Characters: Beyond Heroes and Villains 🎭",description:"Discover unique and quirky characters that don't fit the standard molds in anime and manga. Their stories and traits may surprise you! 🌟",slug:"unique-characters-anime-manga",children:null}}},genreExploration:{title:"Explore the Diverse Genres of Anime and Manga 🎨",description:"Dive into the rich variety of anime and manga genres in our genre exploration section. Discover shonen, shojo, seinen, and more! 🌟",slug:"anime-manga-genres",children:{shonen:{title:"Unleashing the Power of Shonen Anime and Manga 💪",description:"Discover the thrilling world of shonen anime and manga! Explore themes of friendship, adventure, and determination in this dynamic genre. 🌟",slug:"shonen-anime-manga",children:null},shojo:{title:"The Heartfelt Universe of Shojo Anime and Manga 💖",description:"Immerse yourself in the charming world of shojo anime and manga! Explore romantic tales and emotional journeys perfect for fans of all ages. 🌸",slug:"shojo-anime-manga",children:null},seinen:{title:"In-Depth Exploration of Seinen Anime and Manga 🎭",description:"Venture into the sophisticated realm of seinen anime and manga. Uncover complex narratives targeting older audiences with thought-provoking themes. 📚",slug:"seinen-anime-manga",children:null},other:{title:"Discover Unique Genres Beyond the Mainstream 🌌",description:"Explore niche genres in anime and manga that defy categorization. Dive deep into unique storytelling and artistry that captivates fans globally! 🔍",slug:"unique-anime-manga-genres",children:null}}},thematicStudies:{title:"Thematic Studies of Anime & Manga 🌟",description:"Explore the rich themes of anime and manga, from love and friendship to battles and personal growth. Dive deep into our analyses! 📚",slug:"thematic-studies",children:{loveAndFriendship:{title:"Love and Friendship in Anime & Manga 💖",description:"Discover how love and friendship are portrayed across anime and manga. Delve into character relationships that resonate with heartwarming moments! ❤️",slug:"love-and-friendship",children:null},identityAndGrowth:{title:"Identity and Growth Themes in Anime & Manga 🌱",description:"Explore the themes of identity and personal growth in anime and manga. Learn how characters evolve through their journeys and struggles! 🌟",slug:"identity-and-growth",children:null},battleAndConflict:{title:"Battle and Conflict in Anime & Manga ⚔️",description:"Uncover the intricacies of battle and conflict in anime and manga narratives. Analyze epic confrontations and their impacts on character development! 🔥",slug:"battle-and-conflict",children:null},other:{title:"Other Themes in Anime & Manga 🌈",description:"Dive into various other themes found in anime and manga that enrich storytelling. Explore the diverse elements that make these mediums unique! 🌌",slug:"other-themes",children:null}}},mangaReviews:{title:"Explore Manga Reviews: Insights into Completed and Ongoing Series 📚",description:"Discover in-depth reviews and lists of completed and ongoing manga series that captivate readers. Join us for a vibrant exploration! 🌟",slug:"manga-reviews",children:{completedSeries:{title:"Completed Manga Series Reviews: Craftsmanship in Storytelling 🎨",description:"Dive into our comprehensive reviews of completed manga series that highlight artistic brilliance and storytelling mastery! 📖✨",slug:"completed-manga-series",children:null},ongoingSeries:{title:"Ongoing Manga Series: Fresh Chapters Await! 📅",description:"Stay updated with our reviews of ongoing manga series, featuring the latest chapters and developments that keep readers enthralled! 📰💫",slug:"ongoing-manga-series",children:null},bestMangaLists:{title:"Best Manga Lists: Top Picks for Every Fan! 🥇",description:"Explore curated lists of the best manga across genres, ensuring there's something to captivate every fan's heart! 📚❤️",slug:"best-manga-lists",children:null},other:{title:"Other Manga Insights: Beyond Reviews and Lists 🌌",description:"Discover fascinating articles and insights on various manga topics beyond reviews, enriching your manga experience! 🎉✨",slug:"other-manga-insights",children:null}}},animeReviews:{title:"Comprehensive Anime Reviews: Explore the Best and Classic Series! 🎌",description:"Dive into Otaxel's rich selection of anime reviews, from seasonal hits to timeless classics! Discover insights and analysis tailored for fans! 🌟",slug:"anime-reviews",children:{seasonalAnime:{title:"Seasonal Anime Reviews: Stay Updated on the Hottest Series! 🌸",description:"Immerse yourself in the latest seasonal anime reviews. Get insights on trending shows, characters, and themes that captivate audiences! 🎥",slug:"seasonal-anime",children:null},classicAnime:{title:"Classic Anime Reviews: Celebrating Timeless Masterpieces! 🎞️",description:"Explore reviews of classic anime that shaped the industry. Dive deep into storytelling, characters, and artistry that withstand the test of time! 📖",slug:"classic-anime",children:null},animeAdaptations:{title:"Anime Adaptations: Unpacking the Transition from Manga to Screen! 📺",description:"Discover reviews of anime adaptations from popular manga. Explore how stories translate from page to screen and what makes them shine! ✨",slug:"anime-adaptations",children:null},other:{title:"Other Anime Reviews: Unique Titles and Hidden Gems! 🌌",description:"Uncover reviews of lesser-known anime and unique titles. Spot hidden gems that deserve your attention and enrich your anime journey! 🌈",slug:"other-anime-reviews",children:null}}},artAndAnimation:{title:"Exploring Art and Animation in Anime & Manga 🎨✨",description:"Dive into the captivating realms of art and animation in the anime and manga universe. Discover techniques and styles that shape beloved characters! 🌟",slug:"art-and-animation",children:{characterDesign:{title:"The Art of Character Design in Anime & Manga 🎭🖌️",description:"Uncover the intricacies of character design in anime and manga. Learn how artistic choices influence personality and style. 🎨✨ Explore more!",slug:"character-design",children:null},animationTechniques:{title:"Innovative Animation Techniques in Anime & Manga 🍃💻",description:"Discover the innovative animation techniques that bring anime and manga to life. Explore the artistry behind stunning visuals and narratives. 🎥🎉",slug:"animation-techniques",children:null},illustrationStyles:{title:"Unique Illustration Styles in Anime & Manga 🎨📚",description:"Explore the unique illustration styles that define anime and manga. From whimsical to dark, discover how art shapes storytelling! ✍️🌌",slug:"illustration-styles",children:null},other:{title:"Miscellaneous Art and Animation Insights in Anime & Manga 🌈📖",description:"Delve into various insights on art and animation that don't fit other categories. Uncover hidden gems and learn more about this vibrant world! 🌟⚡",slug:"other-art-and-animation",children:null}}},culturalInsights:{title:"Explore Cultural Insights in Anime and Manga 🌸",description:"Dive deep into the rich cultural insights of anime and manga. Explore mythology, traditions, and their impact on Western culture 🏮.",slug:"cultural-insights-anime-manga",children:{mythologyAndFolklore:{title:"Mythology and Folklore in Anime and Manga 📖",description:"Uncover the fascinating mythology and folklore that inspire anime and manga stories. Discover ancient tales and modern adaptations! 🌌",slug:"mythology-folklore-anime-manga",children:null},japaneseTraditions:{title:"Japanese Traditions Reflected in Anime and Manga 🎎",description:"Experience the rich tapestry of Japanese traditions woven into anime and manga. Learn about festivals, customs, and cultural symbols! 🎏",slug:"japanese-traditions-anime-manga",children:null},impactOnWesternCulture:{title:"The Impact of Anime and Manga on Western Culture 🌍",description:"Examine how anime and manga have influenced Western culture. From animation to storytelling, see the cultural exchange in action! 🎨",slug:"impact-western-culture-anime-manga",children:null},other:{title:"Other Cultural Insights in Anime and Manga 🎭",description:"Explore diverse cultural themes and insights in anime and manga beyond the usual narratives. Discover hidden gems and perspectives! 🌟",slug:"other-cultural-insights-anime-manga",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="🎨📚🖌️✨",s=Object.keys(n),r=[],o=[];for(const e of s){const i=n[e];if(null==i?void 0:i.children){r.push(...Object.keys(i.children));for(const e of r){const n=i.children[e];(null==n?void 0:n.children)&&o.push(...Object.keys(n.children))}}}const l="2024-09-11T00:00:00Z",h="otaxel",d=`idn-${h}-dev`,c=`idn-${h}`;exports.DEFAULT_DESCRIPTION_EMOJIS=t,exports.authors=i,exports.authorsNames=a,exports.categories=s,exports.dataStructure=n,exports.devBucketName=d,exports.prodBucketName=c,exports.startDate=l,exports.subcategories=r,exports.subsubcategories=o;
@@ -0,0 +1,24 @@
1
+ export declare enum FiltersNames {
2
+ ArtisticAdventures = "Artistic Adventures",
3
+ GenreJourney = "Genre Journey",
4
+ StorytellingSpectrum = "Storytelling Spectrum",
5
+ FandomFeatures = "Fandom Features"
6
+ }
7
+ type ArtisticAdventuresValues = 'Illustration Techniques' | 'Character Design' | 'Visual Storytelling' | 'Manga Doodles';
8
+ type GenreJourneyValues = 'Shonen' | 'Shojo' | 'Seinen' | 'Isekai';
9
+ type StorytellingSpectrumValues = 'Character Development' | 'Plot Twists' | 'Thematic Elements' | 'Cultural Influences';
10
+ type FandomFeaturesValues = 'Fan Theories' | 'Cosplay Highlights' | 'Conventions & Events' | 'Merchandise Reviews';
11
+ export type ArticleFilters = {
12
+ [FiltersNames.ArtisticAdventures]: ArtisticAdventuresValues[];
13
+ [FiltersNames.GenreJourney]: GenreJourneyValues[];
14
+ [FiltersNames.StorytellingSpectrum]: StorytellingSpectrumValues[];
15
+ [FiltersNames.FandomFeatures]: FandomFeaturesValues[];
16
+ };
17
+ export declare const artisticAdventuresValues: ArtisticAdventuresValues[];
18
+ export declare const genreJourneyValues: GenreJourneyValues[];
19
+ export declare const storytellingSpectrumValues: StorytellingSpectrumValues[];
20
+ export declare const fandomFeaturesValues: FandomFeaturesValues[];
21
+ export declare const initialFilters: ArticleFilters;
22
+ export declare const fullFilters: ArticleFilters;
23
+ export declare const getFiltersTypesJSON: () => string;
24
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e;exports.FiltersNames=void 0,(e=exports.FiltersNames||(exports.FiltersNames={})).ArtisticAdventures="Artistic Adventures",e.GenreJourney="Genre Journey",e.StorytellingSpectrum="Storytelling Spectrum",e.FandomFeatures="Fandom Features";const t=["Illustration Techniques","Character Design","Visual Storytelling","Manga Doodles"],s=["Shonen","Shojo","Seinen","Isekai"],r=["Character Development","Plot Twists","Thematic Elements","Cultural Influences"],i=["Fan Theories","Cosplay Highlights","Conventions & Events","Merchandise Reviews"],n={[exports.FiltersNames.ArtisticAdventures]:[],[exports.FiltersNames.GenreJourney]:[],[exports.FiltersNames.StorytellingSpectrum]:[],[exports.FiltersNames.FandomFeatures]:[]},o={[exports.FiltersNames.ArtisticAdventures]:t,[exports.FiltersNames.GenreJourney]:s,[exports.FiltersNames.StorytellingSpectrum]:r,[exports.FiltersNames.FandomFeatures]:i},l=()=>JSON.stringify(o,null,2);exports.artisticAdventuresValues=t,exports.fandomFeaturesValues=i,exports.fullFilters=o,exports.genreJourneyValues=s,exports.getFiltersTypesJSON=l,exports.initialFilters=n,exports.storytellingSpectrumValues=r;
@@ -0,0 +1,3 @@
1
+ import { GetDefaultImagesFrontmatter } from 'src/common/types';
2
+ export declare const getDefaultImagesFrontmatter: GetDefaultImagesFrontmatter;
3
+ export declare const prohibitedWordsInAltTitle: RegExp;
@@ -0,0 +1 @@
1
+ "use strict";const e=(e,n)=>{const t=n(e),i=undefined,a=undefined,l=undefined,o=undefined;return[{alt:`${e} Introduction`,filename:`${t}-introduction.png`,title:`${e} Introduction`},{alt:`Magnificent ${e}`,filename:`Magnificent-${t}.png`,title:`Magnificent ${e}`},{alt:`Notable ${e}`,filename:`${t}-notable.png`,title:`Notable ${e}`},{alt:`${e} Summary`,filename:`${t}-summary.png`,title:`${e} Summary`}]},n=/\b(?:hands|men|women|human|people|chief|family|mixing|serving|tasting|rolling)\b/i;exports.getDefaultImagesFrontmatter=e,exports.prohibitedWordsInAltTitle=n;
@@ -0,0 +1,15 @@
1
+ export * from './data';
2
+ export * from './filters';
3
+ export * from './helpers';
4
+ export * from './prompts/images';
5
+ export * from './seo';
6
+ import './styles/colors.css';
7
+ import './styles/fonts.css';
8
+ import './styles/global.css';
9
+ import './styles/sizing.css';
10
+ import './styles/vars.css';
11
+ import './styles/theme.css';
12
+ import * as gpt35Articles from './prompts/gpt35turbo/articles';
13
+ import * as gpt4oMiniArticles from './prompts/gpt4oMini/articles';
14
+ export { gpt35Articles, gpt4oMiniArticles };
15
+ export * from './prompts/data';
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./data.js"),t=require("./filters.js"),r=require("./helpers.js"),s=require("./prompts/images.js"),o=require("./seo.js"),a=require("./prompts/gpt35turbo/articles.js"),p=require("./prompts/gpt4oMini/articles.js"),i=require("./prompts/data.js");exports.DEFAULT_DESCRIPTION_EMOJIS=e.DEFAULT_DESCRIPTION_EMOJIS,exports.authors=e.authors,exports.authorsNames=e.authorsNames,exports.categories=e.categories,exports.dataStructure=e.dataStructure,exports.devBucketName=e.devBucketName,exports.prodBucketName=e.prodBucketName,exports.startDate=e.startDate,exports.subcategories=e.subcategories,exports.subsubcategories=e.subsubcategories,Object.defineProperty(exports,"FiltersNames",{enumerable:!0,get:function(){return t.FiltersNames}}),exports.artisticAdventuresValues=t.artisticAdventuresValues,exports.fandomFeaturesValues=t.fandomFeaturesValues,exports.fullFilters=t.fullFilters,exports.genreJourneyValues=t.genreJourneyValues,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.initialFilters=t.initialFilters,exports.storytellingSpectrumValues=t.storytellingSpectrumValues,exports.getDefaultImagesFrontmatter=r.getDefaultImagesFrontmatter,exports.prohibitedWordsInAltTitle=r.prohibitedWordsInAltTitle,exports.getOpenAiBasedImagePrompt=s.getOpenAiBasedImagePrompt,exports.getOpenAiBasedImagePromptDalle2=s.getOpenAiBasedImagePromptDalle2,exports.getStableDiffusionImagePrompt=s.getStableDiffusionImagePrompt,exports.AUTHORS_INFO=o.AUTHORS_INFO,exports.AUTHORS_META=o.AUTHORS_META,exports.PAGES_SEO=o.PAGES_SEO,Object.defineProperty(exports,"PageNames",{enumerable:!0,get:function(){return o.PageNames}}),exports.gpt35Articles=a,exports.gpt4oMiniArticles=p,exports.END_STEP=i.END_STEP,exports.FILTERS_INFO=i.FILTERS_INFO,exports.IMAGES_PROHIBITED_WORDS=i.IMAGES_PROHIBITED_WORDS,exports.START_STEP=i.START_STEP,exports.TARGET_AUDIENCE=i.TARGET_AUDIENCE,exports.ZERO_SECTION=i.ZERO_SECTION,exports.portalInfo=i.portalInfo;
@@ -0,0 +1,7 @@
1
+ export declare const portalInfo = "The article is written for the web portal.I will give you important information regarding the web portal:\n - Brief description: Otaxel is a premier infotainment portal dedicated to exploring the vibrant world of anime and manga. It offers a treasure trove of articles, insights, and analyses tailored for fans and enthusiasts alike.\n - Detailed description: Otaxel serves as an expansive online platform where anime and manga aficionados can delve deep into their passions. The portal features a rich assortment of articles that cover various aspects of the anime and manga universe, including character analyses, thematic explorations, genre breakdowns, and reviews of popular series. Designed for both casual viewers and die-hard fans, Otaxel aims to create an engaging community around shared interests in storytelling, artistry, and culture. With user-friendly navigation and regularly updated content, Otaxel positions itself as a go-to resource for anyone eager to enrich their knowledge and appreciation of anime and manga.\n - Target audience: The primary audience for Otaxel includes anime and manga fans of all ages, from newcomers eager to learn about the basics to long-time enthusiasts seeking in-depth analysis and discussions. The portal also targets individuals interested in Japanese culture and storytelling, as well as those who wish to keep up with trends and developments in the anime and manga scene.\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 Analysis\n - Overview of Character Development\n - Key Relationships and Dynamics\n\n## Thematic Exploration\n - Central Themes and Messages\n - Cultural Context and Influences\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 Analysis, 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: Otaxel is a premier infotainment portal dedicated to exploring the vibrant world of anime and manga. It offers a treasure trove of articles, insights, and analyses tailored for fans and enthusiasts alike.\n - Detailed description: Otaxel serves as an expansive online platform where anime and manga aficionados can delve deep into their passions. The portal features a rich assortment of articles that cover various aspects of the anime and manga universe, including character analyses, thematic explorations, genre breakdowns, and reviews of popular series. Designed for both casual viewers and die-hard fans, Otaxel aims to create an engaging community around shared interests in storytelling, artistry, and culture. With user-friendly navigation and regularly updated content, Otaxel positions itself as a go-to resource for anyone eager to enrich their knowledge and appreciation of anime and manga.\n - Target audience: The primary audience for Otaxel includes anime and manga fans of all ages, from newcomers eager to learn about the basics to long-time enthusiasts seeking in-depth analysis and discussions. The portal also targets individuals interested in Japanese culture and storytelling, as well as those who wish to keep up with trends and developments in the anime and manga scene.\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 Analysis\n - Overview of Character Development\n - Key Relationships and Dynamics\n\n## Thematic Exploration\n - Central Themes and Messages\n - Cultural Context and Influences\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 Analysis, 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",s="any numbers, image, slug, step, seo, hand / hands, men, women, human, people, chief, preparing, process, cooking, mixing, serving, tasting, rolling",o=`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=o,exports.IMAGES_PROHIBITED_WORDS=s,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 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 the Otaxel Team | Expert Insights on Anime & Manga",description:"Discover the faces behind Otaxel! 🌟 Our passionate writers dive deep into the world of anime and manga to bring you the latest insights and reviews. Join us on this exciting journey! 🎉"},[exports.PageNames.Home]:{title:"Otaxel - Your Ultimate Destination for Anime & Manga Articles",description:"Welcome to Otaxel! 📚 Immerse yourself in the world of anime and manga with our expert articles, reviews, and trending news. Let's explore together! 🚀"},[exports.PageNames.NotFound]:{title:"404 Error | Page Not Found",description:"Oops! 😱 It looks like we've lost this page. Don't worry, there's plenty of anime and manga content waiting for you at Otaxel! 📖✨"},[exports.PageNames.AboutUs]:{title:"About Otaxel - Your Hub for Anime & Manga Enthusiasts",description:"Learn more about Otaxel! 🎨 Our mission is to celebrate anime and manga culture through engaging articles and community discussions. Join us today! 🌈"},[exports.PageNames.PrivacyPolicy]:{title:"Privacy Policy | Otaxel",description:"Your privacy matters! 🔒 Read our Privacy Policy to understand how Otaxel handles your information while you explore the best in anime and manga. 🌍"},[exports.PageNames.Terms]:{title:"Terms of Service | Otaxel",description:"Stay informed! 📜 Check out our Terms of Service to know your rights and responsibilities while enjoying the content at Otaxel. 🌟"},[exports.PageNames.Sitemap]:{title:"Sitemap | Explore Otaxel's Content",description:"Find your way around Otaxel! 🗺️ Our sitemap provides an overview of all our articles, making it easier for you to discover your favorite anime and manga topics! 🚀"}},i=[{name:"Arjun Mehta",description:"Arjun Mehta is a freelance writer and anime enthusiast based in Mumbai. With over five years of experience writing about anime and manga, he has contributed to various online platforms and magazines. His passion for storytelling and deep understanding of Japanese culture enables him to provide unique insights into the world of anime.",meta_title:"Arjun Mehta | Anime & Manga Contributor at Otaxel",meta_description:"Discover Arjun Mehta's insights into anime and manga. A seasoned writer with a passion for anime culture, he shares engaging articles on Otaxel."},{name:"Priya Nair",description:"Priya Nair is a dedicated manga artist and writer from Bengaluru. Equipped with her artistic background, she explores the storytelling aspect of anime and manga through her detailed articles. She has worked on several independent manga projects and is known for her analytical reviews and engaging content.",meta_title:"Priya Nair | Manga Artist & Writer at Otaxel",meta_description:"Join Priya Nair as she explores the artistic and narrative depths of manga and anime at Otaxel. A talented manga artist with insightful reviews."},{name:"Rohan Singh",description:"Rohan Singh is a passionate anime reviewer and blogger from Delhi. With a strong online presence, he has gained a loyal following through his engaging video reviews and blogs. He dives deep into various genres of anime, offering recommendations and analyses to fellow fans.",meta_title:"Rohan Singh | Anime Reviewer at Otaxel",meta_description:"Explore Rohan Singh's anime reviews and recommendations at Otaxel. An influential fan and blogger dedicated to sharing his love for anime."},{name:"Anjali Sharma",description:"Anjali Sharma, based in Pune, is an experienced writer focused on the cultural aspects of anime and manga. She often writes about the implications of storytelling in anime and how it resonates with audiences worldwide. Her academic background in cultural studies shapes her writings.",meta_title:"Anjali Sharma | Cultural Writer at Otaxel",meta_description:"Delve into Anjali Sharma's cultural explorations of anime and manga at Otaxel. An experienced writer uncovering insights on storytelling and impact."},{name:"Karan Verma",description:"Karan Verma is a talented content creator and SEO specialist from Hyderabad. With a background in digital marketing, Karan combines his expertise with his passion for anime, offering content that is both engaging and optimized for search engines.",meta_title:"Karan Verma | SEO Specialist & Anime Writer at Otaxel",meta_description:"Read Karan Verma's expertly crafted content on anime and manga at Otaxel. SEO specialist bringing engaging articles to the anime community."},{name:"Neha Desai",description:"Neha Desai is an award-winning journalist and anime critic from Ahmedabad. With numerous articles published in top magazines, she provides in-depth analyses and critical reviews of the latest anime. Her keen eye for detail and storytelling makes her articles compelling and informative.",meta_title:"Neha Desai | Anime Critic & Journalist at Otaxel",meta_description:"Uncover the latest trends and critical insights in anime with Neha Desai at Otaxel. Award-winning journalist dedicated to quality anime critique."},{name:"Vikram Rao",description:"Vikram Rao is a renowned graphic novelist and anime aficionado from Chennai. He leverages his artistic talents to discuss visual storytelling in anime and manga. His articles often blend personal insights with industry commentary, providing readers with a fresh perspective.",meta_title:"Vikram Rao | Graphic Novelist & Anime Aficionado at Otaxel",meta_description:"Explore visual storytelling with Vikram Rao at Otaxel. Graphic novelist sharing his passion for anime through unique insights and commentary."},{name:"Simran Kapoor",description:"Simran Kapoor is a popular YouTube creator and writer specializing in anime from Kolkata. With a channel dedicated to anime discussions, she translates her video content into engaging articles for Otaxel, appealing to both visual and reading audiences.",meta_title:"Simran Kapoor | YouTuber & Writer at Otaxel",meta_description:"Join Simran Kapoor as she shares her love for anime through articles and video discussions at Otaxel. A popular creator bridging multiple platforms."},{name:"Rajesh Malhotra",description:"Rajesh Malhotra is a seasoned writer and anime podcaster based in Chandigarh. His engaging discussions about anime themes, character development, and trends attract a wide audience. His expertise extends to creating articles that resonate with both casual fans and hardcore enthusiasts.",meta_title:"Rajesh Malhotra | Anime Podcaster & Writer at Otaxel",meta_description:"Tune into Rajesh Malhotra's insights on anime themes and trends at Otaxel. A seasoned podcaster bridging the gap between dialogue and writing."},{name:"Sonal Gupta",description:"Sonal Gupta is an anime cosplayer and blogger from Jaipur. With a background in performance arts, she writes captivating articles that blend her cosplay experiences with manga and anime reviews. Her unique approach brings a personal touch to her writing.",meta_title:"Sonal Gupta | Cosplayer & Anime Blogger at Otaxel",meta_description:"Experience anime through the eyes of Sonal Gupta at Otaxel. Cosplayer and blogger passionate about sharing her journey in the anime community."},{name:"Aarav Malhotra",description:"Aarav is a passionate anime and manga enthusiast hailing from Mumbai, India. With over five years of writing experience, he has contributed to numerous online platforms, analyzing and reviewing popular series alongside lesser-known gems. His deep understanding of both Japanese culture and storytelling techniques brings a unique perspective to his articles.",meta_title:"Aarav Malhotra - Anime & Manga Connoisseur at Otaxel",meta_description:"Explore the world of anime and manga through Aarav Malhotra's articles, blending cultural insights and critical reviews on Otaxel."},{name:"Meera Gupta",description:"Meera, based in New Delhi, is a cultural critic who specializes in the intersection of anime and social issues. With a Master’s in Comparative Literature, she has been writing for over six years, examining the impact of anime on contemporary Indian youth. Her thought-provoking pieces often engage with themes of identity and representation.",meta_title:"Meera Gupta - Cultural Critic & Anime Enthusiast at Otaxel",meta_description:"Delve into thought-provoking anime articles by Meera Gupta on Otaxel, offering unique insights into culture, identity, and representation."},{name:"Ravi Sharma",description:"Ravi is an anime artist and writer from Bengaluru with a decade of experience in the field. His articles are enriched by his artistic background, providing readers with visually engaging content alongside well-researched insights into animation techniques and storytelling in manga. He also runs a YouTube channel where he shares tutorials on anime drawing.",meta_title:"Ravi Sharma - Artist & Anime Writer at Otaxel",meta_description:"Join Ravi Sharma at Otaxel for insights on anime artistry, storytelling, and anime reviews that inspire both creators and fans alike."},{name:"Nisha Patel",description:"Nisha is a content creator from Ahmedabad who writes extensively about anime, manga, and otaku culture. With over four years of experience, she engages readers through her blog and social media channels. Nisha is known for her vibrant writing style that connects with fans and her ability to explain complex themes in an accessible manner.",meta_title:"Nisha Patel - Anime & Manga Writer at Otaxel",meta_description:"Discover engaging articles from Nisha Patel at Otaxel, where she connects otaku culture with insightful discussions on anime and manga."},{name:"Arjun Singh",description:"Arjun is a writer and anime reviewer from Chennai with a focus on shonen and seinen genres. Having been an avid fan since childhood, he brings both nostalgia and a critical eye to his reviews. His six years of experience have made him a recognized name in the community, earning him collaborations with several anime distributors in India.",meta_title:"Arjun Singh - Anime Reviewer & Writer at Otaxel",meta_description:"Enjoy comprehensive anime reviews by Arjun Singh at Otaxel, where nostalgia meets critical analysis of shonen and seinen titles."},{name:"Tanisha Reddy",description:"Tanisha is an anime and manga scholar based in Hyderabad, with a Master’s degree in Film Studies. She has been writing for over three years, focusing on the artistic and narrative structures in both mediums. Her scholarly approach provides a deeper understanding of the emotional and thematic layers in manga and anime narratives.",meta_title:"Tanisha Reddy - Anime & Manga Scholar at Otaxel",meta_description:"Explore scholarly insights on anime and manga from Tanisha Reddy at Otaxel, enriching your understanding of narrative and aesthetics."},{name:"Vikram Joshi",description:"Vikram is a freelance writer and anime lover from Kolkata, who blends his knowledge of literature with his passion for anime. His articles focus on the narrative and character development in various series. With five years of experience, he has built a reputation for providing in-depth analyses that resonate with fans.",meta_title:"Vikram Joshi - Literature & Anime Writer at Otaxel",meta_description:"Read Vikram Joshi's in-depth analyses on Otaxel, where literature meets anime, exploring character development and narrative intricacies."},{name:"Priya Verma",description:"Priya is a Bangalore-based writer and anime fan known for her engaging storytelling. She specializes in character-driven content in her articles, drawing parallels between manga characters and their real-life inspirations. With over seven years of writing experience, Priya connects meaning with entertainment, making her pieces both enjoyable and insightful.",meta_title:"Priya Verma - Storyteller & Anime Writer at Otaxel",meta_description:"Enjoy engaging storytelling and character analyses from Priya Verma at Otaxel, where she bridges the gap between anime and real life."},{name:"Karan Shah",description:"Karan is a self-proclaimed otaku and avid manga reader from Pune. He has been writing about anime and manga for over four years, focusing on recommendations and reviews for international titles. Karan's energetic writing style draws in readers, making it easy for them to discover new content without feeling overwhelmed.",meta_title:"Karan Shah - Manga Aficionado & Writer at Otaxel",meta_description:"Discover exciting manga recommendations and reviews from Karan Shah at Otaxel, where enthusiasm meets informed insights for every otaku."},{name:"Riya Sen",description:"Riya is a professional blogger and anime enthusiast residing in Jaipur. With a background in communications, she utilizes her skills to create engaging and informative content about anime genres, upcoming titles, and fan culture. Her three years in the industry have gained her a substantial following among anime fans.",meta_title:"Riya Sen - Anime Blogger & Advisor at Otaxel",meta_description:"Connect with Riya Sen at Otaxel for engaging blogs on anime genres, fan culture, and upcoming titles that speak to every anime lover."},{name:"Rajesh Kumar",description:"Rajesh Kumar is a seasoned writer and anime enthusiast hailing from Mumbai. With over a decade of experience in the anime and manga sphere, he has contributed articles to renowned publications and websites. His expertise lies in character analysis and thematic exploration, making him a valuable voice in the Otaxel community.",meta_title:"Rajesh Kumar - Anime & Manga Writer for Otaxel",meta_description:"Explore the profound insights of Rajesh Kumar, a veteran anime and manga writer with over 10 years of experience. Discover character analyses and thematic explorations on Otaxel."},{name:"Tanvi Sharma",description:"Tanvi Sharma, an anime and manga critic based in New Delhi, has a passion for storytelling and artistry. With a background in literature, she writes engaging reviews and opinion pieces. Her unique perspective contributes to a richer understanding of anime culture at Otaxel.",meta_title:"Tanvi Sharma - Anime & Manga Critic at Otaxel",meta_description:"Dive into the captivating world of anime and manga with Tanvi Sharma, a literature enthusiast and critic publishing insightful reviews on Otaxel."},{name:"Vikram Singh",description:"Vikram Singh is an anime blogger from Bengaluru with a flair for creative storytelling. He has been involved in various anime communities and podcasts, and now shares his vibrant takes and recommendations on Otaxel, bridging the gap between traditional storytelling and modern anime culture.",meta_title:"Vikram Singh - Creative Anime Blogger for Otaxel",meta_description:"Join Vikram Singh as he explores the vibrant world of anime and storytelling on Otaxel, offering fresh takes and engaging recommendations."},{name:"Aditi Mehta",description:"Aditi Mehta is a manga artist and writer from Chennai, blending her creative arts background with critical analysis. She contributes insightful articles about manga trends and art styles to Otaxel, captivating readers with her artistic perspective.",meta_title:"Aditi Mehta - Manga Artist & Writer for Otaxel",meta_description:"Discover manga trends and artistic insights with Aditi Mehta, a talented artist and writer sharing her passion for manga culture at Otaxel."},{name:"Sandeep Verma",description:"Sandeep Verma, a long-time anime fan and freelance writer from Kolkata, specializes in reviews and recommendations. With years of experience, he offers informative and engaging content that resonates with Otaxel readers seeking their next favorite series.",meta_title:"Sandeep Verma - Anime Reviewer for Otaxel",meta_description:"Find your next favorite anime with Sandeep Verma, a knowledgeable reviewer with extensive experience contributing engaging content to Otaxel."},{name:"Rekha Nair",description:"Rekha Nair, based in Hyderabad, is an anime researcher and writer who dives deep into the cultural implications of anime and manga. Through her well-researched articles, she provides thought-provoking content on Otaxel that enhances understanding of anime's global impact.",meta_title:"Rekha Nair - Cultural Analyst & Writer at Otaxel",meta_description:"Explore the cultural depth of anime and manga with Rekha Nair, an insightful researcher and writer contributing to Otaxel's rich content."},{name:"Ankit Reddy",description:"Ankit Reddy is an avid anime cosplayer and writer from Pune. He combines his love for cosplay with his writing by sharing tips, event experiences, and anime news on Otaxel, bridging communities and sparking creativity among fans.",meta_title:"Ankit Reddy - Cosplay Writer for Otaxel",meta_description:"Join Ankit Reddy as he blends his passion for cosplay with insightful writing on Anime and Manga news at Otaxel, fueling creativity and community."},{name:"Priya Joshi",description:"Priya Joshi is a talented content creator and anime enthusiast from Ahmedabad. She brings her writing skills and fresh perspectives to Otaxel, exploring both new releases and classic series, helping readers navigate the expansive world of anime.",meta_title:"Priya Joshi - Content Creator for Otaxel",meta_description:"Navigate the expansive world of anime and manga with Priya Joshi, a creative content creator offering fresh insights on Otaxel."},{name:"Neha Bansal",description:"Neha Bansal is an aspiring writer based in Chandigarh who specializes in anime fandom and community dynamics. Her engaging articles on Otaxel encourage discussions and foster connections among fans.",meta_title:"Neha Bansal - Anime Fandom Writer for Otaxel",meta_description:"Join Neha Bansal on Otaxel as she explores anime fandom and community dynamics, sparking conversations and connections among fans."},{name:"Rahul Patel",description:"Rahul Patel, an online content strategist from Surat, combines his marketing skills with his love for anime. He provides impactful articles on trending topics and emerging anime genres on Otaxel, guiding fans in their viewing journeys.",meta_title:"Rahul Patel - Strategic Writer for Otaxel",meta_description:"Discover trending anime topics with Rahul Patel on Otaxel, where marketing strategy meets passion for anime in impactful articles."},{name:"Priya Sharma",description:"Priya Sharma is a seasoned anime and manga enthusiast based in Mumbai. With over 5 years of experience in writing engaging articles on Japanese pop culture, she contributes her unique insights to various online platforms, including her own blog. Priya's specialty lies in exploring the thematic elements of anime and detailing the artistry involved in manga creation.",meta_title:"Priya Sharma - Anime and Manga Writer at Otaxel",meta_description:"Explore insightful articles by Priya Sharma, a dedicated anime and manga enthusiast with 5+ years of experience writing about Japanese pop culture on Otaxel."},{name:"Arjun Reddy",description:"Based in Bangalore, Arjun Reddy is a passionate writer and comic artist with a background in graphic design. He has been active in the anime community for over a decade, providing in-depth reviews and critiques of both mainstream and indie works. His analytical approach brings fresh perspectives to the Otaxel portal.",meta_title:"Arjun Reddy - Anime and Manga Expert at Otaxel",meta_description:"Read thought-provoking articles by Arjun Reddy, a passionate writer and comic artist, sharing his decade-long insights on anime and manga on Otaxel."},{name:"Nisha Kapoor",description:"Nisha Kapoor has a master's degree in Japanese studies and a deep love for anime and manga. With over 8 years of experience, she offers a scholarly approach to her writings, emphasizing cultural contexts and historical backgrounds. Nisha's work on Otaxel aims to bridge the gap between Western audiences and Japanese media.",meta_title:"Nisha Kapoor - Cultural Insights on Anime and Manga at Otaxel",meta_description:"Discover the cultural depths of anime and manga with Nisha Kapoor, an expert writer on Otaxel, bringing 8 years of scholarly experience to her articles."},{name:"Rajesh Mehta",description:"Rajesh Mehta is a tech enthusiast and an avid anime fan from Delhi. Combining his background in technology with his passion for storytelling in anime, he specializes in writing articles that focus on the technological aspects of anime production. His content on Otaxel is both informative and entertaining.",meta_title:"Rajesh Mehta - Tech and Anime Writer at Otaxel",meta_description:"Join Rajesh Mehta on Otaxel as he explores the intersection of technology and anime, with engaging articles based on his rich background in tech and storytelling."},{name:"Sonia Verma",description:"Sonia Verma is a freelance writer and illustrator living in Kolkata. With a vibrant online following, she focuses on anime character design and various artistic trends in manga. Her passion shines through her writing on Otaxel, where she combines artistry and storytelling in her pieces.",meta_title:"Sonia Verma - Artistic Insights on Anime and Manga at Otaxel",meta_description:"Delve into the world of anime character design with Sonia Verma on Otaxel, where her artistic insights spark inspiration among fellow manga lovers."},{name:"Tarun Joshi",description:"Tarun Joshi hails from Pune and is a dedicated anime historian and manga collector. With over 6 years of writing experience, he specializes in analytics and reviews, tracing the evolution of anime and manga through the years. His comprehensive articles on Otaxel are a treasure trove for enthusiasts.",meta_title:"Tarun Joshi - Anime Historian and Writer at Otaxel",meta_description:"Take a journey through anime history with Tarun Joshi on Otaxel, where his 6+ years of passion and expertise in manga and anime shine in every article."},{name:"Kavya Thakur",description:"Kavya Thakur, a literature graduate from Delhi, has a flair for writing about narrative structures in anime and manga. She combines her academic skills with her love for storytelling, contributing her refined analyses and interpretations to Otaxel. Kavya's articles invite readers to look beyond the surface of their favorite series.",meta_title:"Kavya Thakur - Narrative Analysis Writer at Otaxel",meta_description:"Explore deeper narratives in anime and manga through Kavya Thakur's insightful articles at Otaxel, blending academic prowess with a passion for storytelling."},{name:"Vikram Sethi",description:"Vikram Sethi is a lifelong otaku based in Chennai, known for his fervent dedication to anime culture. With years of experience in writing engaging articles and reviews, he has contributed to major platforms about the latest trends and happenings in the anime world. His contributions to Otaxel keep readers informed and entertained.",meta_title:"Vikram Sethi - Anime Trend Writer at Otaxel",meta_description:"Stay updated with the latest anime trends through Vikram Sethi’s engaging articles on Otaxel, a devoted otaku with a wealth of writing experience."},{name:"Meera Nair",description:"Meera Nair is a creative writer and immense anime lover from Ahmedabad. Her background in creative writing allows her to curate imaginative themes and narratives related to various anime and genres. Her articles on Otaxel captivate and inspire readers with their literary flair.",meta_title:"Meera Nair - Creative Writer at Otaxel",meta_description:"Discover imaginative themes in anime with Meera Nair's captivating articles at Otaxel, where her creative writing expertise shines through her work."},{name:"Rahul Bansal",description:"Rahul Bansal is a passionate anime and manga reviewer based in Hyderabad. With over 4 years of experience in critiquing various series, he provides fresh perspectives and critical insights to Otaxel, helping readers navigate their anime journey with in-depth analyses.",meta_title:"Rahul Bansal - Anime and Manga Reviewer at Otaxel",meta_description:"Navigate your anime journey with Rahul Bansal’s in-depth reviews and analyses at Otaxel, bringing over 4 years of experience to the table."},{name:"Kenshin Nakamura",description:"Kenshin Nakamura is a Japanese author and anime aficionado based in Tokyo. With over a decade of experience in the anime industry, Kenshin contributes insightful articles on new releases and classic shows. His keen analytical skills make his reviews both engaging and informative. He also enjoys exploring the cultural significance of anime and its global impact.",meta_title:"Kenshin Nakamura - Anime Expert at Otaxel",meta_description:"Explore the world of anime with Kenshin Nakamura, a seasoned author from Japan. Discover in-depth articles, reviews, and cultural insights on your favorite anime and manga."},{name:"Maria Lopez",description:"Maria Lopez is a passionate anime fan and writer from Mexico City. With an extensive background in literature and cultural studies, she brings a unique perspective to Otaxel. Maria loves connecting themes in anime with real-world issues, making her articles both relatable and thought-provoking.",meta_title:"Maria Lopez - Cultural Analyst at Otaxel",meta_description:"Join Maria Lopez on Otaxel for articles that bridge the gap between anime and real-world themes, enriching your experience with cultural insights and narratives."},{name:"James Thompson",description:"James Thompson is a British journalist and manga expert based in London. With a background in comics and storytelling, he delves into the storytelling techniques and artwork of various manga series. His articles are characterized by sharp critique and a deep love for the medium.",meta_title:"James Thompson - Manga Critic at Otaxel",meta_description:"Read the engaging articles of James Thompson, a manga expert at Otaxel. Discover in-depth critiques and explorations of narrative art in the manga world."},{name:"Anika Sharma",description:"Anika Sharma is an anime enthusiast and writer from India. With a knack for engaging storytelling, she shares her passion for both mainstream and indie anime. Her creative insights focus on character development and thematic explorations, making her pieces a must-read for anime lovers.",meta_title:"Anika Sharma - Storyteller at Otaxel",meta_description:"Discover the vibrant world of anime through the eyes of Anika Sharma. Her engaging articles at Otaxel focus on storytelling and character development."},{name:"Liam O'Sullivan",description:"Liam O'Sullivan, hailing from Dublin, Ireland, is a dedicated manga reviewer and content creator. His extensive knowledge of different genres allows him to provide detailed analyses and recommendations, perfect for both casual fans and seasoned enthusiasts.",meta_title:"Liam O'Sullivan - Manga Reviewer at Otaxel",meta_description:"Join Liam O'Sullivan at Otaxel for expert manga reviews and recommendations. Discover captivating stories with his insightful analyses."},{name:"Hana Chen",description:"Hana Chen is an anime and manga journalist from Shanghai, China. She focuses on the intersection of anime and technology, exploring how digital platforms are changing the way creators share their work. Her analytical mind and professional experience make her insights invaluable.",meta_title:"Hana Chen - Tech & Anime Writer at Otaxel",meta_description:"Explore the evolving landscape of anime and technology with Hana Chen at Otaxel. Discover unique insights into how creators engage with their audiences."},{name:"Carlos Silva",description:"Carlos Silva is a Brazilian anime and manga enthusiast with a background in film studies. His passion for storytelling and aesthetics allows him to provide a cinematic perspective in his writings, making connections between visual narratives and audience impact.",meta_title:"Carlos Silva - Cinematic Writer at Otaxel",meta_description:"Dive into the cinematic world of anime and manga with Carlos Silva at Otaxel. Explore the visual narratives and their impact on storytelling."},{name:"Ava Johnson",description:"Ava Johnson is a Canadian writer and manga artist who contributes to Otaxel with a unique blend of artistic critique and storytelling. With experience in comic creation, her articles delve into art styles, character designs, and narrative techniques that resonate with fans and creators alike.",meta_title:"Ava Johnson - Artist & Writer at Otaxel",meta_description:"Discover the artistic side of anime and manga with Ava Johnson. Her insightful articles at Otaxel cover art styles and narrative techniques in the industry."},{name:"Omar Makhdoom",description:"Omar Makhdoom is a Pakistani anime critic and content creator with an extensive knowledge of the genre. His engaging writing style and humor attract a diverse readership. Omar also passionately advocates for representation within anime, offering a unique view of its development and audience relations.",meta_title:"Omar Makhdoom - Anime Advocate at Otaxel",meta_description:"Join Omar Makhdoom at Otaxel as he discusses anime with humor and heart. Explore representation and stories that resonate with global audiences."},{name:"Freya Nilsson",description:"Freya Nilsson is a Swedish writer with an adventurous spirit, who travels the world collecting stories related to anime and manga. She excels at cultural comparisons and how anime influences various societies, making her writing both informative and entertaining.",meta_title:"Freya Nilsson - Cultural Explorer at Otaxel",meta_description:"Explore the global influence of anime with Freya Nilsson at Otaxel. Her unique cultural comparisons bring a fresh perspective to anime and manga narratives."},{name:"Hinata Yamamoto",description:"Hinata is a Japanese anime and manga enthusiast with over 10 years of experience in writing reviews and analyses. Her passion for storytelling transcends borders, bringing a deep appreciation for both classic and contemporary works. Hinata writes for various online platforms and aims to connect with fans worldwide.",meta_title:"Hinata Yamamoto - Anime & Manga Writer for Otaxel",meta_description:"Discover the insights and passion of Hinata Yamamoto, a seasoned writer on anime and manga. Explore her engaging articles at Otaxel!"},{name:"Lucas Smith",description:"A Canadian cultural studies graduate, Lucas dives deep into the socio-political implications of anime and manga. With several published works and a thriving online presence, he shares his perspective on how these mediums reflect contemporary societal issues through his writing.",meta_title:"Lucas Smith - Anime & Manga Cultural Critic at Otaxel",meta_description:"Join Lucas Smith as he explores the intersection of culture and anime at Otaxel. Read his compelling articles today!"},{name:"Aisha Khan",description:"An avid anime fan from Pakistan, Aisha has embraced the world of anime and manga since childhood. With experience in editing and content creation, she brings fresh reviews and character analysis that resonate with a diverse audience, making her an integral part of the Otaxel team.",meta_title:"Aisha Khan - Contributor at Otaxel on Anime & Manga",meta_description:"Explore the vibrant world of anime with Aisha Khan's engaging articles at Otaxel, where she shares her unique insights!"},{name:"Miguel Guerrero",description:"Hailing from Spain, Miguel combines his background in literature and film studies to bridge the gap between written storytelling and visual narratives in anime and manga. His articles offer in-depth thought-provoking analyses that challenge conventional views and entertain.",meta_title:"Miguel Guerrero - Anime & Manga Writer for Otaxel",meta_description:"Dive into Miguel Guerrero's insightful analyses of anime and manga at Otaxel. Discover new perspectives today!"},{name:"Sofia Ivanov",description:"Based in Russia, Sofia has been an anime and manga reviewer for over 5 years. An inveterate fan of fantasy genres, her writings often explore the enchanting worlds created by artists. She strives to introduce global readers to the myriad tales of Japanese art.",meta_title:"Sofia Ivanov - Anime & Manga Enthusiast at Otaxel",meta_description:"Get lost in the enchanting worlds of anime with Sofia Ivanov's compelling articles at Otaxel. Explore her reviews!"},{name:"Nadia Choudhury",description:"Nadia is a young author from India with a passion for anime and manga. Her blog posts and articles help bridge Eastern and Western cultures, providing readers with a unique perspective on trending series and classic titles alike. Her youthful energy captivates readers.",meta_title:"Nadia Choudhury - Emerging Anime & Manga Writer at Otaxel",meta_description:"Follow Nadia Choudhury's journey through the vibrant world of anime and manga at Otaxel. Enjoy her fresh takes!"},{name:"Chloe Wang",description:"Chloe, originally from China, has resided in multiple countries and has been impacted by different anime and manga styles throughout her life. As a content creator, she writes articles that focus on cultural comparisons and storytelling techniques within the anime industry.",meta_title:"Chloe Wang - Cultural Insights on Anime & Manga at Otaxel",meta_description:"Explore cultural patterns in anime and manga with Chloe Wang's insightful articles at Otaxel. Join her journey!"},{name:"Omar Al-Sayed",description:"A writer and anime fan from Egypt, Omar specializes in character development and world-building in anime and manga. His articles frequently analyze character arcs and thematic depth, making him an essential contributor to Otaxel's analytical pieces.",meta_title:"Omar Al-Sayed - Character Analyst for Anime & Manga at Otaxel",meta_description:"Dive deep into character development with Omar Al-Sayed's analytical articles on anime and manga at Otaxel!"},{name:"Elena Rossi",description:"Elena is an Italian language teacher who uses her knowledge of linguistics to analyze dialogues and scripts in anime. Her unique angle helps readers appreciate the intricacies of language and cultural nuances present in their favorite shows and mangas.",meta_title:"Elena Rossi - Linguistic Insights on Anime & Manga at Otaxel",meta_description:"Discover Elena Rossi's linguistic analyses of anime and manga dialogues at Otaxel. Enhance your understanding!"}],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:#272727;--theme-color-8:#585858;--theme-color-7:#8e8e8e;--theme-color-6:#b1b1b1;--theme-color-5:#d7d7d7;--theme-color-3:#e3e3e3;--theme-color-2:#f0f0f0;--color-bg-layout:#ffffff;--color-bg-hover:#e0e0e0;--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.248",
3
+ "version": "1.3.250",
4
4
  "description": "Package for config files and reusable code/components between projects",
5
5
  "main": "dist/index.js",
6
6
  "files": [