tedo-publisher 1.3.242 → 1.3.244

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. package/dist/luminousrendezvous/data.d.ts +273 -0
  2. package/dist/luminousrendezvous/data.js +1 -0
  3. package/dist/luminousrendezvous/filters.d.ts +24 -0
  4. package/dist/luminousrendezvous/filters.js +1 -0
  5. package/dist/luminousrendezvous/helpers.d.ts +3 -0
  6. package/dist/luminousrendezvous/helpers.js +1 -0
  7. package/dist/luminousrendezvous/index.d.ts +15 -0
  8. package/dist/luminousrendezvous/index.js +1 -0
  9. package/dist/luminousrendezvous/prompts/data.d.ts +7 -0
  10. package/dist/luminousrendezvous/prompts/data.js +1 -0
  11. package/dist/luminousrendezvous/prompts/gpt35turbo/articles.d.ts +6 -0
  12. package/dist/luminousrendezvous/prompts/gpt35turbo/articles.js +1 -0
  13. package/dist/luminousrendezvous/prompts/gpt4oMini/articles.d.ts +6 -0
  14. package/dist/luminousrendezvous/prompts/gpt4oMini/articles.js +1 -0
  15. package/dist/luminousrendezvous/prompts/images.d.ts +4 -0
  16. package/dist/luminousrendezvous/prompts/images.js +1 -0
  17. package/dist/luminousrendezvous/seo.d.ts +23 -0
  18. package/dist/luminousrendezvous/seo.js +1 -0
  19. package/dist/luminousrendezvous/styles/colors.css +1 -0
  20. package/dist/luminousrendezvous/styles/fonts.css +1 -0
  21. package/dist/luminousrendezvous/styles/global.css +1 -0
  22. package/dist/luminousrendezvous/styles/sizing.css +1 -0
  23. package/dist/luminousrendezvous/styles/theme.css +1 -0
  24. package/dist/luminousrendezvous/styles/vars.css +1 -0
  25. package/dist/stylishventure/data.d.ts +200 -0
  26. package/dist/stylishventure/data.js +1 -0
  27. package/dist/stylishventure/filters.d.ts +28 -0
  28. package/dist/stylishventure/filters.js +1 -0
  29. package/dist/stylishventure/helpers.d.ts +3 -0
  30. package/dist/stylishventure/helpers.js +1 -0
  31. package/dist/stylishventure/index.d.ts +15 -0
  32. package/dist/stylishventure/index.js +1 -0
  33. package/dist/stylishventure/prompts/data.d.ts +7 -0
  34. package/dist/stylishventure/prompts/data.js +1 -0
  35. package/dist/stylishventure/prompts/gpt35turbo/articles.d.ts +6 -0
  36. package/dist/stylishventure/prompts/gpt35turbo/articles.js +1 -0
  37. package/dist/stylishventure/prompts/gpt4oMini/articles.d.ts +6 -0
  38. package/dist/stylishventure/prompts/gpt4oMini/articles.js +1 -0
  39. package/dist/stylishventure/prompts/images.d.ts +4 -0
  40. package/dist/stylishventure/prompts/images.js +1 -0
  41. package/dist/stylishventure/seo.d.ts +23 -0
  42. package/dist/stylishventure/seo.js +1 -0
  43. package/dist/stylishventure/styles/colors.css +1 -0
  44. package/dist/stylishventure/styles/fonts.css +1 -0
  45. package/dist/stylishventure/styles/global.css +1 -0
  46. package/dist/stylishventure/styles/sizing.css +1 -0
  47. package/dist/stylishventure/styles/theme.css +1 -0
  48. package/dist/stylishventure/styles/vars.css +1 -0
  49. package/dist/thestylebloom/data.d.ts +1 -1
  50. package/dist/thevivaglow/data.d.ts +1 -1
  51. package/package.json +1 -1
@@ -0,0 +1,273 @@
1
+ export declare const dataStructure: {
2
+ fashionTrends: {
3
+ title: string;
4
+ description: string;
5
+ slug: string;
6
+ children: {
7
+ seasonalStyles: {
8
+ title: string;
9
+ description: string;
10
+ slug: string;
11
+ children: null;
12
+ };
13
+ streetFashion: {
14
+ title: string;
15
+ description: string;
16
+ slug: string;
17
+ children: null;
18
+ };
19
+ highFashion: {
20
+ title: string;
21
+ description: string;
22
+ slug: string;
23
+ children: null;
24
+ };
25
+ sustainableFashion: {
26
+ title: string;
27
+ description: string;
28
+ slug: string;
29
+ children: null;
30
+ };
31
+ other: {
32
+ title: string;
33
+ description: string;
34
+ slug: string;
35
+ children: null;
36
+ };
37
+ };
38
+ };
39
+ beautyTips: {
40
+ title: string;
41
+ description: string;
42
+ slug: string;
43
+ children: {
44
+ makeupTutorials: {
45
+ title: string;
46
+ description: string;
47
+ slug: string;
48
+ children: null;
49
+ };
50
+ skincareRoutines: {
51
+ title: string;
52
+ description: string;
53
+ slug: string;
54
+ children: null;
55
+ };
56
+ hairCare: {
57
+ title: string;
58
+ description: string;
59
+ slug: string;
60
+ children: null;
61
+ };
62
+ bodyCare: {
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
+ personalStyle: {
77
+ title: string;
78
+ description: string;
79
+ slug: string;
80
+ children: {
81
+ wardrobeEssentials: {
82
+ title: string;
83
+ description: string;
84
+ slug: string;
85
+ children: null;
86
+ };
87
+ occasionalOutfits: {
88
+ title: string;
89
+ description: string;
90
+ slug: string;
91
+ children: null;
92
+ };
93
+ accessorizing: {
94
+ title: string;
95
+ description: string;
96
+ slug: string;
97
+ children: null;
98
+ };
99
+ colorTheory: {
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
+ bodyPositivity: {
114
+ title: string;
115
+ description: string;
116
+ slug: string;
117
+ children: {
118
+ confidenceBuilding: {
119
+ title: string;
120
+ description: string;
121
+ slug: string;
122
+ children: null;
123
+ };
124
+ inclusiveFashion: {
125
+ title: string;
126
+ description: string;
127
+ slug: string;
128
+ children: null;
129
+ };
130
+ variousSizes: {
131
+ title: string;
132
+ description: string;
133
+ slug: string;
134
+ children: null;
135
+ };
136
+ embracingDiversity: {
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
+ trendyAccessories: {
151
+ title: string;
152
+ description: string;
153
+ slug: string;
154
+ children: {
155
+ handbags: {
156
+ title: string;
157
+ description: string;
158
+ slug: string;
159
+ children: null;
160
+ };
161
+ jewelry: {
162
+ title: string;
163
+ description: string;
164
+ slug: string;
165
+ children: null;
166
+ };
167
+ footwear: {
168
+ title: string;
169
+ description: string;
170
+ slug: string;
171
+ children: null;
172
+ };
173
+ scarvesAndWraps: {
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
+ makeupBrands: {
188
+ title: string;
189
+ description: string;
190
+ slug: string;
191
+ children: {
192
+ luxuryBrands: {
193
+ title: string;
194
+ description: string;
195
+ slug: string;
196
+ children: null;
197
+ };
198
+ drugstoreBrands: {
199
+ title: string;
200
+ description: string;
201
+ slug: string;
202
+ children: null;
203
+ };
204
+ crueltyFreeBrands: {
205
+ title: string;
206
+ description: string;
207
+ slug: string;
208
+ children: null;
209
+ };
210
+ naturalMakeup: {
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
+ fashionEvents: {
225
+ title: string;
226
+ description: string;
227
+ slug: string;
228
+ children: {
229
+ fashionWeeks: {
230
+ title: string;
231
+ description: string;
232
+ slug: string;
233
+ children: null;
234
+ };
235
+ tradeshowHighlights: {
236
+ title: string;
237
+ description: string;
238
+ slug: string;
239
+ children: null;
240
+ };
241
+ styleAwards: {
242
+ title: string;
243
+ description: string;
244
+ slug: string;
245
+ children: null;
246
+ };
247
+ regionalEvents: {
248
+ title: string;
249
+ description: string;
250
+ slug: string;
251
+ children: null;
252
+ };
253
+ other: {
254
+ title: string;
255
+ description: string;
256
+ slug: string;
257
+ children: null;
258
+ };
259
+ };
260
+ };
261
+ };
262
+ export declare const authors: Record<string, string>;
263
+ export declare const authorsNames: string[];
264
+ export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83D\uDC84\uD83D\uDC57\u2728\uD83C\uDF38";
265
+ export declare const categories: ("fashionTrends" | "beautyTips" | "bodyPositivity" | "personalStyle" | "trendyAccessories" | "makeupBrands" | "fashionEvents")[];
266
+ export declare const subcategories: string[];
267
+ export declare const subsubcategories: string[];
268
+ export type Category = keyof typeof dataStructure;
269
+ export type CategoryNode = (typeof dataStructure)[Category];
270
+ export type SubcategoryKeyByCategory<T extends Category> = (typeof dataStructure)[T]['children'];
271
+ export declare const startDate = "2024-09-10T00:00:00Z";
272
+ export declare const devBucketName = "idn-luminousrendezvous-dev";
273
+ export declare const prodBucketName = "idn-luminousrendezvous";
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./seo.js");const t={fashionTrends:{title:"Discover the Latest Fashion Trends for Women 🌟",description:"Explore the vibrant world of women's fashion trends at LuminousRendezvous! Get inspired by seasonal styles, street fashion, high fashion, and more. 👗✨",slug:"fashion-trends",children:{seasonalStyles:{title:"Embrace Seasonal Styles: Fashion Must-Haves 🍂",description:"Unveil your style with seasonal trends! From winter warmth to summer vibes, find stylish outfits that resonate with the season. 🌼❄️",slug:"seasonal-styles",children:null},streetFashion:{title:"Street Fashion Trends: Where Style Meets Reality 🚶‍♀️",description:"Dive into the edge of street fashion! Discover how to incorporate urban aesthetics into your wardrobe for a chic everyday look. 🎨👟",slug:"street-fashion",children:null},highFashion:{title:"High Fashion Insights: Glamour & Elegance 💃",description:"Step into the realm of high fashion! Explore opulent designs and runway trends that redefine elegance for modern women. 👠✨",slug:"high-fashion",children:null},sustainableFashion:{title:"Sustainable Fashion: Stylish Choices for a Greener Future 🌱",description:"Rediscover fashion with sustainability in mind! Learn how to make eco-friendly choices without sacrificing style or taste. 🌍♻️",slug:"sustainable-fashion",children:null},other:{title:"Other Fashion Trends: Unique Styles and Inspirations 🌈",description:"Explore a mix of fashion trends that don’t fit the mold. Get inspired by unique styles and creative outfits tailored for every personality! 🎭👗",slug:"other-fashion-trends",children:null}}},beautyTips:{title:"Explore Engaging Beauty Tips for Every Woman 🌟",description:"Discover insightful beauty tips, trends, and tutorials that empower women to enhance their beauty and personal style every day! 💄✨",slug:"beauty-tips",children:{makeupTutorials:{title:"Makeup Tutorials for Flawless Looks 💋",description:"Dive into easy-to-follow makeup tutorials, enhancing your beauty skills with tips for every occasion and style. Get your glam on! 🎨💖",slug:"makeup-tutorials",children:null},skincareRoutines:{title:"Skincare Routines for Radiant Skin 🌸",description:"Unlock the secrets to glowing skin with our comprehensive skincare routines, tailored for different skin types and concerns. Pamper yourself! 🍃✨",slug:"skincare-routines",children:null},hairCare:{title:"Hair Care Tips for Gorgeous Locks 💁‍♀️",description:"Transform your hair with expert hair care tips! Discover techniques, products, and routines for vibrant and healthy hair. Let your hair shine! 🌟💇‍♀️",slug:"hair-care",children:null},bodyCare:{title:"Body Care Essentials for All Women 🛁",description:"Elevate your self-care with our body care essentials! Find tips and routines that leave your skin feeling fresh, smooth, and rejuvenated. 🧴💖",slug:"body-care",children:null},other:{title:"Other Beauty Tips and Tricks 💡",description:"Explore a variety of beauty tips, tricks, and hacks that don't fit into traditional categories. Enhance your beauty routine with unique ideas! 🎉✨",slug:"other-beauty-tips",children:null}}},personalStyle:{title:"Personal Style Tips for Women | Fashion & Beauty 🌟",description:"Explore personal style tips that enhance fashion and beauty for women. Discover wardrobe essentials, outfit ideas, and more! ✨",slug:"personal-style-tips-women",children:{wardrobeEssentials:{title:"Wardrobe Essentials for Every Woman's Closet 👗",description:"Uncover the must-have wardrobe essentials that every woman should own to create stylish outfits effortlessly. Elevate your personal style! 👜",slug:"wardrobe-essentials",children:null},occasionalOutfits:{title:"Ultimate Guide to Occasional Outfits for Every Event 🎉",description:"Find the perfect occasional outfits for any event, from casual gatherings to formal celebrations. Dress to impress with style and confidence! 🎊",slug:"occasional-outfits",children:null},accessorizing:{title:"Accessorizing Tips: Elevate Your Outfits with Style 💍",description:"Learn the art of accessorizing to upgrade your outfits effortlessly. Discover jewelry, bags, and more to complete your look beautifully! 🎒",slug:"accessorizing",children:null},colorTheory:{title:"Mastering Color Theory: Dress with Confidence 🌈",description:"Explore color theory to choose the perfect hues for your outfits. Learn how to mix and match colors for a stunning attire! 👚",slug:"color-theory",children:null},other:{title:"Miscellaneous Style Tips for Every Fashionista ✨",description:"Dive into a variety of style tips that don't fit into standard categories, perfect for any fashionista looking for unique ideas! 🌟",slug:"miscellaneous-style-tips",children:null}}},bodyPositivity:{title:"Empower Yourself: Unlock the Secrets of Body Positivity 🌟",description:"Explore body positivity with insights on confidence, inclusive fashion, and embracing diversity for every woman. Embrace your beauty journey! ✨",slug:"body-positivity",children:{confidenceBuilding:{title:"Confidence Building: Elevate Your Self-Esteem 🙌",description:"Discover powerful tips and strategies for building confidence and self-esteem that empower women to embrace their uniqueness and shine brightly! ✨",slug:"confidence-building",children:null},inclusiveFashion:{title:"Inclusive Fashion: Style for Every Body Shape 👗",description:"Uncover the latest trends and styles in inclusive fashion that celebrate every body shape, promoting self-expression and individuality in fashion! 💃",slug:"inclusive-fashion",children:null},variousSizes:{title:"Various Sizes: Fashion for Every Woman's Body 🥰",description:"Explore fashion choices for various sizes, showcasing styles that flatter every figure while encouraging an inclusive attitude towards beauty! 🌈",slug:"various-sizes",children:null},embracingDiversity:{title:"Embracing Diversity: Beauty Beyond Boundaries 🌍",description:"Celebrate diversity in beauty and fashion, highlighting different backgrounds and styles that enrich our experiences and foster self-love! ❤️",slug:"embracing-diversity",children:null},other:{title:"Body Positivity: Beyond the Norms 🔍",description:"Delve into various aspects of body positivity that go beyond the usual discussions, offering fresh insights and perspectives for empowered living! 💫",slug:"body-positivity-other",children:null}}},trendyAccessories:{title:"Discover the Latest in Trendy Accessories for Women ✨",description:"Explore trendy accessories for women, including handbags, jewelry, footwear, and more. Discover styles that elevate your fashion game! 🌟",slug:"trendy-accessories",children:{handbags:{title:"Stylish Handbags to Elevate Your Look 👜",description:"From chic clutches to spacious totes, discover fashionable handbags that add elegance to any outfit. Find your perfect accessory today! 💖",slug:"handbags",children:null},jewelry:{title:"Stunning Jewelry Pieces for Every Occasion 💎",description:"Enhance your style with beautiful jewelry. Explore rings, necklaces, and more that shine bright and showcase your unique personality! 🌈",slug:"jewelry",children:null},footwear:{title:"Trendy Footwear to Step Up Your Style 👠",description:"Find the latest fashionable footwear trends, from heels to sneakers, perfect for any occasion. Step out in confidence and style! 🏃‍♀️",slug:"footwear",children:null},scarvesAndWraps:{title:"Chic Scarves and Wraps for Effortless Style 🧣",description:"Layer up with stylish scarves and wraps that add flair and warmth to your outfits. Perfect for all seasons and versatile styles! 🌬️",slug:"scarves-and-wraps",children:null},other:{title:"Unique Accessories: Explore the Unexpected 🎀",description:"Discover a selection of unique accessories that don't fit the mold. Explore creative pieces that express your individuality! 🎨",slug:"other",children:null}}},makeupBrands:{title:"Explore Top Makeup Brands for Every Beauty Enthusiast 💄",description:"Discover a curated list of the best makeup brands, from luxury to cruelty-free. Enhance your beauty routine with insightful articles and tips! 🌟",slug:"makeup-brands",children:{luxuryBrands:{title:"Indulge in Luxury Makeup Brands to Elevate Your Look ✨",description:"Explore premier luxury makeup brands that offer exceptional quality and stunning results. Unleash your glam with high-end beauty products! 💖",slug:"luxury-brands",children:null},drugstoreBrands:{title:"Affordable Drugstore Brands: Beauty on a Budget 💰",description:"Find fantastic drugstore makeup brands that deliver quality products without breaking the bank. Perfect your look for less! 🌼",slug:"drugstore-brands",children:null},crueltyFreeBrands:{title:"Top Cruelty-Free Makeup Brands for Ethical Beauty 🌍",description:"Discover the best cruelty-free makeup brands committed to ethical practices. Look good while supporting a good cause! 🐰",slug:"cruelty-free-brands",children:null},naturalMakeup:{title:"Embrace Natural Makeup Brands for Healthy Beauty 🌿",description:"Explore natural makeup brands that use skin-friendly ingredients. Enhance your beauty routine with eco-conscious products! 🌸",slug:"natural-makeup",children:null},other:{title:"Explore Other Unique Makeup Brands You Should Try 🔍",description:"Dive into a variety of unique makeup brands that offer something different for your beauty collection. Find your new favorites! 🎨",slug:"other-brands",children:null}}},fashionEvents:{title:"Discover Exciting Fashion Events and Trends 🌟",description:"Explore the latest in fashion events including weeks, awards, and regional highlights. Uncover the trends that shape the fashion world. ✨",slug:"fashion-events",children:{fashionWeeks:{title:"Fashion Weeks: Global Trends and Styles 🌍",description:"Stay updated with the major fashion weeks around the world. Discover new styles, trends, and inspirations directly from the runway! 👗",slug:"fashion-weeks",children:null},tradeshowHighlights:{title:"Tradeshow Highlights: Where Fashion Meets Innovation 💡",description:"Dive into the highlights of key fashion tradeshows. Learn about innovative products and trends that redefine the fashion landscape! 🛍️",slug:"tradeshow-highlights",children:null},styleAwards:{title:"Style Awards: Celebrating Fashion Excellence 🏆",description:"Explore the prestigious style awards that honor creativity and talent in fashion. Discover the winners and emerging trends! 🎉",slug:"style-awards",children:null},regionalEvents:{title:"Regional Events: Local Fashion Scenes and Trends 🌆",description:"Explore regional fashion events showcasing local styles and trends. Connect with the fashion community right in your city! 👠",slug:"regional-events",children:null},other:{title:"Other Fashion Events: Beyond the Mainstream 🎭",description:"Discover a variety of exciting fashion events that don't fit the usual categories. Explore unique experiences in the fashion world! 🎨",slug:"other-fashion-events",children:null}}}},i=e.AUTHORS_INFO.reduce(((e,t)=>Object.assign(Object.assign({},e),{[t.name]:[t.description]})),{}),s=e.AUTHORS_INFO.map((e=>e.name)),n="💄👗✨🌸",r=Object.keys(t),o=[],a=[];for(const e of r){const i=t[e];if(null==i?void 0:i.children){o.push(...Object.keys(i.children));for(const e of o){const t=i.children[e];(null==t?void 0:t.children)&&a.push(...Object.keys(t.children))}}}const l="2024-09-10T00:00:00Z",d="luminousrendezvous",u=`idn-${d}-dev`,h=`idn-${d}`;exports.DEFAULT_DESCRIPTION_EMOJIS=n,exports.authors=i,exports.authorsNames=s,exports.categories=r,exports.dataStructure=t,exports.devBucketName=u,exports.prodBucketName=h,exports.startDate=l,exports.subcategories=o,exports.subsubcategories=a;
@@ -0,0 +1,24 @@
1
+ export declare enum FiltersNames {
2
+ StyleSpectrum = "Style Spectrum",
3
+ BeautyEssentials = "Beauty Essentials",
4
+ TrendWatch = "Trend Watch",
5
+ OccasionReady = "Occasion Ready"
6
+ }
7
+ type StyleSpectrumValues = 'Bohemian' | 'Chic' | 'Classic' | 'Edgy' | 'Sporty';
8
+ type BeautyEssentialsValues = 'Skincare' | 'Makeup' | 'Hair Care' | 'Wellness' | 'Nail Art';
9
+ type TrendWatchValues = 'Sustainable Fashion' | 'Pop Culture Influences' | 'Runway Trends' | 'Everyday Essentials';
10
+ type OccasionReadyValues = 'Casual Outings' | 'Office Wear' | 'Date Night' | 'Party Glam' | 'Seasonal Festivities';
11
+ export type ArticleFilters = {
12
+ [FiltersNames.StyleSpectrum]: StyleSpectrumValues[];
13
+ [FiltersNames.BeautyEssentials]: BeautyEssentialsValues[];
14
+ [FiltersNames.TrendWatch]: TrendWatchValues[];
15
+ [FiltersNames.OccasionReady]: OccasionReadyValues[];
16
+ };
17
+ export declare const styleSpectrumValues: StyleSpectrumValues[];
18
+ export declare const beautyEssentialsValues: BeautyEssentialsValues[];
19
+ export declare const trendWatchValues: TrendWatchValues[];
20
+ export declare const occasionReadyValues: OccasionReadyValues[];
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={})).StyleSpectrum="Style Spectrum",e.BeautyEssentials="Beauty Essentials",e.TrendWatch="Trend Watch",e.OccasionReady="Occasion Ready";const s=["Bohemian","Chic","Classic","Edgy","Sporty"],t=["Skincare","Makeup","Hair Care","Wellness","Nail Art"],a=["Sustainable Fashion","Pop Culture Influences","Runway Trends","Everyday Essentials"],r=["Casual Outings","Office Wear","Date Night","Party Glam","Seasonal Festivities"],i={[exports.FiltersNames.StyleSpectrum]:[],[exports.FiltersNames.BeautyEssentials]:[],[exports.FiltersNames.TrendWatch]:[],[exports.FiltersNames.OccasionReady]:[]},l={[exports.FiltersNames.StyleSpectrum]:s,[exports.FiltersNames.BeautyEssentials]:t,[exports.FiltersNames.TrendWatch]:a,[exports.FiltersNames.OccasionReady]:r},n=()=>JSON.stringify(l,null,2);exports.beautyEssentialsValues=t,exports.fullFilters=l,exports.getFiltersTypesJSON=n,exports.initialFilters=i,exports.occasionReadyValues=r,exports.styleSpectrumValues=s,exports.trendWatchValues=a;
@@ -0,0 +1,3 @@
1
+ import { GetDefaultImagesFrontmatter } from 'src/common/types';
2
+ export declare const getDefaultImagesFrontmatter: GetDefaultImagesFrontmatter;
3
+ export declare const prohibitedWordsInAltTitle: RegExp;
@@ -0,0 +1 @@
1
+ "use strict";const e=(e,n)=>{const t=n(e),i=undefined,a=undefined,l=undefined,o=undefined;return[{alt:`${e} Introduction`,filename:`${t}-introduction.png`,title:`${e} Introduction`},{alt:`Magnificent ${e}`,filename:`Magnificent-${t}.png`,title:`Magnificent ${e}`},{alt:`Notable ${e}`,filename:`${t}-notable.png`,title:`Notable ${e}`},{alt:`${e} Summary`,filename:`${t}-summary.png`,title:`${e} Summary`}]},n=/\b(?:hands|men|women|human|people|chief|family|mixing|serving|tasting|rolling)\b/i;exports.getDefaultImagesFrontmatter=e,exports.prohibitedWordsInAltTitle=n;
@@ -0,0 +1,15 @@
1
+ export * from './data';
2
+ export * from './filters';
3
+ export * from './helpers';
4
+ export * from './prompts/images';
5
+ export * from './seo';
6
+ import './styles/colors.css';
7
+ import './styles/fonts.css';
8
+ import './styles/global.css';
9
+ import './styles/sizing.css';
10
+ import './styles/vars.css';
11
+ import './styles/theme.css';
12
+ import * as gpt35Articles from './prompts/gpt35turbo/articles';
13
+ import * as gpt4oMiniArticles from './prompts/gpt4oMini/articles';
14
+ export { gpt35Articles, gpt4oMiniArticles };
15
+ export * from './prompts/data';
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./data.js"),t=require("./filters.js"),r=require("./helpers.js"),s=require("./prompts/images.js"),a=require("./seo.js"),o=require("./prompts/gpt35turbo/articles.js"),p=require("./prompts/gpt4oMini/articles.js"),i=require("./prompts/data.js");exports.DEFAULT_DESCRIPTION_EMOJIS=e.DEFAULT_DESCRIPTION_EMOJIS,exports.authors=e.authors,exports.authorsNames=e.authorsNames,exports.categories=e.categories,exports.dataStructure=e.dataStructure,exports.devBucketName=e.devBucketName,exports.prodBucketName=e.prodBucketName,exports.startDate=e.startDate,exports.subcategories=e.subcategories,exports.subsubcategories=e.subsubcategories,Object.defineProperty(exports,"FiltersNames",{enumerable:!0,get:function(){return t.FiltersNames}}),exports.beautyEssentialsValues=t.beautyEssentialsValues,exports.fullFilters=t.fullFilters,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.initialFilters=t.initialFilters,exports.occasionReadyValues=t.occasionReadyValues,exports.styleSpectrumValues=t.styleSpectrumValues,exports.trendWatchValues=t.trendWatchValues,exports.getDefaultImagesFrontmatter=r.getDefaultImagesFrontmatter,exports.prohibitedWordsInAltTitle=r.prohibitedWordsInAltTitle,exports.getOpenAiBasedImagePrompt=s.getOpenAiBasedImagePrompt,exports.getOpenAiBasedImagePromptDalle2=s.getOpenAiBasedImagePromptDalle2,exports.getStableDiffusionImagePrompt=s.getStableDiffusionImagePrompt,exports.AUTHORS_INFO=a.AUTHORS_INFO,exports.AUTHORS_META=a.AUTHORS_META,exports.PAGES_SEO=a.PAGES_SEO,Object.defineProperty(exports,"PageNames",{enumerable:!0,get:function(){return a.PageNames}}),exports.gpt35Articles=o,exports.gpt4oMiniArticles=p,exports.END_STEP=i.END_STEP,exports.FILTERS_INFO=i.FILTERS_INFO,exports.IMAGES_PROHIBITED_WORDS=i.IMAGES_PROHIBITED_WORDS,exports.START_STEP=i.START_STEP,exports.TARGET_AUDIENCE=i.TARGET_AUDIENCE,exports.ZERO_SECTION=i.ZERO_SECTION,exports.portalInfo=i.portalInfo;
@@ -0,0 +1,7 @@
1
+ export declare const portalInfo = "The article is written for the web portal.I will give you important information regarding the web portal:\n - Brief description: LuminousRendezvous is an engaging infotainment portal dedicated to fashion and beauty for women. It offers insightful articles, tips, and trends to help women enhance their personal style and beauty regimes.\n - Detailed description: LuminousRendezvous serves as a vibrant online hub for women who are passionate about fashion and beauty. The portal features expertly crafted articles that explore the latest trends, provide styling tips, and offer beauty hacks to empower women in their everyday lives. With a focus on inclusivity and diversity, LuminousRendezvous embraces various styles and beauty standards, making it a welcoming space for women of all backgrounds. Readers can expect insightful content that ranges from seasonal fashion must-haves and sustainable fashion practices to skincare routines and makeup tutorials. The portal aims to inspire confidence and creativity, helping women to not just look good, but feel good as well.\n - Target audience: The primary target audience for LuminousRendezvous includes women aged 18-45 who are interested in fashion and beauty. This demographic spans young adults and middle-aged women who seek inspiration, practical advice, and the latest trends in the fashion and beauty industries. The portal appeals to fashion enthusiasts, beauty aficionados, and casual readers alike, with content that caters to diverse tastes, preferences, and lifestyles.\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## Fashion Trends\n - Street Style Inspiration\n - Sustainable Fashion\n\n## Beauty Tips\n - Makeup Techniques\n - Hair Care and Styling\n\n## Product Reviews\n - Comparison Guides\n - Brand Spotlights\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 - Fashion Trends, IF it's applicable to the theme of the article.\n";
3
+ export declare const START_STEP = "highlighting the key points that will be discussed and the relevance of the topic";
4
+ export declare const END_STEP = "synthesizing the information presented throughout";
5
+ export declare const TARGET_AUDIENCE = "women of all ages";
6
+ export declare const IMAGES_PROHIBITED_WORDS = "any numbers, image, slug, step, seo, hand / hands, men, women, human, people, chief, preparing, process, cooking, mixing, serving, tasting, rolling";
7
+ export declare const FILTERS_INFO: string;
@@ -0,0 +1 @@
1
+ "use strict";var e;const t="The article is written for the web portal.I will give you important information regarding the web portal:\n - Brief description: LuminousRendezvous is an engaging infotainment portal dedicated to fashion and beauty for women. It offers insightful articles, tips, and trends to help women enhance their personal style and beauty regimes.\n - Detailed description: LuminousRendezvous serves as a vibrant online hub for women who are passionate about fashion and beauty. The portal features expertly crafted articles that explore the latest trends, provide styling tips, and offer beauty hacks to empower women in their everyday lives. With a focus on inclusivity and diversity, LuminousRendezvous embraces various styles and beauty standards, making it a welcoming space for women of all backgrounds. Readers can expect insightful content that ranges from seasonal fashion must-haves and sustainable fashion practices to skincare routines and makeup tutorials. The portal aims to inspire confidence and creativity, helping women to not just look good, but feel good as well.\n - Target audience: The primary target audience for LuminousRendezvous includes women aged 18-45 who are interested in fashion and beauty. This demographic spans young adults and middle-aged women who seek inspiration, practical advice, and the latest trends in the fashion and beauty industries. The portal appeals to fashion enthusiasts, beauty aficionados, and casual readers alike, with content that caters to diverse tastes, preferences, and lifestyles.\n\n",n="This is important to include the following headers to the section, ONLY if they are applicable to the title, abstract and description of the article:\n## Fashion Trends\n - Street Style Inspiration\n - Sustainable Fashion\n\n## Beauty Tips\n - Makeup Techniques\n - Hair Care and Styling\n\n## Product Reviews\n - Comparison Guides\n - Brand Spotlights\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 - Fashion Trends, IF it's applicable to the theme of the article.\n",a="highlighting the key points that will be discussed and the relevance of the topic",i="synthesizing the information presented throughout",s="women of all ages",o="any numbers, image, slug, step, seo, hand / hands, men, women, human, people, chief, preparing, process, cooking, mixing, serving, tasting, rolling",r=`That is TREMENDOUS important - if category doesn't match - return empty array for that category - []. For example if you don't find any match for $FILTERNAME, return for that category\n$FILTERNAME: []\nResponse in valid json, adhering strictly to json interface below, include every field present in it, but include values in array only suitable for article, all array values are optional!\n${require("../filters.js").getFiltersTypesJSON()}`;exports.END_STEP=i,exports.FILTERS_INFO=r,exports.IMAGES_PROHIBITED_WORDS=o,exports.START_STEP=a,exports.TARGET_AUDIENCE=s,exports.ZERO_SECTION=n,exports.portalInfo=t;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt35turbo/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),p=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),i=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=i,exports.getFiltersPrompt=p,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt4oMini/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),i=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),p=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=p,exports.getFiltersPrompt=i,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,4 @@
1
+ import { GetOpenAiBasedImagePrompt, GetStableDiffusionImagePrompt } from 'src/common/types';
2
+ export declare const getStableDiffusionImagePrompt: GetStableDiffusionImagePrompt;
3
+ export declare const getOpenAiBasedImagePrompt: GetOpenAiBasedImagePrompt;
4
+ export declare const getOpenAiBasedImagePromptDalle2: GetOpenAiBasedImagePrompt;
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../common/prompts/images.js");const a=({title:a,alt:o,articleTitle:t})=>({prompt:`Award-winning hyper-real cinematic photo of a ${a}, ${o}, for an article ${t} from professional fashion and beauty photograph for a glossy fashion and beauty magazine, fashion style photography, glossy beauty magazine, photorealistic, ultra realistic, maximum detail, highly detailed, commercial photography, foreground focus, instagram, 4K, 8K, volumetric light, cinematic, octane render, uplight, no blur, depth of field, dof, film, bokeh, foreground focus, 35mm photograph`,negativePrompt:e.SD_NEGATIVE_PROMPT}),o=({title:e,alt:a,articleTitle:o})=>`I NEED a hyper-real illustration of a ${e} at food style photography, ${a}, for an article ${o} for a glossy recipe magazine, photorealistic, ultra realistic, maximum detail, highly detailed, food style, food style photography, professional food photography, commercial photography, foreground focus, recipes.com, delish.com, epicurious, instagram, 4K, 8K, volumetric light, octane render, uplight, no blur, depth of field, dof, bokeh, foreground focus. Please exclude any: Photocamera, videocamera, Spotlight, soffit, ramp, scanners, strobe, soffit truss, film props, radio, cooking timer, watches, clocks, men, woman, people, hand, nands, leg, legs, font, username, error, words, letters, digits, autograph, trademark, name, easy-negative, cartoon, worst quality, low quality, blind, bad eyes, ugly eyes, dead eyes, greyscale, monochrome, vignette, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, censored, rabs, muscular, rib, blurry, blur, grainy, teeth, low resolution, lowres, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bw, bad photo, bad photography, bad art, morbid, ugly, asymmetrical, mutated malformed, mutilated, poorly lit, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, duplicate, airbrushed,, anime, semi-realistic, cgi, render, 3D, blender, digital art, manga, amateur, 3D, 3D Game, 3D Game Scene, 3D Character, bad hands, , bad body, bad face, bad teeth, bad arms, bad legs, deformities, drawing, deformed iris, deformed pupils, deformed, painting, crayon, sketch, graphite, impressionist, noisy, poorly drawn hands, poorly drawn face, poorly drawn eyes, mutation, bad proportions, cloned face, disfigured, gross proportions, malformed limbs, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck, incoherent from this hyper-real illustration of a ${e}`,t=({title:e})=>`\n\tPhotorealistic highly detailed image of ingredients for ${e}, arranged professionally as if for a food photography shoot. image should showcase maximum detail realism, with a focus on foreground, emulating the style of a high-definition, 8k resolution professional food photograph. lighting should be volumetric and uplit, with a depth of field and bokeh effect, avoiding any blur for clarity. overall aesthetic should be reminiscent of the Kodak Portrait 800 style.\n\tNegative Prompt:\n\teasy-negative, cartoon, worst quality, low quality, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, blurry, blur, grainy, teeth, low resolution, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, airbrushed, anime, semi-realistic, cgi, render, 3D, blender, manga, amateur, 3D, 3D Game, drawing, sketch\n`;exports.getOpenAiBasedImagePrompt=o,exports.getOpenAiBasedImagePromptDalle2=t,exports.getStableDiffusionImagePrompt=a;
@@ -0,0 +1,23 @@
1
+ export interface PageSeoData {
2
+ title: string;
3
+ description: string;
4
+ }
5
+ export declare enum PageNames {
6
+ Authors = "authors",
7
+ Home = "home",
8
+ NotFound = "not-found",
9
+ AboutUs = "about-us",
10
+ PrivacyPolicy = "privacy-policy",
11
+ Terms = "terms",
12
+ Sitemap = "sitemap"
13
+ }
14
+ export type PagesSeo = Record<PageNames, PageSeoData>;
15
+ export interface AuthorInfo {
16
+ name: string;
17
+ description: string;
18
+ meta_title: string;
19
+ meta_description: string;
20
+ }
21
+ export declare const PAGES_SEO: PagesSeo;
22
+ export declare const AUTHORS_INFO: AuthorInfo[];
23
+ export declare const AUTHORS_META: Record<string, PageSeoData>;
@@ -0,0 +1 @@
1
+ "use strict";var e;exports.PageNames=void 0,(e=exports.PageNames||(exports.PageNames={})).Authors="authors",e.Home="home",e.NotFound="not-found",e.AboutUs="about-us",e.PrivacyPolicy="privacy-policy",e.Terms="terms",e.Sitemap="sitemap";const a={[exports.PageNames.Authors]:{title:"Meet the Creators | LuminousRendezvous",description:"Discover the talented minds behind LuminousRendezvous. 💫 Explore their insights on fashion and beauty tailored just for you!"},[exports.PageNames.Home]:{title:"Welcome to LuminousRendezvous | Fashion & Beauty for Women",description:"Step into a world of style! ✨ Explore the latest tips, trends, and beauty hacks for fabulous women at LuminousRendezvous."},[exports.PageNames.NotFound]:{title:"Oops! Page Not Found | LuminousRendezvous",description:"Looks like you’ve taken a wrong turn. 🔍 Let’s get you back to fashion and beauty paradise at LuminousRendezvous!"},[exports.PageNames.AboutUs]:{title:"About LuminousRendezvous | Your Fashion & Beauty Hub",description:"Learn about our mission to empower women through fashion and beauty expertise. 🌟 Join the LuminousRendezvous journey!"},[exports.PageNames.PrivacyPolicy]:{title:"Privacy Policy | LuminousRendezvous",description:"Your privacy matters! 🔒 Read our commitment to safeguarding your data at LuminousRendezvous."},[exports.PageNames.Terms]:{title:"Terms of Service | LuminousRendezvous",description:"Understand your rights and responsibilities when visiting LuminousRendezvous. 📜 Dive into our terms of service!"},[exports.PageNames.Sitemap]:{title:"Sitemap | LuminousRendezvous",description:"Navigate easily through LuminousRendezvous! 🗺️ Check our sitemap for direct links to all your favorite content."}},i=[{name:"Priya Mehta",description:"Priya Mehta is a fashion and beauty writer with over 8 years of experience in the industry. She has contributed to renowned magazines and online platforms, focusing on sustainable fashion and beauty trends. With a flair for providing practical style tips and product reviews, Priya aims to empower women to express themselves through fashion.",meta_title:"Priya Mehta - Fashion & Beauty Writer at LuminousRendezvous",meta_description:"Explore the fashion insights and beauty trends from Priya Mehta, an experienced writer dedicated to empowering women through style at LuminousRendezvous."},{name:"Ananya Gupta",description:"Ananya Gupta is a celebrated fashion journalist and beauty expert with a unique perspective on Indian fashion. With a background in visual communication, she combines her design sensibility with her writing to deliver engaging content that resonates with modern women. Her expertise lies in bridal fashion and contemporary beauty routines.",meta_title:"Ananya Gupta - Fashion Journalist & Beauty Expert",meta_description:"Delve into fashion and beauty with Ananya Gupta, a well-respected voice in the industry and contributor at LuminousRendezvous."},{name:"Maya Sharma",description:"Maya Sharma is a passionate culture and lifestyle writer specializing in Indian fashion and beauty. With over 5 years of blogging experience, her work highlights diverse beauty standards and promotes body positivity. Maya's articles often feature interviews with designers and beauty influencers.",meta_title:"Maya Sharma - Culture & Lifestyle Writer at LuminousRendezvous",meta_description:"Join Maya Sharma as she shares her insights on Indian fashion and beauty, championing diversity and body positivity at LuminousRendezvous."},{name:"Kiran Joshi",description:"With a decade-long career in style consulting and fashion writing, Kiran Joshi is well-versed in the needs of contemporary women. Her practical advice on wardrobe essentials and makeup tips has garnered her a loyal following. Kiran also focuses on the intersection of fashion and technology in her writing.",meta_title:"Kiran Joshi - Style Consultant & Fashion Writer",meta_description:"Discover fashion and lifestyle tips from Kiran Joshi, a seasoned style consultant and contributor at LuminousRendezvous."},{name:"Nisha Desai",description:"Nisha Desai is a leading beauty columnist with a knack for simplifying complex beauty routines. Having worked with top beauty brands, she shares her experiences and personal anecdotes to help women navigate the ever-changing landscape of beauty. Nisha's work often emphasizes holistic beauty practices.",meta_title:"Nisha Desai - Beauty Columnist & Expert",meta_description:"Explore the world of beauty with Nisha Desai, an expert columnist dedicated to simplifying beauty for women at LuminousRendezvous."},{name:"Sonia Rao",description:"Sonia Rao is a vibrant fashion blogger and beauty influencer known for her unique style and relatable content. Her journey from a makeup enthusiast to a professional writer has inspired many. Sonia focuses on accessible fashion for everyday wear and provides practical beauty hacks.",meta_title:"Sonia Rao - Fashion Blogger & Beauty Influencer",meta_description:"Get inspired by Sonia Rao, a fashion blogger and beauty influencer dedicated to making style and beauty accessible at LuminousRendezvous."},{name:"Tanya Verma",description:"Tanya Verma is an acclaimed fashion stylist and writer who specializes in personal styling and trend analysis. Armed with over 6 years in the fashion industry, her creative insights help women elevate their personal style, making it truly their own. Tanya's articles are both informative and inspiring.",meta_title:"Tanya Verma - Fashion Stylist & Trend Writer",meta_description:"Enhance your wardrobe with the expertise of Tanya Verma, an influential fashion stylist and writer at LuminousRendezvous."},{name:"Rhea Chatterjee",description:"Rhea Chatterjee is a dedicated beauty enthusiast and fragrance expert. With her extensive knowledge of skincare and cosmetic products, she guides readers through the vast world of beauty with clarity and confidence. Her articles often feature product comparisons and skincare routines tailored for various skin types.",meta_title:"Rhea Chatterjee - Beauty Enthusiast & Fragrance Expert",meta_description:"Learn about skincare and beauty from Rhea Chatterjee, an expert dedicated to sharing insights and tips at LuminousRendezvous."},{name:"Divya Narayan",description:"Divya Narayan is a renowned makeup artist and writer, known for her innovative techniques and ability to empower women through beauty. With 7 years of professional experience, she writes articles that provide both inspiration and guidance for achieving stunning looks for various occasions.",meta_title:"Divya Narayan - Makeup Artist & Beauty Writer",meta_description:"Unleash your inner beauty with tips from Divya Narayan, a professional makeup artist and contributor at LuminousRendezvous."},{name:"Lakshmi Iyer",description:"Lakshmi Iyer is a fashion historian and writer who brings a scholarly perspective to contemporary fashion trends. With her background in design and history, she writes insightful articles that connect the past with modern fashion narratives, enlightening her readers about the evolution of style.",meta_title:"Lakshmi Iyer - Fashion Historian & Writer",meta_description:"Dive into the rich history of fashion with Lakshmi Iyer, a scholar and writer exploring style through the ages at LuminousRendezvous."},{name:"Ananya Sharma",description:"Ananya Sharma is a seasoned fashion writer and stylist based in Mumbai. With over 8 years of experience in the fashion industry, she specializes in sustainable fashion and women's beauty. Ananya has collaborated with several well-known brands and is known for her insightful articles that empower women through fashion advice.",meta_title:"Ananya Sharma - Fashion & Beauty Expert at LuminousRendezvous",meta_description:"Explore articles by Ananya Sharma, a Mumbai-based fashion and beauty expert with 8 years of experience, specializing in sustainable fashion for women."},{name:"Sofia Ali",description:"Sofia Ali is a fashion enthusiast and freelance writer known for her chic and trendy style. With a background in fashion marketing and communications, she has worked with various publications to bring the latest trends to life. Sofia's passion lies in empowering women to express themselves through their fashion choices.",meta_title:"Sofia Ali - Fashion Enthusiast at LuminousRendezvous",meta_description:"Dive into the world of fashion with Sofia Ali, a fashion writer and marketer dedicated to empowering women through stylish choices and trends."},{name:"Neha Kapoor",description:"Neha Kapoor is a beauty blogger and influencer with a knack for creating striking beauty content. Based in Delhi, she focuses on makeup trends, product reviews, and DIY beauty remedies. Her vibrant writing style and expert knowledge of the beauty realm make her articles both informative and enjoyable.",meta_title:"Neha Kapoor - Beauty Blogger at LuminousRendezvous",meta_description:"Follow Neha Kapoor, a captivating beauty blogger from Delhi, as she shares expert makeup tips, product reviews, and delightful DIY remedies."},{name:"Rhea Joshi",description:"Rhea Joshi is a fashion journalist with over 6 years of experience covering fashion weeks and industry trends. Her articles reflect a blend of cultural insights and contemporary styling, making her a reliable source for fashionable women looking for guidance and inspiration in their wardrobes.",meta_title:"Rhea Joshi - Fashion Journalist at LuminousRendezvous",meta_description:"Stay updated with Rhea Joshi, a fashion journalist dedicated to bringing you the latest industry trends and styling tips for modern women."},{name:"Maya Desai",description:"Maya Desai is a lifestyle and fashion writer passionate about celebrating Indian fashion. With a rich background in journalism, she writes about traditional and contemporary styles, showcasing women's fashion through articles that educate and inspire readers from all backgrounds.",meta_title:"Maya Desai - Fashion & Lifestyle Writer at LuminousRendezvous",meta_description:"Explore Maya Desai’s articles on Indian fashion and lifestyle, where tradition meets modernity for every woman’s unique style journey."},{name:"Aditi Rao",description:"Aditi Rao is an acclaimed fashion stylist and writer with expertise in editorial styling and personal branding. She helps women define their personal style through her articles filled with practical tips and trends that cater to diverse body types and age groups.",meta_title:"Aditi Rao - Fashion Stylist & Writer at LuminousRendezvous",meta_description:"Uncover personal style secrets with Aditi Rao, a fashion stylist dedicated to empowering women through personalized fashion articles."},{name:"Tanvi Bhatia",description:"Tanvi Bhatia is a skincare consultant and writer with a strong focus on holistic beauty. With over 4 years of experience, she shares her knowledge on natural skincare, beauty routines, and wellness that promotes healthy skin and lifestyle for women of all ages.",meta_title:"Tanvi Bhatia - Skincare Consultant & Writer at LuminousRendezvous",meta_description:"Discover natural beauty with Tanvi Bhatia, a skincare consultant dedicated to holistic skincare and wellness advice for women."},{name:"Isha Verma",description:"Isha Verma is a fashion influencer and stylist based in Bangalore. Known for her unique sense of style, she curates content that blends global and Indian fashion trends. Isha aims to inspire women to experiment with their fashion choices while embracing their individuality.",meta_title:"Isha Verma - Fashion Influencer at LuminousRendezvous",meta_description:"Get inspired by Isha Verma, a fashion influencer from Bangalore who's redefining women’s fashion through unique style experiments and trends."},{name:"Saanvi Singh",description:"Saanvi Singh is a writer and fashion educator with a passion for teaching women about fashion design and styling. With over 7 years of experience in academic courses and workshops, her articles focus on empowering women through education in fashion and beauty.",meta_title:"Saanvi Singh - Fashion Educator & Writer at LuminousRendezvous",meta_description:"Learn fashion basics and styling from Saanvi Singh, a dedicated fashion educator empowering women through her insightful articles."},{name:"Priya Gupta",description:"Priya is a beauty influencer and makeup artist with over six years of experience. She has collaborated with various beauty brands, sharing her tips and tricks for enhancing natural beauty. Her articles cover everything from skincare routines to makeup tutorials, aimed at empowering women.",meta_title:"Priya Gupta - Beauty Influencer & Makeup Artist | LuminousRendezvous",meta_description:"Explore beauty tips and makeup tutorials by Priya Gupta, a talented beauty influencer at LuminousRendezvous, dedicated to empowering women through beauty."},{name:"Aditi Verma",description:"Aditi is a fashion designer turned writer who specializes in Indian ethnic wear. With over ten years in the fashion industry, she uses her expertise to compose engaging articles that celebrate traditional styles while advocating for modern twists. Aditi's passion for creativity shines through her writing.",meta_title:"Aditi Verma - Ethnic Fashion Specialist | LuminousRendezvous",meta_description:"Delve into the world of ethnic fashion with Aditi Verma, a fashion designer sharing insights and trends on LuminousRendezvous."},{name:"Neha Patel",description:"Neha is a fashion blogger and stylist who has gained a following for her chic outfit inspirations. With a unique ability to mix contemporary styles with traditional influences, she focuses on everyday fashion for women. Her articles provide practical tips on styling and wardrobe essentials.",meta_title:"Neha Patel - Fashion Blogger & Stylist | LuminousRendezvous",meta_description:"Find everyday fashion inspiration with Neha Patel, a stylish blogger sharing practical tips at LuminousRendezvous."},{name:"Richa Mehta",description:"With a master's degree in fashion marketing, Richa has spent more than seven years analyzing market trends and consumer behavior in the fashion industry. Her articles focus on fashion business insights and emerging brands, providing readers with a comprehensive view of the industry.",meta_title:"Richa Mehta - Fashion Marketing Expert | LuminousRendezvous",meta_description:"Gain insights into fashion marketing with Richa Mehta, an expert analyzing trends and emerging brands at LuminousRendezvous."},{name:"Sonal Joshi",description:"Sonal is an established lifestyle journalist with expertise in covering beauty trends and wellness. Her approach combines beauty rituals with holistic health, promoting the idea that true beauty comes from within. She has written for various lifestyle publications and is passionate about women's empowerment.",meta_title:"Sonal Joshi - Lifestyle Journalist & Wellness Advocate | LuminousRendezvous",meta_description:"Explore beauty and wellness with Sonal Joshi, a lifestyle journalist celebrating holistic health and women's empowerment at LuminousRendezvous."},{name:"Meera Bhatia",description:"Meera is a renowned fashion consultant with a decade of experience curating personal styles for clients. Her articles focus on tailoring advice to help women find their unique style while showcasing the latest trends. Meera believes that fashion should be accessible and fun.",meta_title:"Meera Bhatia - Fashion Consultant | LuminousRendezvous",meta_description:"Unlock your unique style with Meera Bhatia, a fashion consultant providing tailored advice and trend insights at LuminousRendezvous."},{name:"Kavita Singh",description:"Kavita is a beauty researcher known for her focus on skincare science. With over five years of experience studying cosmetics and ingredients, she translates complex information into easily digestible articles, helping women make informed choices about their skincare routines.",meta_title:"Kavita Singh - Skincare Researcher & Expert | LuminousRendezvous",meta_description:"Make informed skincare choices with Kavita Singh, a beauty researcher revealing the science behind cosmetics at LuminousRendezvous."},{name:"Tanvi Ahuja",description:"Tanvi is a textile artist and writer whose passion for fabric and color shine through her articles. She writes about sustainable fabric sourcing and the importance of textile heritage in fashion. Her background in arts informs her approach to beauty and fashion.",meta_title:"Tanvi Ahuja - Textile Artist & Fashion Writer | LuminousRendezvous",meta_description:"Explore the intersection of art and fashion with Tanvi Ahuja, a textile artist sharing insights into sustainable fabrics at LuminousRendezvous."},{name:"Diya Choudhury",description:"Diya is a holistic beauty enthusiast and writer with a background in naturopathy. Her articles emphasize the importance of natural ingredients and wellness in beauty routines. With a keen interest in Ayurvedic practices, she encourages readers to embrace holistic beauty.",meta_title:"Diya Choudhury - Holistic Beauty Writer & Naturopath | LuminousRendezvous",meta_description:"Embrace holistic beauty with Diya Choudhury, a naturopath exploring natural ingredients and wellness at LuminousRendezvous."},{name:"Riya Kapoor",description:"Riya Kapoor is a beauty enthusiast and freelance writer with a background in cosmetics and skincare. With a decade-long experience, she specializes in product reviews, DIY beauty hacks, and trendy makeup looks for women. Her relatable writing style makes beauty accessible for all.",meta_title:"Riya Kapoor - Beauty Aficionado at LuminousRendezvous",meta_description:"Explore beauty trends and tips from Riya Kapoor, a dedicated expert sharing insights on skincare, makeup, and DIY beauty hacks at LuminousRendezvous."},{name:"Meera Choudhury",description:"Meera Choudhury is a fashion stylist and columnist with over 5 years of experience in styling and consulting for women. Known for her eye for detail, Meera writes about the latest trends, fashion dos and don'ts, and creates style guides to help women express their unique flair.",meta_title:"Meera Choudhury - Fashion Stylist & Columnist at LuminousRendezvous",meta_description:"Get the latest fashion tips and trend insights from Meera Choudhury, a fashion stylist helping women unleash their style potential at LuminousRendezvous."},{name:"Nisha Verma",description:"Nisha Verma is a fashion and lifestyle writer with over 6 years of experience in digital media. Her articles focus on body positivity, inclusive fashion, and the impact of cultural heritage on modern fashion. Nisha seeks to inspire women to embrace their individuality through style.",meta_title:"Nisha Verma - Lifestyle Writer at LuminousRendezvous",meta_description:"Join Nisha Verma on a journey of self-expression through fashion, exploring body positivity and cultural influences at LuminousRendezvous."},{name:"Priya Iyer",description:"Priya Iyer is a vibrant lifestyle blogger and makeup artist with expertise in creating stunning looks for women of all ages. Her hands-on approach to beauty and fashion has made her a go-to source for makeup tutorials and style tips, engaging readers with her creative content.",meta_title:"Priya Iyer - Lifestyle Blogger & Makeup Artist at LuminousRendezvous",meta_description:"Discover stunning makeup tutorials and fashion tips from Priya Iyer, a passionate lifestyle blogger bringing creativity and style to LuminousRendezvous."},{name:"Divya Nair",description:"Divya Nair is a seasoned editor and copywriter specializing in beauty and wellness topics. With over 7 years of experience, she writes compelling articles that guide women on beauty routines, health, and self-care practices that enhance both inner and outer beauty.",meta_title:"Divya Nair - Beauty & Wellness Expert at LuminousRendezvous",meta_description:"Explore beauty and wellness insights from Divya Nair, a knowledgeable editor sharing valuable tips for enhancing your inner and outer beauty at LuminousRendezvous."},{name:"Sofia Khan",description:"Sofia Khan is an emerging fashion designer and blogger known for her modern takes on traditional wear. With a deep understanding of craftsmanship and design, she shares her experiences and insights on bridging cultural heritage with contemporary trends for women.",meta_title:"Sofia Khan - Fashion Designer & Blogger at LuminousRendezvous",meta_description:"Discover the art of blending cultural heritage with modern trends through the unique perspectives of Sofia Khan, an emerging designer at LuminousRendezvous."},{name:"Tanvi Agarwal",description:"Tanvi Agarwal is a health and wellness influencer who incorporates beauty in her lifestyle content. With over 4 years of experience, she focuses on holistic beauty practices and natural skincare routines, encouraging women to make mindful beauty choices.",meta_title:"Tanvi Agarwal - Holistic Beauty Influencer at LuminousRendezvous",meta_description:"Join Tanvi Agarwal as she shares holistic beauty practices and natural skincare tips to empower women towards mindful beauty choices at LuminousRendezvous."},{name:"Kavita Mehta",description:"Kavita Mehta is a renowned fashion photographer and writer with over 10 years in the industry. Her visual storytelling captures the essence of fashion and beauty, and she often writes about the intersection of photography, styling, and empowerment for women in the industry.",meta_title:"Kavita Mehta - Fashion Photographer & Writer at LuminousRendezvous",meta_description:"Explore the world of fashion and empowerment through the lens of Kavita Mehta, a seasoned photographer and writer at LuminousRendezvous."},{name:"Aisha Patel",description:"Aisha Patel is a beauty therapist and influencer with a passion for skincare and wellness. With years of experience in beauty treatment, she educates her audience on skincare best practices, product selection and healthy habits that promote glowing skin for women.",meta_title:"Aisha Patel - Skincare Educator & Influencer at LuminousRendezvous",meta_description:"Learn about skincare best practices and wellness tips from Aisha Patel, a dedicated beauty therapist empowering women to achieve glowing skin at LuminousRendezvous."},{name:"Sophia Grant",description:"Sophia Grant is an acclaimed fashion writer and beauty expert with over a decade of experience in the industry. Based in Paris, she has worked with major fashion magazines and has a keen eye for emerging trends. Her passion for empowering women through fashion led her to create compelling content that celebrates individuality and style.",meta_title:"Sophia Grant - Fashion and Beauty Expert at LuminousRendezvous",meta_description:"Discover the latest trends and beauty tips from Sophia Grant, a seasoned fashion writer with over 10 years of experience in the industry. Join her journey on LuminousRendezvous."},{name:"Amara Liu",description:"Amara Liu is a renowned beauty influencer and editor, specializing in skincare and cosmetic reviews. With a background in chemistry, she combines her scientific knowledge with a passion for beauty. Her insightful reviews and engaging style make her a favorite among readers looking for genuine product recommendations.",meta_title:"Amara Liu - Beauty Influencer and Editor at LuminousRendezvous",meta_description:"Get expert skincare advice from Amara Liu, a beauty influencer and editor at LuminousRendezvous. Explore her trusted reviews and tips for glowing skin."},{name:"Isabella Carter",description:"Based in Milan, Isabella Carter has worked as a fashion designer and stylist before transitioning into writing. With a unique perspective on the fashion world, she brings creativity and flair to every article. Isabella's work focuses on sustainable fashion and supporting local designers, promoting a more ethical approach to style.",meta_title:"Isabella Carter - Sustainable Fashion Advocate at LuminousRendezvous",meta_description:"Explore sustainable fashion insights and styling tips from Isabella Carter, an experienced designer and writer. Follow her journey at LuminousRendezvous."},{name:"Nia Johnson",description:"Nia Johnson is a multicultural fashion curator and lifestyle blogger. Drawing inspiration from her travels around the globe, she highlights diverse styles and beauty rituals. With a focus on inclusivity within the fashion industry, Nia's articles empower women of all backgrounds to celebrate their unique beauty.",meta_title:"Nia Johnson - Multicultural Fashion Curator at LuminousRendezvous",meta_description:"Discover inclusive beauty and fashion through the eyes of Nia Johnson, a multicultural curator at LuminousRendezvous. Embrace your unique style!"},{name:"Elena Rossi",description:"Elena Rossi is a seasoned fashion journalist with a flair for writing about luxury brands and high-end beauty products. With her Italian roots, she brings the latest trends from the fashion capital of the world straight to your screen. Elena's articles reflect her personal style, which embraces elegance and sophistication.",meta_title:"Elena Rossi - Luxury Fashion Journalist at LuminousRendezvous",meta_description:"Indulge in luxury fashion and beauty insights with Elena Rossi, an expert journalist at LuminousRendezvous. Explore high-end trends and industry secrets."},{name:"Tasha Bell",description:"Tasha Bell is an innovative beauty therapist and wellness advocate. With a holistic approach to beauty, she writes about the importance of mental and physical health in personal grooming. Her focus on wellness practices and natural beauty solutions resonates with those seeking a healthier lifestyle without compromising on style.",meta_title:"Tasha Bell - Holistic Beauty Therapist at LuminousRendezvous",meta_description:"Join Tasha Bell's wellness journey as she explores holistic beauty and self-care practices at LuminousRendezvous. Elevate your beauty routine!"},{name:"Maya Thompson",description:"Maya Thompson is a vibrant fashion and beauty photographer who turned writer to express her creative vision. Based in New York, her articles offer a behind-the-scenes look at fashion shows and beauty campaigns. Maya's unique perspective and stories elevate the reader’s understanding of the industry beyond the superficial.",meta_title:"Maya Thompson - Creative Fashion Photographer and Writer at LuminousRendezvous",meta_description:"Dive into the fashion world through the lens of Maya Thompson, a creative photographer and writer at LuminousRendezvous. Discover unique stories and trends!"},{name:"Rita Anand",description:"Rita Anand is a celebrated beauty writer and makeup artist with extensive experience in editorial and commercial projects. Based in Mumbai, she has collaborated with various celebrities and influencers. Rita specializes in makeup tutorials, helping readers enhance their skills and creativity in personal expression.",meta_title:"Rita Anand - Makeup Artist and Beauty Writer at LuminousRendezvous",meta_description:"Unleash your inner artist with Rita Anand's makeup tutorials and beauty tips. Join her at LuminousRendezvous for expert insights and inspiration."},{name:"Leah Walker",description:"Leah Walker is a style blogger and trend analyst who has a sharp eye for forecasting fashion trends. With an extensive background in retail marketing, Leah offers a unique blend of commercial and editorial insights. Her articles often focus on affordable fashion options without sacrificing style and quality.",meta_title:"Leah Walker - Fashion Blogger and Trend Analyst at LuminousRendezvous",meta_description:"Stay updated on the latest fashion trends with Leah Walker, a savvy style blogger and trend analyst at LuminousRendezvous. Elevate your wardrobe wisely!"},{name:"Zara Khalid",description:"Zara Khalid is a global beauty advocate and writer who explores cultural beauty practices around the world. Her passion for travel and discovery enriches her writing, making her a bridge for understanding diverse beauty standards. Zara’s articles inspire readers to appreciate the beauty in all cultures and traditions.",meta_title:"Zara Khalid - Global Beauty Advocate at LuminousRendezvous",meta_description:"Discover cultural beauty practices with Zara Khalid, a global beauty advocate at LuminousRendezvous. Let’s celebrate diversity in beauty together!"},{name:"Sophia Turner",description:"Sophia is a seasoned fashion journalist with over 10 years of experience in the industry. Based in Paris, she specializes in sustainable fashion and brings a unique perspective to the latest trends in women’s clothing. Her work has been featured in renowned publications like Vogue and Harper's Bazaar.",meta_title:"Sophia Turner - Fashion Journalist | LuminousRendezvous",meta_description:"Discover the fashion insights of Sophia Turner, a renowned journalist specializing in sustainable fashion trends for women. Read her articles at LuminousRendezvous."},{name:"Emily Chen",description:"Emily is a beauty writer and product reviewer based in New York City. With over 8 years of experience in the cosmetics industry, she shares her expertise through honest reviews, makeup tutorials, and beauty tips aimed at empowering women.",meta_title:"Emily Chen - Beauty Writer | LuminousRendezvous",meta_description:"Explore beauty trends and product reviews by Emily Chen, an experienced writer dedicated to empowering women through her insights at LuminousRendezvous."},{name:"Aisha Malik",description:"Aisha is an international fashion influencer and stylist from Dubai. With her vibrant sense of style, she aims to help women express themselves through fashion. Aisha's articles blend personal anecdotes with professional advice, providing readers with relatable content.",meta_title:"Aisha Malik - Fashion Influencer & Stylist | LuminousRendezvous",meta_description:"Join Aisha Malik on LuminousRendezvous as she shares her styling tips and personal fashion journeys, inspiring women worldwide."},{name:"Maria Rodriguez",description:"Hailing from Madrid, Maria is a beauty expert with a focus on skincare and natural products. With over a decade of experience as a licensed esthetician, she provides readers with actionable advice for radiant beauty routines.",meta_title:"Maria Rodriguez - Skincare Expert | LuminousRendezvous",meta_description:"Learn skincare secrets from Maria Rodriguez, a licensed esthetician sharing her expertise at LuminousRendezvous for glowing beauty routines."},{name:"Zara Patel",description:"Zara is a fashion entrepreneur and writer from Mumbai. She runs a successful clothing line and loves to share insights into the business side of fashion, empowering women to navigate their careers in the industry.",meta_title:"Zara Patel - Fashion Entrepreneur | LuminousRendezvous",meta_description:"Explore the world of fashion entrepreneurship with Zara Patel at LuminousRendezvous, where she shares insights for women pursuing careers in style."},{name:"Chloe Johnson",description:"Chloe is a Los Angeles-based style blogger and lifestyle coach. With a focus on body positivity and self-acceptance, she shares posts that encourage women to love their unique styles and embrace their beauty.",meta_title:"Chloe Johnson - Style Blogger & Lifestyle Coach | LuminousRendezvous",meta_description:"Join Chloe Johnson at LuminousRendezvous for inspiring style blogs that promote body positivity and self-acceptance among women."},{name:"Emily Smith",description:"With a passion for thrifting and vintage fashion, Emily is an Australian fashion editor who helps women find their style without breaking the bank. Her blog posts highlight affordability and sustainability in fashion.",meta_title:"Emily Smith - Fashion Editor & Thrifting Expert | LuminousRendezvous",meta_description:"Discover thrift and vintage fashion with Emily Smith, an Australian fashion editor sharing insights on affordable and sustainable style at LuminousRendezvous."},{name:"Nina Johnson",description:"Nina is a leading skincare researcher and writer based in Tokyo, Japan. Her expertise in dermatology and beauty science allows her to provide readers with in-depth knowledge about skin health and effective beauty products.",meta_title:"Nina Johnson - Skincare Researcher | LuminousRendezvous",meta_description:"Learn about skincare science with Nina Johnson, a leading researcher providing expert advice for healthy skin at LuminousRendezvous."},{name:"Lily Thompson",description:"Lily is a fashion and lifestyle photographer from Toronto, Canada, who combines her artistic vision with her love for storytelling. Through her articles, she inspires women to appreciate the art of fashion photography.",meta_title:"Lily Thompson - Fashion Photographer & Writer | LuminousRendezvous",meta_description:"Explore the art of fashion photography with Lily Thompson, a Toronto-based photographer sharing her passion and insights at LuminousRendezvous."},{name:"Samantha Lee",description:"Samantha is a cultural critic and fashion historian based in London. With her background in art history, she offers perspectives on how fashion intersects with society and culture, making her articles both insightful and educational.",meta_title:"Samantha Lee - Fashion Historian & Cultural Critic | LuminousRendezvous",meta_description:"Delve into the cultural significance of fashion with Samantha Lee, a historian and critic sharing her insights at LuminousRendezvous."}],t=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=t,exports.PAGES_SEO=a;
@@ -0,0 +1 @@
1
+ :root{--gray-4-a:rgba(0,0,0,0.45);--text-secondary:rgba(0,0,0,0.65);--text-primary:rgba(0,0,0,0.88);--border-color-border-secondary:#F0F0F0;--background-color-bg-base:#FFF;}
@@ -0,0 +1 @@
1
+ :root{--font-size-xx-small:0.625rem;--font-size-x-small:0.75rem;--font-size-small:0.875rem;--font-size-medium:1rem;--font-size-large:1.25rem;--font-size-x-large:1.5rem;--font-size-xx-large:2rem;--h1-font-size:38px;--h1-line-height:46px;--h2-font-size:30px;--h2-line-height:38px;--h3-font-size:24px;--h3-line-height:32px;--h4-font-size:20px;--h4-line-height:28px;--h5-font-size:16px;--h5-line-height:24px;}
@@ -0,0 +1 @@
1
+ html,body,#root {height:100%;width:100%;}body {display:flex;flex-direction:column;align-items:center;margin:0;padding:0;background-color:var(--background-color-bg-base);}#___gatsby {width:100%;}.ant-app {height:100%;}.ant-dropdown-menu,.ant-select-dropdown,.ant-select-selector,.ant-popover-inner {border-radius:8px!important;}
@@ -0,0 +1 @@
1
+ :root{--gap-lg:24px;--gap-md:16px;--gap-sm:12px;--gap-xs:8px;--gap-xss:4px;--padding-lg:24px;--padding-md:16px;--padding-sm:12px;--padding-xs:8px;--padding-xss:4px;--margin-hg:36px;--margin-lg:24px;--margin-md:16px;--margin-sm:12px;--margin-xs:8px;--margin-xss:4px;}
@@ -0,0 +1 @@
1
+ :root {--theme-color-9:#5b2e91;--theme-color-8:#7b5b99;--theme-color-7:#a380b0;--theme-color-6:#d3b3e4;--theme-color-5:#e2b5e9;--theme-color-3:#f4c4e1;--theme-color-2:#f9e1ec;--color-bg-layout:#ffffff;--color-bg-hover:#f1f1f1;--article-border-radius:25px;--btn-border-radius:20px;--category-border-radius:30px;}
@@ -0,0 +1 @@
1
+ @import "sizing.css";@import "colors.css";@import "fonts.css";@import "theme.css";
@@ -0,0 +1,200 @@
1
+ export declare const dataStructure: {
2
+ fashionTrends: {
3
+ title: string;
4
+ description: string;
5
+ slug: string;
6
+ children: {
7
+ currentTrends: {
8
+ title: string;
9
+ description: string;
10
+ slug: string;
11
+ children: null;
12
+ };
13
+ seasonalStyles: {
14
+ title: string;
15
+ description: string;
16
+ slug: string;
17
+ children: null;
18
+ };
19
+ celebrityInspiration: {
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
+ beautyProducts: {
34
+ title: string;
35
+ description: string;
36
+ slug: string;
37
+ children: {
38
+ skincareEssentials: {
39
+ title: string;
40
+ description: string;
41
+ slug: string;
42
+ children: null;
43
+ };
44
+ makeupReviews: {
45
+ title: string;
46
+ description: string;
47
+ slug: string;
48
+ children: null;
49
+ };
50
+ hairCareProducts: {
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
+ styleGuides: {
65
+ title: string;
66
+ description: string;
67
+ slug: string;
68
+ children: {
69
+ outfitInspiration: {
70
+ title: string;
71
+ description: string;
72
+ slug: string;
73
+ children: null;
74
+ };
75
+ accessoryPairing: {
76
+ title: string;
77
+ description: string;
78
+ slug: string;
79
+ children: null;
80
+ };
81
+ bodyTypes: {
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
+ personalGrooming: {
96
+ title: string;
97
+ description: string;
98
+ slug: string;
99
+ children: {
100
+ skincareRoutines: {
101
+ title: string;
102
+ description: string;
103
+ slug: string;
104
+ children: null;
105
+ };
106
+ nailCare: {
107
+ title: string;
108
+ description: string;
109
+ slug: string;
110
+ children: null;
111
+ };
112
+ selfCarePractices: {
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
+ fashionSustainability: {
127
+ title: string;
128
+ description: string;
129
+ slug: string;
130
+ children: {
131
+ ecoFriendlyBrands: {
132
+ title: string;
133
+ description: string;
134
+ slug: string;
135
+ children: null;
136
+ };
137
+ secondHandShopping: {
138
+ title: string;
139
+ description: string;
140
+ slug: string;
141
+ children: null;
142
+ };
143
+ sustainableMaterials: {
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
+ beautyTech: {
158
+ title: string;
159
+ description: string;
160
+ slug: string;
161
+ children: {
162
+ techInBeauty: {
163
+ title: string;
164
+ description: string;
165
+ slug: string;
166
+ children: null;
167
+ };
168
+ appsForSkincare: {
169
+ title: string;
170
+ description: string;
171
+ slug: string;
172
+ children: null;
173
+ };
174
+ gadgetsForHair: {
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
+ };
189
+ export declare const authors: Record<string, string>;
190
+ export declare const authorsNames: string[];
191
+ export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83D\uDC57\uD83D\uDC84\u2728\uD83D\uDC60";
192
+ export declare const categories: ("fashionTrends" | "styleGuides" | "beautyProducts" | "personalGrooming" | "fashionSustainability" | "beautyTech")[];
193
+ export declare const subcategories: string[];
194
+ export declare const subsubcategories: string[];
195
+ export type Category = keyof typeof dataStructure;
196
+ export type CategoryNode = (typeof dataStructure)[Category];
197
+ export type SubcategoryKeyByCategory<T extends Category> = (typeof dataStructure)[T]['children'];
198
+ export declare const startDate = "2024-09-10T00:00:00Z";
199
+ export declare const devBucketName = "idn-stylishventure-dev";
200
+ export declare const prodBucketName = "idn-stylishventure";
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./seo.js");const t={fashionTrends:{title:"Explore the Latest Fashion Trends for Women 🌟",description:"Stay ahead in fashion with StylishVenture's latest trends. Discover what's in vogue for women today! ✨",slug:"latest-fashion-trends-women",children:{currentTrends:{title:"Current Fashion Trends: What's Hot Right Now 🔥",description:"Unlock the hottest trends in fashion today. Find out what's making waves this season! 👗✨",slug:"current-fashion-trends",children:null},seasonalStyles:{title:"Seasonal Styles: Embrace Fashion Throughout the Year 🍂❄️🌸☀️",description:"Explore how to adapt your wardrobe to each season with stylish looks and inspirations. 🌷✨",slug:"seasonal-fashion-styles",children:null},celebrityInspiration:{title:"Celebrity Fashion Inspiration: Dress Like a Star 🌟👗",description:"Get inspired by your favorite celebs! Discover fashion tips and chic looks from the silver screen. 🌸✨",slug:"celebrity-fashion-inspiration",children:null},other:{title:"Other Fashion Insights: Trends Beyond the Norm 🎨✨",description:"Delve into unique fashion ideas that break the mold. Explore diverse inspirations and styles here! 🌈",slug:"other-fashion-insights",children:null}}},beautyProducts:{title:"Explore Essential Beauty Products for Women 🌸",description:"Discover the latest in skincare, makeup, and hair care with expert reviews and tips for a radiant look. Transform your beauty routine today! 💖",slug:"beauty-products",children:{skincareEssentials:{title:"Skincare Essentials for Radiant Skin 🌟",description:"Uncover the secrets to glowing skin with our comprehensive guides on skincare essentials. Tips, routines, and product recommendations await you! ✨",slug:"skincare-essentials",children:null},makeupReviews:{title:"Makeup Reviews: Elevate Your Beauty Game 💄",description:"Dive into our detailed makeup reviews to find the best products for your beauty needs. Get inspired and enhance your makeup skills today! 🎨",slug:"makeup-reviews",children:null},hairCareProducts:{title:"Hair Care Products for Beautiful Tresses 💇‍♀️",description:"Discover top hair care products and tips for maintaining luscious locks. Explore our expert recommendations for every hair type! 🌈",slug:"hair-care-products",children:null},other:{title:"Other Beauty Tips & Tricks 🌼",description:"Explore various beauty tips, tricks, and unconventional products that elevate your beauty routine. Find your next favorite here! 🎉",slug:"other-beauty-tips",children:null}}},styleGuides:{title:"Women’s Fashion & Beauty Style Guides ✨",description:"Explore inspiring style guides on fashion and beauty for modern women. Get expert tips, outfit ideas, and beauty secrets tailored for you! 🌟",slug:"womens-fashion-beauty-style-guides",children:{outfitInspiration:{title:"Outfit Inspiration for Every Occasion 👗",description:"Discover outfit inspiration for every occasion, whether casual or formal, to help you express your unique style and confidence! 💃",slug:"outfit-inspiration",children:null},accessoryPairing:{title:"Perfect Accessory Pairing Ideas 🎒",description:"Learn how to pair the perfect accessories with your outfits to elevate your style game and steal the spotlight wherever you go! ✨",slug:"accessory-pairing",children:null},bodyTypes:{title:"Fashion Tips for Different Body Types 👠",description:"Explore tailored fashion tips for various body types to help you dress flatteringly and celebrate your unique figure with style! 💖",slug:"body-types",children:null},other:{title:"Other Fashion & Beauty Tips 🌼",description:"Dive into a variety of other fashion and beauty tips, including skincare and trends, to inspire your personal style journey! 🌟",slug:"other-fashion-beauty-tips",children:null}}},personalGrooming:{title:"Personal Grooming: Elevate Your Beauty Routine 🌟",description:"Discover essential tips and tricks for personal grooming. Explore skincare, nail care, and self-care practices for flawless beauty. 💖",slug:"personal-grooming",children:{skincareRoutines:{title:"Skincare Routines: Radiant Skin Awaits ✨",description:"Unlock the secrets to flawless skin with tailored skincare routines. Learn tips for all skin types and age groups for a natural glow. 😊",slug:"skincare-routines",children:null},nailCare:{title:"Nail Care: Perfect Your Nail Game 💅",description:"Transform your nails with expert nail care tips and trends. Discover designs, maintenance, and products for stunning nails! 💖",slug:"nail-care",children:null},selfCarePractices:{title:"Self-Care Practices: Nurture Your Well-Being 🌼",description:"Embrace self-care with practices that rejuvenate mind and body. Explore routines, tips, and inspiration for holistic beauty. 🌺",slug:"self-care-practices",children:null},other:{title:"Other Grooming Tips: Beyond Basics 💖",description:"Explore diverse personal grooming tips that go beyond the basics. From hair care to hygiene, discover what you need to know! 🌈",slug:"other-grooming-tips",children:null}}},fashionSustainability:{title:"Embrace Eco-Friendly Fashion & Beauty 🌿 | StylishVenture",description:"Discover the latest in fashion sustainability! Explore eco-friendly brands, second-hand shopping tips, sustainable materials, and more! 🌍✨",slug:"fashion-sustainability",children:{ecoFriendlyBrands:{title:"Top Eco-Friendly Brands for Women 🌟 | Sustainable Choices",description:"Explore leading eco-friendly fashion brands that empower you to make sustainable choices without compromising on style! 🌱👗",slug:"eco-friendly-brands",children:null},secondHandShopping:{title:"The Art of Second-Hand Shopping ♻️ | Chic & Sustainable",description:"Unleash the power of thrift! Learn how second-hand shopping promotes sustainability while adding unique pieces to your wardrobe. 🛍️✨",slug:"second-hand-shopping",children:null},sustainableMaterials:{title:"Understanding Sustainable Materials 🌍 | Fashion Insights",description:"Delve into sustainable materials that revolutionize fashion. Discover fabrics that are good for both you and the planet! 🌿👚",slug:"sustainable-materials",children:null},other:{title:"Other Sustainable Fashion Tips 🌸 | Embrace Conscious Living",description:"Explore various sustainable fashion tips, guides, and practices that promote eco-conscious living stylishly and elegantly! 🌼👜",slug:"other-sustainable-fashion-tips",children:null}}},beautyTech:{title:"Explore the Latest Innovations in Beauty Tech for Women 🌟",description:"Discover cutting-edge technology in beauty that empowers women. From skincare apps to hair gadgets, embrace the future of beauty tech! 🚀",slug:"beauty-tech",children:{techInBeauty:{title:"Tech Innovations Transforming the Beauty Industry 💻",description:"Uncover how technology is reshaping the beauty landscape. From virtual makeup to AI skincare analysis, discover the future of beauty tech! 🌺",slug:"tech-in-beauty",children:null},appsForSkincare:{title:"Top Skincare Apps for Flawless Skin 📱💕",description:"Explore the best skincare apps that guide your beauty routine. Get personalized tips and product recommendations for radiant skin! ✨",slug:"apps-for-skincare",children:null},gadgetsForHair:{title:"Must-Have Gadgets for Perfect Hair Days 🌈💇‍♀️",description:"Find the ultimate hair gadgets that make styling effortless. From smart dryers to innovative styling tools, achieve salon-quality results at home! 🎉",slug:"gadgets-for-hair",children:null},other:{title:"Other Cutting-Edge Beauty Technologies 🛠️💖",description:"Dive into various beauty technologies that don't fit the mold. Explore unique devices and innovations enhancing women’s beauty routines! 🌷",slug:"other-beauty-tech",children:null}}}},i=e.AUTHORS_INFO.reduce(((e,t)=>Object.assign(Object.assign({},e),{[t.name]:[t.description]})),{}),s=e.AUTHORS_INFO.map((e=>e.name)),n="👗💄✨👠",r=Object.keys(t),o=[],a=[];for(const e of r){const i=t[e];if(null==i?void 0:i.children){o.push(...Object.keys(i.children));for(const e of o){const t=i.children[e];(null==t?void 0:t.children)&&a.push(...Object.keys(t.children))}}}const l="2024-09-10T00:00:00Z",u="stylishventure",c=`idn-${u}-dev`,d=`idn-${u}`;exports.DEFAULT_DESCRIPTION_EMOJIS=n,exports.authors=i,exports.authorsNames=s,exports.categories=r,exports.dataStructure=t,exports.devBucketName=c,exports.prodBucketName=d,exports.startDate=l,exports.subcategories=o,exports.subsubcategories=a;
@@ -0,0 +1,28 @@
1
+ export declare enum FiltersNames {
2
+ ChicCategories = "Chic Categories",
3
+ StyleStatements = "Style Statements",
4
+ BeautyBuzz = "Beauty Buzz",
5
+ OccasionInspiration = "Occasion Inspiration",
6
+ EmpowermentElements = "Empowerment Elements"
7
+ }
8
+ type ChicCategoriesValues = 'Trendy Outfits' | 'Skincare Secrets' | 'Makeup Mastery' | 'Fashion History';
9
+ type StyleStatementsValues = 'Casual Chic' | 'Bohemian Vibes' | 'Classic Elegance' | 'Edgy Streetwear';
10
+ type BeautyBuzzValues = 'Product Reviews' | 'How-To Guides' | 'Celebrity Trends' | 'Natural Remedies';
11
+ type OccasionInspirationValues = 'Everyday Wear' | 'Office Attire' | 'Date Night Looks' | 'Wedding Guest Glam';
12
+ type EmpowermentElementsValues = 'Body Positivity' | 'Sustainable Fashion' | 'Cultural Inspirations' | 'Confidence Boosting Tips';
13
+ export type ArticleFilters = {
14
+ [FiltersNames.ChicCategories]: ChicCategoriesValues[];
15
+ [FiltersNames.StyleStatements]: StyleStatementsValues[];
16
+ [FiltersNames.BeautyBuzz]: BeautyBuzzValues[];
17
+ [FiltersNames.OccasionInspiration]: OccasionInspirationValues[];
18
+ [FiltersNames.EmpowermentElements]: EmpowermentElementsValues[];
19
+ };
20
+ export declare const chicCategoriesValues: ChicCategoriesValues[];
21
+ export declare const styleStatementsValues: StyleStatementsValues[];
22
+ export declare const beautyBuzzValues: BeautyBuzzValues[];
23
+ export declare const occasionInspirationValues: OccasionInspirationValues[];
24
+ export declare const empowermentElementsValues: EmpowermentElementsValues[];
25
+ export declare const initialFilters: ArticleFilters;
26
+ export declare const fullFilters: ArticleFilters;
27
+ export declare const getFiltersTypesJSON: () => string;
28
+ export {};
@@ -0,0 +1 @@
1
+ "use strict";var e;exports.FiltersNames=void 0,(e=exports.FiltersNames||(exports.FiltersNames={})).ChicCategories="Chic Categories",e.StyleStatements="Style Statements",e.BeautyBuzz="Beauty Buzz",e.OccasionInspiration="Occasion Inspiration",e.EmpowermentElements="Empowerment Elements";const t=["Trendy Outfits","Skincare Secrets","Makeup Mastery","Fashion History"],s=["Casual Chic","Bohemian Vibes","Classic Elegance","Edgy Streetwear"],i=["Product Reviews","How-To Guides","Celebrity Trends","Natural Remedies"],r=["Everyday Wear","Office Attire","Date Night Looks","Wedding Guest Glam"],a=["Body Positivity","Sustainable Fashion","Cultural Inspirations","Confidence Boosting Tips"],o={[exports.FiltersNames.ChicCategories]:[],[exports.FiltersNames.StyleStatements]:[],[exports.FiltersNames.BeautyBuzz]:[],[exports.FiltersNames.OccasionInspiration]:[],[exports.FiltersNames.EmpowermentElements]:[]},n={[exports.FiltersNames.ChicCategories]:t,[exports.FiltersNames.StyleStatements]:s,[exports.FiltersNames.BeautyBuzz]:i,[exports.FiltersNames.OccasionInspiration]:r,[exports.FiltersNames.EmpowermentElements]:a},l=()=>JSON.stringify(n,null,2);exports.beautyBuzzValues=i,exports.chicCategoriesValues=t,exports.empowermentElementsValues=a,exports.fullFilters=n,exports.getFiltersTypesJSON=l,exports.initialFilters=o,exports.occasionInspirationValues=r,exports.styleStatementsValues=s;
@@ -0,0 +1,3 @@
1
+ import { GetDefaultImagesFrontmatter } from 'src/common/types';
2
+ export declare const getDefaultImagesFrontmatter: GetDefaultImagesFrontmatter;
3
+ export declare const prohibitedWordsInAltTitle: RegExp;
@@ -0,0 +1 @@
1
+ "use strict";const e=(e,n)=>{const t=n(e),i=undefined,a=undefined,l=undefined,o=undefined;return[{alt:`${e} Introduction`,filename:`${t}-introduction.png`,title:`${e} Introduction`},{alt:`Magnificent ${e}`,filename:`Magnificent-${t}.png`,title:`Magnificent ${e}`},{alt:`Notable ${e}`,filename:`${t}-notable.png`,title:`Notable ${e}`},{alt:`${e} Summary`,filename:`${t}-summary.png`,title:`${e} Summary`}]},n=/\b(?:hands|men|women|human|people|chief|family|mixing|serving|tasting|rolling)\b/i;exports.getDefaultImagesFrontmatter=e,exports.prohibitedWordsInAltTitle=n;
@@ -0,0 +1,15 @@
1
+ export * from './data';
2
+ export * from './filters';
3
+ export * from './helpers';
4
+ export * from './prompts/images';
5
+ export * from './seo';
6
+ import './styles/colors.css';
7
+ import './styles/fonts.css';
8
+ import './styles/global.css';
9
+ import './styles/sizing.css';
10
+ import './styles/vars.css';
11
+ import './styles/theme.css';
12
+ import * as gpt35Articles from './prompts/gpt35turbo/articles';
13
+ import * as gpt4oMiniArticles from './prompts/gpt4oMini/articles';
14
+ export { gpt35Articles, gpt4oMiniArticles };
15
+ export * from './prompts/data';
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./data.js"),t=require("./filters.js"),s=require("./helpers.js"),r=require("./prompts/images.js"),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.beautyBuzzValues=t.beautyBuzzValues,exports.chicCategoriesValues=t.chicCategoriesValues,exports.empowermentElementsValues=t.empowermentElementsValues,exports.fullFilters=t.fullFilters,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.initialFilters=t.initialFilters,exports.occasionInspirationValues=t.occasionInspirationValues,exports.styleStatementsValues=t.styleStatementsValues,exports.getDefaultImagesFrontmatter=s.getDefaultImagesFrontmatter,exports.prohibitedWordsInAltTitle=s.prohibitedWordsInAltTitle,exports.getOpenAiBasedImagePrompt=r.getOpenAiBasedImagePrompt,exports.getOpenAiBasedImagePromptDalle2=r.getOpenAiBasedImagePromptDalle2,exports.getStableDiffusionImagePrompt=r.getStableDiffusionImagePrompt,exports.AUTHORS_INFO=o.AUTHORS_INFO,exports.AUTHORS_META=o.AUTHORS_META,exports.PAGES_SEO=o.PAGES_SEO,Object.defineProperty(exports,"PageNames",{enumerable:!0,get:function(){return o.PageNames}}),exports.gpt35Articles=a,exports.gpt4oMiniArticles=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: StylishVenture is an engaging infotainment portal dedicated to the realm of fashion and beauty for women. It serves as a go-to resource for women looking for inspiration, tips, and the latest trends in the industry.\n - Detailed description: StylishVenture offers a comprehensive platform where women can explore a wide array of topics related to fashion and beauty. From style guides that help curate the perfect outfit to in-depth articles on skincare routines, the portal aims to empower women with knowledge and resources. Each piece of content is crafted with care, ensuring that readers find valuable insights on the latest trends, product reviews, and personal grooming techniques. StylishVenture emphasizes a community-driven approach, encouraging users to share their experiences and explore diverse perspectives within the fashion and beauty space.\n - Target audience: The primary target audience for StylishVenture includes women aged 18 to 45 who are enthusiastic about fashion and beauty. This demographic encompasses students, young professionals, and mothers who seek to stay informed on the latest styles, beauty products, and self-care practices. Additionally, the portal aims to attract a diverse group of readers from various cultural backgrounds who appreciate fashion as a form of self-expression.\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## Fashion Trends\n - Seasonal Styles\n - Influencer Inspirations\n\n## Beauty Tips\n - Skincare Routines\n - Makeup Techniques\n\n## Product Reviews\n - Trending Products\n - Comparison Guides\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 - Fashion Trends, IF it's applicable to the theme of the article.\n";
3
+ export declare const START_STEP = "highlighting the key points that will be discussed and the relevance of the topic";
4
+ export declare const END_STEP = "synthesizing the information presented throughout";
5
+ export declare const TARGET_AUDIENCE = "women of all ages";
6
+ export declare const IMAGES_PROHIBITED_WORDS = "any numbers, image, slug, step, seo, hand / hands, men, women, human, people, chief, preparing, process, cooking, mixing, serving, tasting, rolling";
7
+ export declare const FILTERS_INFO: string;
@@ -0,0 +1 @@
1
+ "use strict";var e;const t="The article is written for the web portal.I will give you important information regarding the web portal:\n - Brief description: StylishVenture is an engaging infotainment portal dedicated to the realm of fashion and beauty for women. It serves as a go-to resource for women looking for inspiration, tips, and the latest trends in the industry.\n - Detailed description: StylishVenture offers a comprehensive platform where women can explore a wide array of topics related to fashion and beauty. From style guides that help curate the perfect outfit to in-depth articles on skincare routines, the portal aims to empower women with knowledge and resources. Each piece of content is crafted with care, ensuring that readers find valuable insights on the latest trends, product reviews, and personal grooming techniques. StylishVenture emphasizes a community-driven approach, encouraging users to share their experiences and explore diverse perspectives within the fashion and beauty space.\n - Target audience: The primary target audience for StylishVenture includes women aged 18 to 45 who are enthusiastic about fashion and beauty. This demographic encompasses students, young professionals, and mothers who seek to stay informed on the latest styles, beauty products, and self-care practices. Additionally, the portal aims to attract a diverse group of readers from various cultural backgrounds who appreciate fashion as a form of self-expression.\n\n",n="This is important to include the following headers to the section, ONLY if they are applicable to the title, abstract and description of the article:\n## Fashion Trends\n - Seasonal Styles\n - Influencer Inspirations\n\n## Beauty Tips\n - Skincare Routines\n - Makeup Techniques\n\n## Product Reviews\n - Trending Products\n - Comparison Guides\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 - Fashion Trends, IF it's applicable to the theme of the article.\n",a="highlighting the key points that will be discussed and the relevance of the topic",r="synthesizing the information presented throughout",i="women of all ages",o="any numbers, image, slug, step, seo, hand / hands, men, women, human, people, chief, preparing, process, cooking, mixing, serving, tasting, rolling",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=r,exports.FILTERS_INFO=s,exports.IMAGES_PROHIBITED_WORDS=o,exports.START_STEP=a,exports.TARGET_AUDIENCE=i,exports.ZERO_SECTION=n,exports.portalInfo=t;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt35turbo/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),p=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),i=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=i,exports.getFiltersPrompt=p,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt4oMini/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),i=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),p=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=p,exports.getFiltersPrompt=i,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,4 @@
1
+ import { GetOpenAiBasedImagePrompt, GetStableDiffusionImagePrompt } from 'src/common/types';
2
+ export declare const getStableDiffusionImagePrompt: GetStableDiffusionImagePrompt;
3
+ export declare const getOpenAiBasedImagePrompt: GetOpenAiBasedImagePrompt;
4
+ export declare const getOpenAiBasedImagePromptDalle2: GetOpenAiBasedImagePrompt;
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../common/prompts/images.js");const a=({title:a,alt:o,articleTitle:t})=>({prompt:`Award-winning hyper-real cinematic photo of a ${a}, ${o}, for an article ${t} from professional fashion and beauty photograph for a glossy fashion and beauty magazine, fashion style photography, glossy beauty magazine, photorealistic, ultra realistic, maximum detail, highly detailed, commercial photography, foreground focus, instagram, 4K, 8K, volumetric light, cinematic, octane render, uplight, no blur, depth of field, dof, film, bokeh, foreground focus, 35mm photograph`,negativePrompt:e.SD_NEGATIVE_PROMPT}),o=({title:e,alt:a,articleTitle:o})=>`I NEED a hyper-real illustration of a ${e} at food style photography, ${a}, for an article ${o} for a glossy recipe magazine, photorealistic, ultra realistic, maximum detail, highly detailed, food style, food style photography, professional food photography, commercial photography, foreground focus, recipes.com, delish.com, epicurious, instagram, 4K, 8K, volumetric light, octane render, uplight, no blur, depth of field, dof, bokeh, foreground focus. Please exclude any: Photocamera, videocamera, Spotlight, soffit, ramp, scanners, strobe, soffit truss, film props, radio, cooking timer, watches, clocks, men, woman, people, hand, nands, leg, legs, font, username, error, words, letters, digits, autograph, trademark, name, easy-negative, cartoon, worst quality, low quality, blind, bad eyes, ugly eyes, dead eyes, greyscale, monochrome, vignette, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, censored, rabs, muscular, rib, blurry, blur, grainy, teeth, low resolution, lowres, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bw, bad photo, bad photography, bad art, morbid, ugly, asymmetrical, mutated malformed, mutilated, poorly lit, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, duplicate, airbrushed,, anime, semi-realistic, cgi, render, 3D, blender, digital art, manga, amateur, 3D, 3D Game, 3D Game Scene, 3D Character, bad hands, , bad body, bad face, bad teeth, bad arms, bad legs, deformities, drawing, deformed iris, deformed pupils, deformed, painting, crayon, sketch, graphite, impressionist, noisy, poorly drawn hands, poorly drawn face, poorly drawn eyes, mutation, bad proportions, cloned face, disfigured, gross proportions, malformed limbs, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck, incoherent from this hyper-real illustration of a ${e}`,t=({title:e})=>`\n\tPhotorealistic highly detailed image of ingredients for ${e}, arranged professionally as if for a food photography shoot. image should showcase maximum detail realism, with a focus on foreground, emulating the style of a high-definition, 8k resolution professional food photograph. lighting should be volumetric and uplit, with a depth of field and bokeh effect, avoiding any blur for clarity. overall aesthetic should be reminiscent of the Kodak Portrait 800 style.\n\tNegative Prompt:\n\teasy-negative, cartoon, worst quality, low quality, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, blurry, blur, grainy, teeth, low resolution, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, airbrushed, anime, semi-realistic, cgi, render, 3D, blender, manga, amateur, 3D, 3D Game, drawing, sketch\n`;exports.getOpenAiBasedImagePrompt=o,exports.getOpenAiBasedImagePromptDalle2=t,exports.getStableDiffusionImagePrompt=a;
@@ -0,0 +1,23 @@
1
+ export interface PageSeoData {
2
+ title: string;
3
+ description: string;
4
+ }
5
+ export declare enum PageNames {
6
+ Authors = "authors",
7
+ Home = "home",
8
+ NotFound = "not-found",
9
+ AboutUs = "about-us",
10
+ PrivacyPolicy = "privacy-policy",
11
+ Terms = "terms",
12
+ Sitemap = "sitemap"
13
+ }
14
+ export type PagesSeo = Record<PageNames, PageSeoData>;
15
+ export interface AuthorInfo {
16
+ name: string;
17
+ description: string;
18
+ meta_title: string;
19
+ meta_description: string;
20
+ }
21
+ export declare const PAGES_SEO: PagesSeo;
22
+ export declare const AUTHORS_INFO: AuthorInfo[];
23
+ export declare const AUTHORS_META: Record<string, PageSeoData>;
@@ -0,0 +1 @@
1
+ "use strict";var e;exports.PageNames=void 0,(e=exports.PageNames||(exports.PageNames={})).Authors="authors",e.Home="home",e.NotFound="not-found",e.AboutUs="about-us",e.PrivacyPolicy="privacy-policy",e.Terms="terms",e.Sitemap="sitemap";const a={[exports.PageNames.Authors]:{title:"StylishVenture Authors | Meet Our Fashion Experts",description:"Discover the talented writers behind StylishVenture! ✍️ Our team of fashion and beauty enthusiasts bring you the latest trends and tips. Get inspired today! 🌟"},[exports.PageNames.Home]:{title:"StylishVenture - Your Go-To for Fashion & Beauty Trends",description:"Welcome to StylishVenture! 👗✨ Your ultimate source for the latest fashion and beauty insights. Explore our articles for tips, tricks, and style inspiration! 💄"},[exports.PageNames.NotFound]:{title:"404 - Page Not Found | StylishVenture",description:"Oops! 😢 It seems the page you're looking for doesn't exist. But don't worry, check out our fashion and beauty articles for some chic inspiration! 🌸"},[exports.PageNames.AboutUs]:{title:"About StylishVenture | Your Fashion & Beauty Resource",description:"Learn more about StylishVenture! 💖 We’re passionate about empowering women through fashion and beauty. Join us on this stylish journey! 🌈"},[exports.PageNames.PrivacyPolicy]:{title:"Privacy Policy | StylishVenture",description:"Your privacy matters! 🔒 Read StylishVenture's privacy policy to understand how we protect your information while you explore fashion & beauty. 💫"},[exports.PageNames.Terms]:{title:"Terms and Conditions | StylishVenture",description:"Stay informed! 📜 Review StylishVenture's terms and conditions for using our site, ensuring a stylish experience for all our readers! 🙌"},[exports.PageNames.Sitemap]:{title:"Sitemap | Explore StylishVenture",description:"Navigate through StylishVenture! 🗺️ Our sitemap helps you easily find articles on fashion and beauty tailored just for you. 🌹"}},i=[{name:"Riya Malhotra",description:"Riya Malhotra is a renowned fashion consultant and writer based in Mumbai. With over 10 years of experience in the fashion industry, she has worked with several top brands and fashion magazines. Riya specializes in sustainable fashion and empowering women through style, promoting body positivity and inclusivity.",meta_title:"Riya Malhotra - Fashion Consultant & Writer",meta_description:"Discover the stylish insights of Riya Malhotra, a Mumbai-based fashion consultant with over 10 years of experience in promoting sustainable and inclusive fashion trends for women."},{name:"Neha Gupta",description:"Neha Gupta is a beauty editor and influencer with a passion for natural skincare and makeup. With a background in cosmetology, Neha has been writing for leading beauty magazines for six years, providing tips on beauty, health, and wellness tailored for modern women.",meta_title:"Neha Gupta - Beauty Editor & Influencer",meta_description:"Explore beauty tips and tricks from Neha Gupta, a seasoned beauty editor with expertise in natural skincare and makeup, dedicated to empowering women's beauty routines."},{name:"Anjali Verma",description:"Anjali Verma is a fashion and lifestyle journalist based in Delhi, specializing in contemporary design and Indian traditions. With over 8 years of experience, her work promotes the fusion of cultural heritage and modern aesthetics in women's fashion.",meta_title:"Anjali Verma - Fashion & Lifestyle Journalist",meta_description:"Read captivating articles by Anjali Verma, a Delhi-based fashion journalist who blends Indian traditions with contemporary style, inspiring women through unique fashion narratives."},{name:"Pooja Reddy",description:"Pooja Reddy is a popular lifestyle blogger and fashion enthusiast from Bangalore. With a focus on affordable fashion and beauty hacks, Pooja's relatable content has garnered a loyal following of women seeking style inspiration without breaking the bank.",meta_title:"Pooja Reddy - Lifestyle Blogger & Fashion Enthusiast",meta_description:"Join Pooja Reddy on her fashionable journey as she shares insightful blogging on affordable fashion and beauty tips for women looking to look stylish on a budget."},{name:"Sonia Kapoor",description:"Sonia Kapoor is a well-respected fashion stylist and writer based in Chennai. Known for her keen eye for detail and her experience in high-fashion photo shoots, Sonia guides women on personal styling and curating wardrobes that reflect their individuality.",meta_title:"Sonia Kapoor - Fashion Stylist & Writer",meta_description:"Discover the artistry of fashion styling with Sonia Kapoor, a Chennai-based stylist dedicated to helping women create unique and personal fashion statements through her expert guidance."},{name:"Karishma Mehta",description:"Karishma Mehta is a featured beauty and wellness writer who focuses on holistic approaches to beauty, integrating lifestyle and mental well-being. With over 5 years of experience, she emphasizes the importance of self-care for women.",meta_title:"Karishma Mehta - Beauty & Wellness Writer",meta_description:"Explore holistic beauty practices with Karishma Mehta, a passionate writer dedicated to empowering women through beauty, wellness, and self-care insights."},{name:"Tanvi Sethi",description:"Tanvi Sethi is an emerging fashion blogger and content creator based in Kolkata, dedicated to showcasing Indian artisanship and craftsmanship. Her articles resonate with women who appreciate handmade fashion products and ethical consumerism.",meta_title:"Tanvi Sethi - Fashion Blogger & Content Creator",meta_description:"Delve into the world of artisan fashion with Tanvi Sethi, an inspiring Kolkata-based blogger passionate about promoting handmade products and ethical fashion choices."},{name:"Aditi Joshi",description:"Aditi Joshi is a seasoned beauty guru and freelance writer who has been in the beauty industry for over 12 years. Based in Pune, she focuses on beauty reviews and product comparisons, helping women navigate the vast beauty landscape.",meta_title:"Aditi Joshi - Beauty Guru & Writer",meta_description:"Unlock the secrets of beauty with Aditi Joshi, a trusted expert and writer providing insightful reviews and comparisons to assist women in their beauty choices."},{name:"Divya Singh",description:"Divya Singh is a stylist and lifestyle consultant from Hyderabad, specializing in modern ethnic wear. With 7 years of industry experience, she assists women in finding the perfect outfits for every occasion, blending traditional styles with contemporary trends.",meta_title:"Divya Singh - Stylist & Lifestyle Consultant",meta_description:"Discover stylish solutions with Divya Singh, a Hyderabad-based stylist committed to helping women select the perfect modern ethnic attire for any occasion."},{name:"Simran Kaur",description:"Simran Kaur is a fashion trend analyst and writer who has engaged with various fashion weeks globally. She shares insights on upcoming trends and seasonal styles, beneficial for women looking to stay ahead in the fashion game.",meta_title:"Simran Kaur - Fashion Trend Analyst & Writer",meta_description:"Stay updated on the latest fashion trends with Simran Kaur, a global analyst sharing expert insights to help women elevate their style every season."},{name:"Riya Kapoor",description:"Riya Kapoor is a fashion stylist and writer based in Mumbai. With over five years of experience in the fashion industry, she has worked with numerous brands and magazines, providing her insights on trendy styles for women. Riya's articles focus on sustainable fashion and empowering women through style.",meta_title:"Riya Kapoor - Fashion Stylist & Writer at StylishVenture",meta_description:"Explore the latest fashion trends and sustainable style tips from Riya Kapoor, a seasoned fashion stylist and writer dedicated to empowering women through fashion."},{name:"Anjali Mehta",description:"Anjali Mehta is a beauty expert and journalist from New Delhi, known for her in-depth reviews and tutorials on skincare and makeup. With over seven years of writing experience, Anjali helps women navigate the beauty industry with clarity and confidence.",meta_title:"Anjali Mehta - Beauty Expert & Journalist at StylishVenture",meta_description:"Discover beauty tips and skincare secrets with Anjali Mehta, an experienced beauty expert sharing her insights to help women look and feel their best."},{name:"Sofia Khan",description:"Sofia Khan, a fashion blogger and influencer from Bangalore, has a versatile approach to women’s fashion. She combines modern trends with traditional aesthetics, showcasing her unique style and perspective through her engaging articles.",meta_title:"Sofia Khan - Fashion Blogger & Influencer at StylishVenture",meta_description:"Join Sofia Khan on a stylish journey where modern and traditional fashion blend seamlessly. Read her articles for the latest trends and style inspiration!"},{name:"Leela Nair",description:"Leela Nair is a renowned fashion journalist and author who has spent over a decade analyzing the fashion industry. Based in Chennai, she focuses on women’s rights in fashion, advocating for body positivity and diversity in style.",meta_title:"Leela Nair - Fashion Journalist & Advocate at StylishVenture",meta_description:"Get inspired by Leela Nair's powerful narratives on body positivity and diversity in fashion. Advocate for change and empowerment with her insightful articles!"},{name:"Priya Varma",description:"Priya Varma, a lifestyle influencer from Hyderabad, specializes in beauty hacks and affordable fashion. Her relatable approach and extensive knowledge have made her a trusted source for many women seeking style guidance.",meta_title:"Priya Varma - Lifestyle Influencer & Author at StylishVenture",meta_description:"Unlock affordable beauty hacks and fashion secrets with Priya Varma! Her articles offer relatable style solutions for every woman looking to elevate her wardrobe."},{name:"Natasha Joshi",description:"Natasha Joshi is an accomplished fashion consultant with over eight years of experience. She pairs her professional expertise with a penchant for writing, offering invaluable advice to women on wardrobe essentials.",meta_title:"Natasha Joshi - Fashion Consultant & Writer at StylishVenture",meta_description:"Learn essential wardrobe tips and styling advice from Natasha Joshi, a seasoned fashion consultant advocating for every woman’s unique style journey."},{name:"Mira Das",description:"Mira Das is a skincare enthusiast and freelance writer from Pune. With a scientific background in dermatology, her articles delve into the science behind skincare products, helping women make informed choices.",meta_title:"Mira Das - Skincare Enthusiast & Writer at StylishVenture",meta_description:"Discover science-backed skincare tips and product recommendations from Mira Das, a knowledgeable writer dedicated to helping women achieve beautiful skin."},{name:"Aditi Sharma",description:"Aditi Sharma is a fashion editor and curator with over a decade of experience. With a keen eye for detail, she brings forth fresh trends and impactful storytelling to inspire women’s fashion choices.",meta_title:"Aditi Sharma - Fashion Editor & Curator at StylishVenture",meta_description:"Step into the world of fresh trends and impactful storytelling with Aditi Sharma, a seasoned fashion editor inspiring women to embrace their individual style."},{name:"Neha Ghosh",description:"Neha Ghosh is a beauty and wellness writer from Kolkata. With her expertise in holistic beauty methods, she educates women on natural skincare solutions and healthy living practices.",meta_title:"Neha Ghosh - Beauty & Wellness Writer at StylishVenture",meta_description:"Embrace natural beauty with Neha Ghosh, a dedicated wellness writer sharing holistic beauty tips and healthy lifestyle practices for the modern woman."},{name:"Tara Singh",description:"Tara Singh is a fashion analyst and stylist based in Gurugram. With extensive experience in the fashion market, she focuses on the intersection of fashion economics and women’s empowerment in her writing.",meta_title:"Tara Singh - Fashion Analyst & Stylist at StylishVenture",meta_description:"Explore the unique intersection of fashion and empowerment with Tara Singh, a fashion analyst shedding light on how style influences women's lives."},{name:"Ananya Mehta",description:"With a background in fashion design, Ananya Mehta is a writer and stylist dedicated to helping women express themselves through their style. She has worked with numerous celebrities and brands, both in India and internationally, to create iconic looks.",meta_title:"Ananya Mehta - Fashion Stylist & Writer | StylishVenture",meta_description:"Explore the world of fashion with Ananya Mehta, a noted stylist and writer. Learn how to elevate your personal style on StylishVenture."},{name:"Saanvi Desai",description:"Saanvi Desai is a beauty expert with a focus on clean beauty and skincare. Having worked with various skincare brands to promote natural and organic products, she shares her experiences and recommendations on StylishVenture.",meta_title:"Saanvi Desai - Clean Beauty Expert | StylishVenture",meta_description:"Join Saanvi Desai on her beauty journey, exploring clean and organic products. Discover skincare tips and advice at StylishVenture."},{name:"Neha Sethi",description:"Neha Sethi is an experienced content creator specializing in beauty and lifestyle. She shares her knowledge of makeup techniques and product reviews that empowers women to feel beautiful.",meta_title:"Neha Sethi - Beauty & Lifestyle Writer | StylishVenture",meta_description:"Get inspired by Neha Sethi's content on beauty and lifestyle. Discover makeup tips, product reviews, and more at StylishVenture."},{name:"Priya Chawla",description:"Priya Chawla is a fashion editor with a flair for identifying trends before they become mainstream. She has written for numerous fashion publications in India and shares her insights on StylishVenture.",meta_title:"Priya Chawla - Fashion Editor & Trend Spotter | StylishVenture",meta_description:"Stay ahead in fashion with Priya Chawla's expert insights and trend spotting articles on StylishVenture."},{name:"Kriti Malhotra",description:"Kriti Malhotra is an acclaimed makeup artist and beauty writer. With years of experience transforming looks for red carpet events, she offers unique beauty tips and tutorials on StylishVenture.",meta_title:"Kriti Malhotra - Makeup Artist & Beauty Writer | StylishVenture",meta_description:"Learn from Kriti Malhotra, a professional makeup artist sharing beauty tips and tutorials for all occasions on StylishVenture."},{name:"Shreya Agarwal",description:"Shreya Agarwal blends fashion and technology, writing about the latest innovations in the fashion industry. As a tech-savvy fashion writer, she brings a contemporary approach to StylishVenture.",meta_title:"Shreya Agarwal - Fashion & Tech Writer | StylishVenture",meta_description:"Explore the intersection of fashion and technology with Shreya Agarwal. Discover innovative trends on StylishVenture."},{name:"Tanya Bhatia",description:"Tanya Bhatia is a cultural fashion expert focused on traditional and contemporary Indian fashion. She explores heritage styles and modern adaptations in her writings for StylishVenture.",meta_title:"Tanya Bhatia - Cultural Fashion Expert | StylishVenture",meta_description:"Dive into the rich world of Indian fashion with Tanya Bhatia. Explore traditional styles and modern interpretations on StylishVenture."},{name:"Divya Nair",description:"Divya Nair is a women's fashion advocate and blogger who emphasizes body positivity and self-love. Her content on StylishVenture inspires women to embrace their unique beauty.",meta_title:"Divya Nair - Body Positivity Advocate | StylishVenture",meta_description:"Embrace your unique beauty with Divya Nair. Discover articles on body positivity and fashion for every woman on StylishVenture."},{name:"Anisha Bhatt",description:"Anisha Bhatt is a fashion enthusiast from Mumbai with over 8 years of experience in the fashion industry. She specializes in sustainable fashion and promotes eco-friendly brands through her writing. Anisha has contributed to various leading fashion magazines and blogs, providing insights into the latest trends and ethical buying practices.",meta_title:"Anisha Bhatt | Sustainable Fashion Writer at StylishVenture",meta_description:"Discover the insights of Anisha Bhatt, a fashion enthusiast and sustainable fashion writer at StylishVenture, sharing tips for eco-friendly wardrobe choices."},{name:"Meera Kapoor",description:"Based in Delhi, Meera Kapoor is a beauty expert with a decade of experience in product marketing and brand strategy. She has worked with global beauty brands and writes about skincare, makeup trends, and product reviews. Her engaging articles often focus on empowering women through beauty.",meta_title:"Meera Kapoor | Beauty Expert at StylishVenture",meta_description:"Learn from Meera Kapoor, a seasoned beauty expert at StylishVenture, as she shares her expertise in skincare and makeup trends."},{name:"Riya Choudhury",description:"Riya Choudhury is a Kolkata-based fashion journalist who has been writing on fashion and lifestyle for over 5 years. She has a keen eye for street style and often shares her unique perspectives on blending traditional and contemporary styles in her articles.",meta_title:"Riya Choudhury | Fashion Journalist at StylishVenture",meta_description:"Explore the blend of traditional and contemporary styles with Riya Choudhury, a fashion journalist at StylishVenture."},{name:"Pooja Desai",description:"Pooja Desai is a PhD candidate in Textile Design who writes about the intersection of fashion, culture, and technology. She is passionate about teaching readers how to make informed fashion choices that reflect their individual style and values.",meta_title:"Pooja Desai | Fashion & Culture Writer at StylishVenture",meta_description:"Follow Pooja Desai at StylishVenture for expert advice on the intersection of fashion, culture, and technology."},{name:"Tanya Mehta",description:"Tanya Mehta is a professional makeup artist turned beauty writer, currently residing in Bangalore. With over 6 years of experience, she provides practical beauty tips, tutorials, and product recommendations tailored to women's needs.",meta_title:"Tanya Mehta | Makeup Artist & Writer at StylishVenture",meta_description:"Get practical beauty tips and tutorials from Tanya Mehta, a professional makeup artist and writer at StylishVenture."},{name:"Sanya Nair",description:"Sanya Nair is a fashion and beauty blogger from Chennai with a passion for promoting diversity in fashion. Her articles focus on body positivity and inclusive beauty, offering readers a refreshing perspective on self-love and confidence.",meta_title:"Sanya Nair | Fashion & Beauty Blogger at StylishVenture",meta_description:"Join Sanya Nair at StylishVenture for inspiring articles on body positivity and inclusive beauty trends."},{name:"Kavya Reddy",description:"Kavya Reddy is a fashion designer and stylist based in Hyderabad. With extensive experience in haute couture, she shares insights into the latest fashion trends, styling tips, and how to dress for different occasions.",meta_title:"Kavya Reddy | Fashion Designer at StylishVenture",meta_description:"Explore the latest trends and styling tips with Kavya Reddy, a talented fashion designer at StylishVenture."},{name:"Nisha Sharma",description:"Nisha Sharma is a beauty editor known for her expertise in skincare and makeup formulation. Having worked in both freelance and corporate settings, she enjoys demystifying beauty for her readers through scientific insights and practical advice.",meta_title:"Nisha Sharma | Beauty Editor at StylishVenture",meta_description:"Discover a scientific approach to beauty with Nisha Sharma, beauty editor at StylishVenture, sharing her insights on skincare and makeup."},{name:"Alisha Verma",description:"Alisha Verma is a celebrated fashion influencer from Pune, recognized for her work in promoting indie brands. With over 4 years of experience, her articles emphasize personal branding and the importance of unique fashion statements.",meta_title:"Alisha Verma | Fashion Influencer at StylishVenture",meta_description:"Follow Alisha Verma at StylishVenture for tips on personal branding and unique fashion statements inspired by indie brands."},{name:"Ava Chen",description:"Ava Chen is a renowned fashion critic and style consultant based in New York City. With over a decade of experience in the fashion industry, she has worked with leading brands and magazines, providing her insights on the latest trends and styles for women. Ava has a knack for blending classic pieces with modern aesthetics, making her articles a must-read for anyone looking to elevate their wardrobe.",meta_title:"Ava Chen - Fashion Critic and Style Consultant | StylishVenture",meta_description:"Explore the latest fashion trends and style tips from Ava Chen, a seasoned fashion critic based in New York City. Get inspired for your next look!"},{name:"Emily Harrison",description:"Emily Harrison is a beauty expert and lifestyle blogger from London. She has spent over 8 years in the beauty industry, working with numerous cosmetic brands and sharing her knowledge through her engaging blog posts and articles. Her passion for beauty and skincare translates into her writing, where she provides readers with practical advice and tutorials to enhance their natural beauty.",meta_title:"Emily Harrison - Beauty Expert & Lifestyle Blogger | StylishVenture",meta_description:"Discover expert beauty tips and skincare routines from Emily Harrison, a leading beauty expert in London. Enhance your natural beauty with her insights!"},{name:"Sofia Martinez",description:"Sofia Martinez, based in Barcelona, Spain, is a fashion designer and influencer known for her unique and bold style. With a background in fashion design and several collaborations with top brands, she empowers women to express themselves through their clothing. Her articles on StylishVenture focus on sustainable fashion and how to mix high-end pieces with affordable fashion.",meta_title:"Sofia Martinez - Fashion Designer and Influencer | StylishVenture",meta_description:"Join Sofia Martinez on StylishVenture as she explores sustainable fashion and shares her bold style tips. Fashion with a conscience awaits!"},{name:"Maya Gupta",description:"Maya Gupta is an Indian fashion and beauty writer based in Mumbai. With over 5 years of experience in the field, she specializes in traditional Indian fashion and modern beauty trends. Maya's writing combines rich cultural insights with practical fashion advice, aiming to showcase the diversity of style in women’s fashion today.",meta_title:"Maya Gupta - Fashion and Beauty Writer | StylishVenture",meta_description:"Discover the intersection of traditional and modern fashion with Maya Gupta, a renowned fashion and beauty writer from Mumbai. Embrace diversity in style!"},{name:"Lila Johnson",description:"Lila Johnson is a marketing professional turned fashion writer in Los Angeles. With a background in digital marketing, Lila has extensive knowledge of branding and consumer behavior. Her articles provide a unique perspective on fashion marketing, guiding women on how to craft their personal style while staying trendy and true to themselves.",meta_title:"Lila Johnson - Fashion Writer & Marketing Expert | StylishVenture",meta_description:"Learn from Lila Johnson, a fashion writer and marketing expert from Los Angeles. Find your authentic style while navigating the latest trends!"},{name:"Nora Ibrahim",description:"Nora Ibrahim is a Middle Eastern beauty consultant and lifestyle coach based in Dubai. Passionate about empowering women, she offers bespoke beauty and wellness advice. Nora's articles on StylishVenture embrace diverse beauty standards and provide readers with holistic approaches to feeling and looking their best.",meta_title:"Nora Ibrahim - Beauty Consultant & Lifestyle Coach | StylishVenture",meta_description:"Explore beauty and wellness with Nora Ibrahim, a Dubai-based consultant dedicated to empowering women. Uncover holistic beauty approaches at StylishVenture!"},{name:"Clara Yang",description:"Clara Yang is a fashion photographer and stylist based in Seoul, South Korea. With a keen eye for aesthetics, she has worked with fashion magazines and brands worldwide. Clara’s articles emphasize visual storytelling in fashion, inspiring women to experiment with their styles through creative photography and outfit ideas.",meta_title:"Clara Yang - Fashion Photographer & Stylist | StylishVenture",meta_description:"Join Clara Yang, a Seoul-based fashion photographer, as she shares visual storytelling in fashion. Discover how to elevate your style through creativity!"},{name:"Zara White",description:"Zara White, a Canadian journalist and lifestyle editor, covers fashion and beauty trends from a societal perspective. With over 7 years of experience in media, she sheds light on how fashion intersects with culture and identity. Zara’s impactful writing resonates with women seeking a deeper understanding of their style choices in today's world.",meta_title:"Zara White - Fashion Journalist & Lifestyle Editor | StylishVenture",meta_description:"Dive into the societal nuances of fashion with Zara White, a Canadian journalist. Discover how culture influences beauty and style choices today!"},{name:"Fatima Khan",description:"Fatima Khan is a Pakistani fashion stylist and influencer, known for her vibrant and eclectic fashion sense. Based in Karachi, she has collaborated with various influencers and brands, offering personalized styling tips. Fatima’s colorful writing inspires women to embrace their individuality and express themselves through fashion.",meta_title:"Fatima Khan - Fashion Stylist & Influencer | StylishVenture",meta_description:"Add a splash of color to your wardrobe with Fatima Khan, a Karachi-based fashion stylist. Discover unique styling tips to express your individuality!"},{name:"Diana Lewis",description:"Diana Lewis is a fashion journalist and editor from Australia with over a decade of experience in the industry. She specializes in runway coverage and emerging designers, bringing fresh perspectives to StylishVenture. Diana's writing not only covers trends but also highlights the importance of supporting local artisans and sustainable brands.",meta_title:"Diana Lewis - Fashion Journalist & Editor | StylishVenture",meta_description:"Stay ahead of the trends with Diana Lewis, an Australian fashion journalist. Explore runway insights and support sustainable fashion like never before!"},{name:"Emma Wilson",description:"Emma Wilson is a fashion journalist with over 10 years of experience covering trends in women's fashion and beauty. Based in New York City, she has worked with several major fashion magazines and online publications, offering insights into the latest runway shows and beauty innovations.",meta_title:"Emma Wilson - Fashion & Beauty Writer at StylishVenture",meta_description:"Discover the latest trends, tips, and innovations in women's fashion and beauty with Emma Wilson, a seasoned expert with over a decade of experience."},{name:"Sofia Garcia",description:"Sofia Garcia is a beauty expert and content creator from Barcelona, Spain. With a background in cosmetic chemistry, she provides a unique perspective on beauty products, skincare, and makeup techniques. Her passion lies in helping women enhance their natural beauty.",meta_title:"Sofia Garcia - Beauty Expert at StylishVenture",meta_description:"Join Sofia Garcia at StylishVenture for expert beauty advice, skincare tips, and makeup tutorials from a Spanish cosmetic chemist."},{name:"Aisha Patel",description:"Aisha Patel is a lifestyle blogger and fashion stylist from Mumbai, India. With an eye for vibrant colors and textures, she specializes in blending traditional Indian attire with contemporary fashion. Her work promotes cultural inclusivity in women's fashion.",meta_title:"Aisha Patel - Fashion Stylist at StylishVenture",meta_description:"Explore the fusion of traditional and modern fashion with Aisha Patel, a Mumbai-based stylist dedicated to promoting cultural diversity in women's attire."},{name:"Lucy Chen",description:"Lucy Chen is a fashion enthusiast and writer from London, UK. She has gained recognition for her engaging articles on sustainable fashion and ethical beauty. By collaborating with local brands, Lucy encourages women to make conscious fashion choices.",meta_title:"Lucy Chen - Sustainable Fashion Advocate at StylishVenture",meta_description:"Learn about sustainable fashion and ethical beauty practices with Lucy Chen, a London-based writer passionate about making fashion eco-friendly and accessible."},{name:"Chloe Thompson",description:"Chloe Thompson is a celebrity stylist and fashion consultant from Los Angeles, California. With a decade of experience dressing A-list celebrities, she shares insider tips and style advice to help women achieve their red-carpet looks effortlessly.",meta_title:"Chloe Thompson - Celebrity Stylist at StylishVenture",meta_description:"Unlock the secrets of celebrity fashion with Chloe Thompson, an LA-based stylist sharing tips and tricks to achieve glamorous looks for any occasion."},{name:"Fatima El-Sayed",description:"Fatima El-Sayed is an experienced fashion editor and writer based in Cairo, Egypt. With a rich heritage in fashion history, she explores the intersection of contemporary trends and traditional attire, highlighting the beauty of Middle Eastern fashion in her writing.",meta_title:"Fatima El-Sayed - Fashion Editor at StylishVenture",meta_description:"Delve into the world of Middle Eastern fashion with Fatima El-Sayed, a Cairo-based editor showcasing the blend of tradition and modernity in women’s style."},{name:"Maya Abadi",description:"Maya Abadi is a stylist and beauty influencer from Tel Aviv, Israel. Known for her bold and innovative approach to beauty and fashion, she works with a diverse clientele and shares her styling experiences on various platforms, inspiring women to embrace creativity in their style.",meta_title:"Maya Abadi - Creative Stylist at StylishVenture",meta_description:"Get inspired by Maya Abadi's innovative fashion and beauty insights. A Tel Aviv-based stylist embracing creativity and boldness in women’s fashion."},{name:"Julia Novak",description:"Julia Novak is a European fashion blogger from Berlin, Germany. With a flair for minimalist style and DIY beauty hacks, she empowers women to express their individuality through simple yet chic fashion choices.",meta_title:"Julia Novak - Minimalist Fashion Blogger at StylishVenture",meta_description:"Discover minimalist fashion and DIY beauty tips with Julia Novak, a Berlin-based blogger passionate about helping women achieve effortless style."},{name:"Lia Santos",description:"Lia Santos is a Brazilian fashion writer and influencer based in São Paulo. She combines her love for vibrant local culture with modern fashion trends, sharing her unique perspective on how to infuse Brazilian flair into women's wardrobes.",meta_title:"Lia Santos - Cultural Fashion Writer at StylishVenture",meta_description:"Celebrate Brazilian culture in fashion with Lia Santos, a São Paulo-based writer showcasing vibrant trends and styles for women worldwide."},{name:"Nina Schmidt",description:"Nina Schmidt is a holistic beauty advocate and writer from Amsterdam, Netherlands. With a focus on natural beauty products and wellness, she educates women on how to enhance their beauty routines with health-conscious choices.",meta_title:"Nina Schmidt - Holistic Beauty Advocate at StylishVenture",meta_description:"Learn about holistic beauty and wellness with Nina Schmidt, an Amsterdam-based writer dedicated to promoting health-conscious choices in women’s beauty routines."}],t=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=t,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:#3c243a;--theme-color-8:#6b4a84;--theme-color-7:#935b8c;--theme-color-6:#b788a8;--theme-color-5:#d4a7bb;--theme-color-3:#e4c3d3;--theme-color-2:#f7e2e9;--color-bg-layout:#ffffff;--color-bg-hover:#f2d9e1;--article-border-radius:25px;--btn-border-radius:15px;--category-border-radius:30px;}
@@ -0,0 +1 @@
1
+ @import "sizing.css";@import "colors.css";@import "fonts.css";@import "theme.css";
@@ -188,7 +188,7 @@ export declare const dataStructure: {
188
188
  export declare const authors: Record<string, string>;
189
189
  export declare const authorsNames: string[];
190
190
  export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83D\uDC83\uD83D\uDC57\uD83D\uDC84\uD83D\uDC85";
191
- export declare const categories: ("accessories" | "makeupAndSkincare" | "fashionAndBeauty" | "seasonalTrends" | "hairCare")[];
191
+ export declare const categories: ("accessories" | "hairCare" | "makeupAndSkincare" | "fashionAndBeauty" | "seasonalTrends")[];
192
192
  export declare const subcategories: string[];
193
193
  export declare const subsubcategories: string[];
194
194
  export type Category = keyof typeof dataStructure;
@@ -182,7 +182,7 @@ export declare const dataStructure: {
182
182
  export declare const authors: Record<string, string>;
183
183
  export declare const authorsNames: string[];
184
184
  export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83D\uDC84\uD83D\uDC85\u2728\uD83D\uDC81";
185
- export declare const categories: ("productReviews" | "makeup" | "hairCare" | "beautyAndSkincare" | "trendWatch")[];
185
+ export declare const categories: ("productReviews" | "hairCare" | "makeup" | "beautyAndSkincare" | "trendWatch")[];
186
186
  export declare const subcategories: string[];
187
187
  export declare const subsubcategories: string[];
188
188
  export type Category = keyof typeof dataStructure;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tedo-publisher",
3
- "version": "1.3.242",
3
+ "version": "1.3.244",
4
4
  "description": "Package for config files and reusable code/components between projects",
5
5
  "main": "dist/index.js",
6
6
  "files": [