tedo-publisher 1.3.284 → 1.3.286

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/charmhavens/data.d.ts +236 -0
  2. package/dist/charmhavens/data.js +1 -0
  3. package/dist/charmhavens/filters.d.ts +28 -0
  4. package/dist/charmhavens/filters.js +1 -0
  5. package/dist/charmhavens/helpers.d.ts +3 -0
  6. package/dist/charmhavens/helpers.js +1 -0
  7. package/dist/charmhavens/index.d.ts +15 -0
  8. package/dist/charmhavens/index.js +1 -0
  9. package/dist/charmhavens/prompts/data.d.ts +7 -0
  10. package/dist/charmhavens/prompts/data.js +1 -0
  11. package/dist/charmhavens/prompts/gpt35turbo/articles.d.ts +6 -0
  12. package/dist/charmhavens/prompts/gpt35turbo/articles.js +1 -0
  13. package/dist/charmhavens/prompts/gpt4oMini/articles.d.ts +6 -0
  14. package/dist/charmhavens/prompts/gpt4oMini/articles.js +1 -0
  15. package/dist/charmhavens/prompts/images.d.ts +4 -0
  16. package/dist/charmhavens/prompts/images.js +1 -0
  17. package/dist/charmhavens/seo.d.ts +23 -0
  18. package/dist/charmhavens/seo.js +1 -0
  19. package/dist/charmhavens/styles/colors.css +1 -0
  20. package/dist/charmhavens/styles/fonts.css +1 -0
  21. package/dist/charmhavens/styles/global.css +1 -0
  22. package/dist/charmhavens/styles/sizing.css +1 -0
  23. package/dist/charmhavens/styles/theme.css +1 -0
  24. package/dist/charmhavens/styles/vars.css +1 -0
  25. package/dist/crystalcasas/data.d.ts +1 -1
  26. package/dist/elegantroost/data.d.ts +162 -0
  27. package/dist/elegantroost/data.js +1 -0
  28. package/dist/elegantroost/filters.d.ts +28 -0
  29. package/dist/elegantroost/filters.js +1 -0
  30. package/dist/elegantroost/helpers.d.ts +3 -0
  31. package/dist/elegantroost/helpers.js +1 -0
  32. package/dist/elegantroost/index.d.ts +15 -0
  33. package/dist/elegantroost/index.js +1 -0
  34. package/dist/elegantroost/prompts/data.d.ts +7 -0
  35. package/dist/elegantroost/prompts/data.js +1 -0
  36. package/dist/elegantroost/prompts/gpt35turbo/articles.d.ts +6 -0
  37. package/dist/elegantroost/prompts/gpt35turbo/articles.js +1 -0
  38. package/dist/elegantroost/prompts/gpt4oMini/articles.d.ts +6 -0
  39. package/dist/elegantroost/prompts/gpt4oMini/articles.js +1 -0
  40. package/dist/elegantroost/prompts/images.d.ts +4 -0
  41. package/dist/elegantroost/prompts/images.js +1 -0
  42. package/dist/elegantroost/seo.d.ts +23 -0
  43. package/dist/elegantroost/seo.js +1 -0
  44. package/dist/elegantroost/styles/colors.css +1 -0
  45. package/dist/elegantroost/styles/fonts.css +1 -0
  46. package/dist/elegantroost/styles/global.css +1 -0
  47. package/dist/elegantroost/styles/sizing.css +1 -0
  48. package/dist/elegantroost/styles/theme.css +1 -0
  49. package/dist/elegantroost/styles/vars.css +1 -0
  50. package/dist/luminousnook/data.d.ts +1 -1
  51. package/package.json +1 -1
@@ -0,0 +1,236 @@
1
+ export declare const dataStructure: {
2
+ beautifulHomes: {
3
+ title: string;
4
+ description: string;
5
+ slug: string;
6
+ children: {
7
+ modernDesign: {
8
+ title: string;
9
+ description: string;
10
+ slug: string;
11
+ children: null;
12
+ };
13
+ luxuriousInteriors: {
14
+ title: string;
15
+ description: string;
16
+ slug: string;
17
+ children: null;
18
+ };
19
+ ecoFriendlyHomes: {
20
+ title: string;
21
+ description: string;
22
+ slug: string;
23
+ children: null;
24
+ };
25
+ historicProperties: {
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
+ incredibleLocations: {
40
+ title: string;
41
+ description: string;
42
+ slug: string;
43
+ children: {
44
+ worldsHiddenGems: {
45
+ title: string;
46
+ description: string;
47
+ slug: string;
48
+ children: null;
49
+ };
50
+ beachDestinations: {
51
+ title: string;
52
+ description: string;
53
+ slug: string;
54
+ children: null;
55
+ };
56
+ mountainRetreats: {
57
+ title: string;
58
+ description: string;
59
+ slug: string;
60
+ children: null;
61
+ };
62
+ urbanEscapes: {
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
+ interiorDesignTips: {
77
+ title: string;
78
+ description: string;
79
+ slug: string;
80
+ children: {
81
+ colorSchemes: {
82
+ title: string;
83
+ description: string;
84
+ slug: string;
85
+ children: null;
86
+ };
87
+ furnitureArrangement: {
88
+ title: string;
89
+ description: string;
90
+ slug: string;
91
+ children: null;
92
+ };
93
+ decorAccents: {
94
+ title: string;
95
+ description: string;
96
+ slug: string;
97
+ children: null;
98
+ };
99
+ spaceMaximization: {
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
+ architectureStyles: {
114
+ title: string;
115
+ description: string;
116
+ slug: string;
117
+ children: {
118
+ contemporaryArchitecture: {
119
+ title: string;
120
+ description: string;
121
+ slug: string;
122
+ children: null;
123
+ };
124
+ rusticCharm: {
125
+ title: string;
126
+ description: string;
127
+ slug: string;
128
+ children: null;
129
+ };
130
+ minimalistDesign: {
131
+ title: string;
132
+ description: string;
133
+ slug: string;
134
+ children: null;
135
+ };
136
+ traditionalHomes: {
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
+ travelInspiration: {
151
+ title: string;
152
+ description: string;
153
+ slug: string;
154
+ children: {
155
+ destinationGuides: {
156
+ title: string;
157
+ description: string;
158
+ slug: string;
159
+ children: null;
160
+ };
161
+ travelItineraries: {
162
+ title: string;
163
+ description: string;
164
+ slug: string;
165
+ children: null;
166
+ };
167
+ localCuisines: {
168
+ title: string;
169
+ description: string;
170
+ slug: string;
171
+ children: null;
172
+ };
173
+ culturalExperiences: {
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
+ lifestyleEnhancements: {
188
+ title: string;
189
+ description: string;
190
+ slug: string;
191
+ children: {
192
+ outdoorLivingIdeas: {
193
+ title: string;
194
+ description: string;
195
+ slug: string;
196
+ children: null;
197
+ };
198
+ homeWellness: {
199
+ title: string;
200
+ description: string;
201
+ slug: string;
202
+ children: null;
203
+ };
204
+ smartHomeTech: {
205
+ title: string;
206
+ description: string;
207
+ slug: string;
208
+ children: null;
209
+ };
210
+ personalizedSpaces: {
211
+ title: string;
212
+ description: string;
213
+ slug: string;
214
+ children: null;
215
+ };
216
+ other: {
217
+ title: string;
218
+ description: string;
219
+ slug: string;
220
+ children: null;
221
+ };
222
+ };
223
+ };
224
+ };
225
+ export declare const authors: Record<string, string>;
226
+ export declare const authorsNames: string[];
227
+ export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83C\uDFE1\uD83C\uDF05\uD83C\uDF33\u2728";
228
+ export declare const categories: ("beautifulHomes" | "incredibleLocations" | "interiorDesignTips" | "architectureStyles" | "travelInspiration" | "lifestyleEnhancements")[];
229
+ export declare const subcategories: string[];
230
+ export declare const subsubcategories: string[];
231
+ export type Category = keyof typeof dataStructure;
232
+ export type CategoryNode = (typeof dataStructure)[Category];
233
+ export type SubcategoryKeyByCategory<T extends Category> = (typeof dataStructure)[T]['children'];
234
+ export declare const startDate = "2024-09-19T00:00:00Z";
235
+ export declare const devBucketName = "idn-charmhavens-dev";
236
+ export declare const prodBucketName = "idn-charmhavens";
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./seo.js");const i={beautifulHomes:{title:"Discover Beautiful Homes and Incredible Locations 🌍",description:"Explore the finest in beautiful homes and stunning locations. Get inspired by modern design, luxury interiors, and historic properties. 🏡✨",slug:"beautiful-homes",children:{modernDesign:{title:"Modern Design Homes: Innovative Living Spaces 🏢✨",description:"Dive into modern design with innovative homes that blend style and functionality. Find inspiration for your dream living space today! 🎨🏡",slug:"modern-design",children:null},luxuriousInteriors:{title:"Luxurious Interiors: Elegant Living Awaits 🌟🏠",description:"Experience luxurious interiors that define elegance and comfort. Discover decor ideas to transform your home into a masterpiece! 🛋️💖",slug:"luxurious-interiors",children:null},ecoFriendlyHomes:{title:"Eco-Friendly Homes: Sustainable Living at Its Best 🌱🏡",description:"Explore eco-friendly homes designed for sustainability and style. Embrace a greener lifestyle while enjoying beautiful living spaces! 🌍♻️",slug:"eco-friendly-homes",children:null},historicProperties:{title:"Historic Properties: A Journey Through Time ⏳🏰",description:"Step into the beauty of historic properties that tell tales of the past. Explore timeless designs and architectural wonders! 🕰️🏡",slug:"historic-properties",children:null},other:{title:"Other Beautiful Homes: Unique Designs to Inspire 💖🏡",description:"Discover other beautiful homes that showcase unique designs and architectural styles. Get inspired by creativity and charm! 🌈✨",slug:"other-beautiful-homes",children:null}}},incredibleLocations:{title:"Discover Incredible Locations: Beautiful Homes Worldwide 🏡🌍",description:"Explore extraordinary locations around the globe that promise enchanting experiences and stunning scenery. Adventure awaits at every corner! ✈️✨",slug:"incredible-locations",children:{worldsHiddenGems:{title:"World's Hidden Gems: Unveiling Unique Locations 🏝️🔍",description:"Discover the world's hidden gems, from secluded beaches to untouched landscapes. Uncover unique destinations that are off the beaten path! 🌄🌿",slug:"worlds-hidden-gems",children:null},beachDestinations:{title:"Beautiful Beach Destinations: Your Sun-Kissed Getaway 🏖️☀️",description:"Dive into the best beach destinations around the world. Relax and unwind with stunning seaside views and crystal-clear waters. 🌊🌅",slug:"beach-destinations",children:null},mountainRetreats:{title:"Serene Mountain Retreats: Nature's Escapades 🏔️🌲",description:"Experience breathtaking mountain retreats where tranquility meets adventure. Explore nature's wonders in these stunning getaways! 🌟🏞️",slug:"mountain-retreats",children:null},urbanEscapes:{title:"Urban Escapes: Exploring City Wonders 🌆✨",description:"Embark on urban escapes that blend culture, architecture, and nightlife. Discover vibrant cities brimming with energy and creativity! 🏙️🌃",slug:"urban-escapes",children:null},other:{title:"Other Extraordinary Locations: Travel Beyond the Ordinary 🚀🌌",description:"Explore other incredible locations that defy expectations. From unique festivals to stunning landscapes, find your next adventure! 🎇🌠",slug:"other-extraordinary-locations",children:null}}},interiorDesignTips:{title:"Interior Design Tips: Transform Your Living Spaces with Style 🌟",description:"Explore expert interior design tips to enhance your home’s beauty and functionality. Discover color schemes, furniture arrangements, and more! 🏡✨",slug:"interior-design-tips",children:{colorSchemes:{title:"Color Schemes: Vibrant Designs for Every Room 🎨",description:"Discover how to choose perfect color schemes that bring life and warmth to your spaces. Elevate your interior design with smart color choices! 💖🏠",slug:"color-schemes",children:null},furnitureArrangement:{title:"Furniture Arrangement: Maximize Space Elegantly 🛋️",description:"Master the art of furniture arrangement for comfort and functionality. Learn tips to optimize every room while keeping it stylish and inviting! 🏡✨",slug:"furniture-arrangement",children:null},decorAccents:{title:"Decor Accents: Add Personality to Your Home 🖼️",description:"Explore creative decor accents that can transform your home’s atmosphere. Discover unique pieces that reflect your personal style! 🌺🏠",slug:"decor-accents",children:null},spaceMaximization:{title:"Space Maximization: Ingenious Ideas for Small Areas 📏",description:"Unlock the potential of small spaces with clever maximization techniques. Create the illusion of spaciousness without compromising style! 🏡✨",slug:"space-maximization",children:null},other:{title:"Other Interior Tips: Beyond Basics for Stunning Homes 💡",description:"Dive into additional interior design insights that elevate your home beyond the basics. Uncover innovative ideas for every corner! 🏠🌟",slug:"other-interior-tips",children:null}}},architectureStyles:{title:"Explore Unique Architecture Styles for Beautiful Homes 🌟",description:"Discover various architectural styles that transform homes into breathtaking spaces. Explore contemporary, rustic, minimalist designs, and more! 🏡",slug:"architecture-styles",children:{contemporaryArchitecture:{title:"Contemporary Architecture: Redefining Modern Living 🏙️",description:"Uncover the essence of contemporary architecture, blending form and function, with sleek designs and innovative materials for modern lifestyles. ✨",slug:"contemporary-architecture",children:null},rusticCharm:{title:"Rustic Charm: Embracing Nature's Beauty 🌲",description:"Dive into the world of rustic charm, featuring warm, inviting home designs that highlight natural materials, cozy atmospheres, and timeless elegance. 🛖",slug:"rustic-charm",children:null},minimalistDesign:{title:"Minimalist Design: Simplicity Meets Elegance 🌿",description:"Explore minimalist design, focusing on simplicity and functionality, showcasing clean lines and uncluttered spaces for a peaceful living environment. 🕊️",slug:"minimalist-design",children:null},traditionalHomes:{title:"Traditional Homes: Timeless Elegance and Serenity 🏘️",description:"Experience the beauty of traditional homes, where classic architectural elements and rich histories create warm, familiar environments for your family. 🕰️",slug:"traditional-homes",children:null},other:{title:"Other Unique Architecture Styles: Discover the Extraordinary 🔍",description:"Unveil unique and diverse architecture styles not covered elsewhere, celebrating creativity and innovation in home design from around the globe! 🌎",slug:"other-architecture-styles",children:null}}},travelInspiration:{title:"Explore Stunning Travel Inspiration: Beautiful Homes & Locations 🏡🌍",description:"Discover breathtaking homes and incredible travel locations at CharmHavens. Get inspired with our destination guides and lifestyle tips! 🌟",slug:"explore-travel-inspiration",children:{destinationGuides:{title:"In-Depth Destination Guides for Your Next Adventure 🌄✈️",description:"Navigate the world's most incredible destinations with our in-depth guides. From hidden gems to popular hotspots, find your next travel destination! 🗺️",slug:"destination-guides",children:null},travelItineraries:{title:"Curated Travel Itineraries to Optimize Your Journey 🧳🗓️",description:"Maximize your travel experience with tailored itineraries featuring must-visit spots and local secrets. Plan your ultimate adventure now! 📍",slug:"travel-itineraries",children:null},localCuisines:{title:"Savory Local Cuisines: A Foodie's Travel Guide 🍽️🌎",description:"Savor the unique flavors of different cultures with our local cuisine guides. Discover where to eat and enjoy authentic dishes around the globe! 🌏",slug:"local-cuisines",children:null},culturalExperiences:{title:"Immersive Cultural Experiences Await You! 🎭🌐",description:"Delve into the rich cultures of various regions through incredible experiences. Engage with locals and cherish unique traditions on your travels! 🌈",slug:"cultural-experiences",children:null},other:{title:"Other Travel Inspirations: Unique Ideas & Tips 🌈🎒",description:"Explore a collection of other travel inspirations that encompass unique ideas and tips. Find what truly resonates with your wanderlust! 🗺️",slug:"other-travel-inspirations",children:null}}},lifestyleEnhancements:{title:"Transform Your Home & Lifestyle with CharmHaven Inspirations 🌿",description:"Explore practical ideas, innovative tech, and wellness tips to enhance your living spaces and enjoy an exquisite lifestyle filled with beauty. 🏡✨",slug:"lifestyle-enhancements",children:{outdoorLivingIdeas:{title:"Stunning Outdoor Living Ideas for Every Home 🌞",description:"Discover breathtaking outdoor living ideas that merge nature with comfort, creating beautiful and relaxing spaces perfect for enjoyment. 🌼✨",slug:"outdoor-living-ideas",children:null},homeWellness:{title:"Home Wellness Tips for a Better Living Environment 🧘‍♀️",description:"Uncover essential home wellness tips that promote tranquility and health, ensuring your living space is a haven of serenity and comfort. 🌿🏠",slug:"home-wellness",children:null},smartHomeTech:{title:"Innovative Smart Home Tech for Modern Living 💡",description:"Embrace cutting-edge smart home technology that enhances convenience, security, and efficiency for a seamless living experience. 📱🔒",slug:"smart-home-tech",children:null},personalizedSpaces:{title:"Creating Personalized Spaces That Reflect You 🖼️",description:"Learn how to create personalized spaces that uniquely reflect your style, making your home a true expression of your taste and personality. 🏡💖",slug:"personalized-spaces",children:null},other:{title:"Explore Unique Lifestyle Enhancements for Your Home 🔍",description:"Dive into unique lifestyle enhancement topics that elevate your living experience, from decor to travel inspiration and beyond. 🏖️✨",slug:"other",children:null}}}},t=e.AUTHORS_INFO.reduce(((e,i)=>Object.assign(Object.assign({},e),{[i.name]:[i.description]})),{}),n=e.AUTHORS_INFO.map((e=>e.name)),r="🏡🌅🌳✨",s=Object.keys(i),o=[],a=[];for(const e of s){const t=i[e];if(null==t?void 0:t.children){o.push(...Object.keys(t.children));for(const e of o){const i=t.children[e];(null==i?void 0:i.children)&&a.push(...Object.keys(i.children))}}}const l="2024-09-19T00:00:00Z",c="charmhavens",u=`idn-${c}-dev`,d=`idn-${c}`;exports.DEFAULT_DESCRIPTION_EMOJIS=r,exports.authors=t,exports.authorsNames=n,exports.categories=s,exports.dataStructure=i,exports.devBucketName=u,exports.prodBucketName=d,exports.startDate=l,exports.subcategories=o,exports.subsubcategories=a;
@@ -0,0 +1,28 @@
1
+ export declare enum FiltersNames {
2
+ ArchitecturalStyles = "Architectural Styles",
3
+ LocationType = "Location Type",
4
+ DesignInspirations = "Design Inspirations",
5
+ TravelExperiences = "Travel Experiences",
6
+ LifestyleAspects = "Lifestyle Aspects"
7
+ }
8
+ type ArchitecturalStylesValues = 'Modern Minimalism' | 'Coastal Retreat' | 'Rustic Charm' | 'Victorian Elegance' | 'Industrial Chic';
9
+ type LocationTypeValues = 'Urban Escapes' | 'Countryside Havens' | 'Beachfront Wonders' | 'Mountain Retreats' | 'Cultural Capitals';
10
+ type DesignInspirationsValues = 'Eco-Friendly Homes' | 'Small Space Solutions' | 'Luxury Interiors' | 'Vintage Decor' | 'Open-Concept Designs';
11
+ type TravelExperiencesValues = 'Adventure Getaways' | 'Culinary Journeys' | 'Cultural Expeditions' | 'Relaxation Retreats' | 'Family-Friendly Spots';
12
+ type LifestyleAspectsValues = 'Sustainable Living' | 'Entertaining at Home' | 'Wellness Retreats' | 'Smart Home Technology' | 'Artisanal Craftsmanship';
13
+ export type ArticleFilters = {
14
+ [FiltersNames.ArchitecturalStyles]: ArchitecturalStylesValues[];
15
+ [FiltersNames.LocationType]: LocationTypeValues[];
16
+ [FiltersNames.DesignInspirations]: DesignInspirationsValues[];
17
+ [FiltersNames.TravelExperiences]: TravelExperiencesValues[];
18
+ [FiltersNames.LifestyleAspects]: LifestyleAspectsValues[];
19
+ };
20
+ export declare const architecturalStylesValues: ArchitecturalStylesValues[];
21
+ export declare const locationTypeValues: LocationTypeValues[];
22
+ export declare const designInspirationsValues: DesignInspirationsValues[];
23
+ export declare const travelExperiencesValues: TravelExperiencesValues[];
24
+ export declare const lifestyleAspectsValues: LifestyleAspectsValues[];
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={})).ArchitecturalStyles="Architectural Styles",e.LocationType="Location Type",e.DesignInspirations="Design Inspirations",e.TravelExperiences="Travel Experiences",e.LifestyleAspects="Lifestyle Aspects";const s=["Modern Minimalism","Coastal Retreat","Rustic Charm","Victorian Elegance","Industrial Chic"],t=["Urban Escapes","Countryside Havens","Beachfront Wonders","Mountain Retreats","Cultural Capitals"],r=["Eco-Friendly Homes","Small Space Solutions","Luxury Interiors","Vintage Decor","Open-Concept Designs"],i=["Adventure Getaways","Culinary Journeys","Cultural Expeditions","Relaxation Retreats","Family-Friendly Spots"],a=["Sustainable Living","Entertaining at Home","Wellness Retreats","Smart Home Technology","Artisanal Craftsmanship"],l={[exports.FiltersNames.ArchitecturalStyles]:[],[exports.FiltersNames.LocationType]:[],[exports.FiltersNames.DesignInspirations]:[],[exports.FiltersNames.TravelExperiences]:[],[exports.FiltersNames.LifestyleAspects]:[]},n={[exports.FiltersNames.ArchitecturalStyles]:s,[exports.FiltersNames.LocationType]:t,[exports.FiltersNames.DesignInspirations]:r,[exports.FiltersNames.TravelExperiences]:i,[exports.FiltersNames.LifestyleAspects]:a},o=()=>JSON.stringify(n,null,2);exports.architecturalStylesValues=s,exports.designInspirationsValues=r,exports.fullFilters=n,exports.getFiltersTypesJSON=o,exports.initialFilters=l,exports.lifestyleAspectsValues=a,exports.locationTypeValues=t,exports.travelExperiencesValues=i;
@@ -0,0 +1,3 @@
1
+ import { GetDefaultImagesFrontmatter } from 'src/common/types';
2
+ export declare const getDefaultImagesFrontmatter: GetDefaultImagesFrontmatter;
3
+ export declare const prohibitedWordsInAltTitle: RegExp;
@@ -0,0 +1 @@
1
+ "use strict";const e=(e,n)=>{const t=n(e),i=undefined,a=undefined,l=undefined,o=undefined;return[{alt:`${e} Introduction`,filename:`${t}-introduction.png`,title:`${e} Introduction`},{alt:`Magnificent ${e}`,filename:`Magnificent-${t}.png`,title:`Magnificent ${e}`},{alt:`Notable ${e}`,filename:`${t}-notable.png`,title:`Notable ${e}`},{alt:`${e} Summary`,filename:`${t}-summary.png`,title:`${e} Summary`}]},n=/\b(?:hands|men|women|human|people|chief|family|mixing|serving|tasting|rolling)\b/i;exports.getDefaultImagesFrontmatter=e,exports.prohibitedWordsInAltTitle=n;
@@ -0,0 +1,15 @@
1
+ export * from './data';
2
+ export * from './filters';
3
+ export * from './helpers';
4
+ export * from './prompts/images';
5
+ export * from './seo';
6
+ import './styles/colors.css';
7
+ import './styles/fonts.css';
8
+ import './styles/global.css';
9
+ import './styles/sizing.css';
10
+ import './styles/vars.css';
11
+ import './styles/theme.css';
12
+ import * as gpt35Articles from './prompts/gpt35turbo/articles';
13
+ import * as gpt4oMiniArticles from './prompts/gpt4oMini/articles';
14
+ export { gpt35Articles, gpt4oMiniArticles };
15
+ export * from './prompts/data';
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./data.js"),t=require("./filters.js"),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.architecturalStylesValues=t.architecturalStylesValues,exports.designInspirationsValues=t.designInspirationsValues,exports.fullFilters=t.fullFilters,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.initialFilters=t.initialFilters,exports.lifestyleAspectsValues=t.lifestyleAspectsValues,exports.locationTypeValues=t.locationTypeValues,exports.travelExperiencesValues=t.travelExperiencesValues,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: CharmHavens is an innovative infotainment portal dedicated to showcasing beautiful homes and incredible locations. It offers readers a blend of design inspiration, travel recommendations, and lifestyle tips that celebrate the art of living well.\n - Detailed description: CharmHavens serves as an online destination for those who appreciate the beauty of architecture and the allure of breathtaking locations. The portal features articles that explore unique home designs, trendy interior decor tips, and stunning landscapes from around the world. Readers can immerse themselves in curated content that highlights the essence of living in exquisitely designed spaces while also discovering remarkable travel spots. Each article is crafted to inspire and provide practical insights, making it an invaluable resource for homeowners and travelers alike who are looking to enhance their living environments and explore new horizons.\n - Target audience: The target audience for CharmHavens includes homeowners, interior design enthusiasts, real estate investors, travel aficionados, and lifestyle seekers aged 25-55 who are interested in finding inspiration for beautiful living spaces and discovering extraordinary locations to visit.\n\n";
2
+ export declare const ZERO_SECTION = "This is important to include the following headers to the section, ONLY if they are applicable to the title, abstract and description of the article:\n## Featured Homes\n - Spotlight on Unique Architectural Designs\n - Home Tours: Inside Stunning Interiors\n\n## Incredible Locations\n - Hidden Gems: Underrated Travel Spots\n - Top Destinations for Home and Culture Lovers\n\nYou can change the headers and topics to make a them more coherent with the description of the article.\nStart text with first Heading H2 - Featured Homes, IF it's applicable to the theme of the article.\n";
3
+ export declare const START_STEP = "highlighting the key points that will be discussed and the relevance of the topic";
4
+ export declare const END_STEP = "synthesizing the information presented throughout";
5
+ export declare const TARGET_AUDIENCE = "real estate enthusiasts, travel lovers, interior design aficionados";
6
+ export declare const IMAGES_PROHIBITED_WORDS = "any numbers, image, slug, step, seo, hand / hands, men, women, human, people, chief, preparing, process, cooking, mixing, serving, tasting, rolling";
7
+ export declare const FILTERS_INFO: string;
@@ -0,0 +1 @@
1
+ "use strict";var e;const t="The article is written for the web portal.I will give you important information regarding the web portal:\n - Brief description: CharmHavens is an innovative infotainment portal dedicated to showcasing beautiful homes and incredible locations. It offers readers a blend of design inspiration, travel recommendations, and lifestyle tips that celebrate the art of living well.\n - Detailed description: CharmHavens serves as an online destination for those who appreciate the beauty of architecture and the allure of breathtaking locations. The portal features articles that explore unique home designs, trendy interior decor tips, and stunning landscapes from around the world. Readers can immerse themselves in curated content that highlights the essence of living in exquisitely designed spaces while also discovering remarkable travel spots. Each article is crafted to inspire and provide practical insights, making it an invaluable resource for homeowners and travelers alike who are looking to enhance their living environments and explore new horizons.\n - Target audience: The target audience for CharmHavens includes homeowners, interior design enthusiasts, real estate investors, travel aficionados, and lifestyle seekers aged 25-55 who are interested in finding inspiration for beautiful living spaces and discovering extraordinary locations to visit.\n\n",i="This is important to include the following headers to the section, ONLY if they are applicable to the title, abstract and description of the article:\n## Featured Homes\n - Spotlight on Unique Architectural Designs\n - Home Tours: Inside Stunning Interiors\n\n## Incredible Locations\n - Hidden Gems: Underrated Travel Spots\n - Top Destinations for Home and Culture Lovers\n\nYou can change the headers and topics to make a them more coherent with the description of the article.\nStart text with first Heading H2 - Featured Homes, IF it's applicable to the theme of the article.\n",n="highlighting the key points that will be discussed and the relevance of the topic",a="synthesizing the information presented throughout",r="real estate enthusiasts, travel lovers, interior design aficionados",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=a,exports.FILTERS_INFO=s,exports.IMAGES_PROHIBITED_WORDS=o,exports.START_STEP=n,exports.TARGET_AUDIENCE=r,exports.ZERO_SECTION=i,exports.portalInfo=t;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt35turbo/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),p=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),i=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=i,exports.getFiltersPrompt=p,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt4oMini/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),i=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),p=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=p,exports.getFiltersPrompt=i,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,4 @@
1
+ import { GetOpenAiBasedImagePrompt, GetStableDiffusionImagePrompt } from 'src/common/types';
2
+ export declare const getStableDiffusionImagePrompt: GetStableDiffusionImagePrompt;
3
+ export declare const getOpenAiBasedImagePrompt: GetOpenAiBasedImagePrompt;
4
+ export declare const getOpenAiBasedImagePromptDalle2: GetOpenAiBasedImagePrompt;
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../common/prompts/images.js");const a=({title:a,alt:o,articleTitle:r})=>({prompt:`Award-winning hyper-real cinematic photo of a ${a}, ${o}, for an article ${r} from professional architecture photograph for a glossy beautiful homes magazine, nature style photography, glossy incredible locations magazine, photorealistic, ultra realistic, maximum detail, highly detailed, commercial photography, foreground focus, instagram, 4K, 8K, volumetric light, cinematic, octane render, uplight, no blur, depth of field, dof, film, bokeh, foreground focus, 35mm photograph`,negativePrompt:e.SD_NEGATIVE_PROMPT}),o=({title:e,alt:a,articleTitle:o})=>`I NEED a hyper-real illustration of a ${e} at food style photography, ${a}, for an article ${o} for a glossy recipe magazine, photorealistic, ultra realistic, maximum detail, highly detailed, food style, food style photography, professional food photography, commercial photography, foreground focus, recipes.com, delish.com, epicurious, instagram, 4K, 8K, volumetric light, octane render, uplight, no blur, depth of field, dof, bokeh, foreground focus. Please exclude any: Photocamera, videocamera, Spotlight, soffit, ramp, scanners, strobe, soffit truss, film props, radio, cooking timer, watches, clocks, men, woman, people, hand, nands, leg, legs, font, username, error, words, letters, digits, autograph, trademark, name, easy-negative, cartoon, worst quality, low quality, blind, bad eyes, ugly eyes, dead eyes, greyscale, monochrome, vignette, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, censored, rabs, muscular, rib, blurry, blur, grainy, teeth, low resolution, lowres, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bw, bad photo, bad photography, bad art, morbid, ugly, asymmetrical, mutated malformed, mutilated, poorly lit, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, duplicate, airbrushed,, anime, semi-realistic, cgi, render, 3D, blender, digital art, manga, amateur, 3D, 3D Game, 3D Game Scene, 3D Character, bad hands, , bad body, bad face, bad teeth, bad arms, bad legs, deformities, drawing, deformed iris, deformed pupils, deformed, painting, crayon, sketch, graphite, impressionist, noisy, poorly drawn hands, poorly drawn face, poorly drawn eyes, mutation, bad proportions, cloned face, disfigured, gross proportions, malformed limbs, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck, incoherent from this hyper-real illustration of a ${e}`,r=({title:e})=>`\n\tPhotorealistic highly detailed image of ingredients for ${e}, arranged professionally as if for a food photography shoot. image should showcase maximum detail realism, with a focus on foreground, emulating the style of a high-definition, 8k resolution professional food photograph. lighting should be volumetric and uplit, with a depth of field and bokeh effect, avoiding any blur for clarity. overall aesthetic should be reminiscent of the Kodak Portrait 800 style.\n\tNegative Prompt:\n\teasy-negative, cartoon, worst quality, low quality, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, blurry, blur, grainy, teeth, low resolution, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, airbrushed, anime, semi-realistic, cgi, render, 3D, blender, manga, amateur, 3D, 3D Game, drawing, sketch\n`;exports.getOpenAiBasedImagePrompt=o,exports.getOpenAiBasedImagePromptDalle2=r,exports.getStableDiffusionImagePrompt=a;
@@ -0,0 +1,23 @@
1
+ export interface PageSeoData {
2
+ title: string;
3
+ description: string;
4
+ }
5
+ export declare enum PageNames {
6
+ Authors = "authors",
7
+ Home = "home",
8
+ NotFound = "not-found",
9
+ AboutUs = "about-us",
10
+ PrivacyPolicy = "privacy-policy",
11
+ Terms = "terms",
12
+ Sitemap = "sitemap"
13
+ }
14
+ export type PagesSeo = Record<PageNames, PageSeoData>;
15
+ export interface AuthorInfo {
16
+ name: string;
17
+ description: string;
18
+ meta_title: string;
19
+ meta_description: string;
20
+ }
21
+ export declare const PAGES_SEO: PagesSeo;
22
+ export declare const AUTHORS_INFO: AuthorInfo[];
23
+ export declare const AUTHORS_META: Record<string, PageSeoData>;
@@ -0,0 +1 @@
1
+ "use strict";var e;exports.PageNames=void 0,(e=exports.PageNames||(exports.PageNames={})).Authors="authors",e.Home="home",e.NotFound="not-found",e.AboutUs="about-us",e.PrivacyPolicy="privacy-policy",e.Terms="terms",e.Sitemap="sitemap";const a={[exports.PageNames.Authors]:{title:"Meet the Creators | CharmHavens",description:"Discover the talented authors behind CharmHavens, bringing you stories of beautiful homes and incredible locations. ✨🏡"},[exports.PageNames.Home]:{title:"Welcome to CharmHavens | Beautiful Homes & Incredible Locations",description:"Explore stunning houses and breathtaking places. Dive into our world of beauty and inspiration! 🌍💖"},[exports.PageNames.NotFound]:{title:"Page Not Found | CharmHavens",description:"Oops! The page you were looking for couldn’t be found. Let’s take you back to places worth exploring! 🔍🏠"},[exports.PageNames.AboutUs]:{title:"About CharmHavens | Our Story",description:"Learn about CharmHavens, where we celebrate beautiful homes and incredible locations around the world. 🏖️📖"},[exports.PageNames.PrivacyPolicy]:{title:"Privacy Policy | CharmHavens",description:"Your privacy is important to us. Read our privacy policy to understand how we protect your information. 🔒📜"},[exports.PageNames.Terms]:{title:"Terms of Service | CharmHavens",description:"Review the terms of service for using CharmHavens. Your journey into beauty starts with understanding! 📋⚖️"},[exports.PageNames.Sitemap]:{title:"Sitemap | Navigate CharmHavens",description:"Easily explore our website with our sitemap. Find your way to beautiful homes and incredible locations! 🗺️🏘️"}},i=[{name:"Anjali Mehta",description:"Anjali Mehta is an experienced interior designer and architectural journalist with over 10 years of expertise in showcasing unique properties and stunning homes. Her passion for design and travel takes her to beautiful locations around India, where she curates insightful articles for CharmHavens.",meta_title:"Anjali Mehta - Interior Designer & Architectural Journalist",meta_description:"Explore the world of beautiful homes and incredible locations through the eyes of Anjali Mehta, an expert interior designer and architectural journalist at CharmHavens."},{name:"Ravi Kumar",description:"Ravi Kumar is a renowned travel writer and real estate expert with a keen eye for aesthetics. With a background in urban planning, he shares his insights on the best locations to find charming homes while exploring the rich cultural tapestry of India.",meta_title:"Ravi Kumar - Travel Writer & Real Estate Expert",meta_description:"Join Ravi Kumar on his journey through stunning landscapes and charming homes as he uncovers incredible locations in India for CharmHavens."},{name:"Deepika Sharma",description:"Deepika Sharma is an award-winning lifestyle journalist with a flair for home décor and architecture. With over 8 years of experience writing for various lifestyle publications, she brings a fresh perspective to the CharmHavens portal, exploring homes infused with culture and creativity.",meta_title:"Deepika Sharma - Lifestyle Journalist & Home Décor Expert",meta_description:"Discover the art of lifestyle and home décor with Deepika Sharma as she explores beautiful homes and extraordinary locations at CharmHavens."},{name:"Vikram Joshi",description:"Vikram Joshi is a passionate environmentalist and travel enthusiast who has been documenting sustainable homes and eco-friendly locations for over 5 years. His contributions to CharmHavens focus on blending nature with modern living, inspiring readers to find beauty in eco-conscious design.",meta_title:"Vikram Joshi - Environmentalist & Travel Enthusiast",meta_description:"Explore sustainable living and eco-friendly homes with Vikram Joshi as he uncovers the beauty of incredible locations at CharmHavens."},{name:"Riya Singh",description:"Riya Singh is a creative writer and visual storyteller specializing in architecture and travel. With a strong background in art history, she offers readers a vivid glimpse into beautiful homes and their surrounding environments through her captivating narratives at CharmHavens.",meta_title:"Riya Singh - Creative Writer & Visual Storyteller",meta_description:"Immerse yourself in the world of stunning architecture and travel with Riya Singh, as she shares her tales of enchanting homes and locations at CharmHavens."},{name:"Manish Agarwal",description:"Manish Agarwal combines his expertise in photography and architecture to curate stunning visual content for CharmHavens. With a portfolio that reflects India's architectural diversity, he aims to showcase the beauty of locations and the homes within them.",meta_title:"Manish Agarwal - Photographer & Architectural Curator",meta_description:"Dive into the visual world of architecture and stunning design with Manish Agarwal, who captures the essence of beautiful homes and locations at CharmHavens."},{name:"Neha Bansal",description:"Neha Bansal is a seasoned blogger and lifestyle influencer with a focus on home improvement and décor. With her engaging writing style and insightful tips, she shares her experiences discovering beautiful homes and idyllic locations across India for CharmHavens.",meta_title:"Neha Bansal - Lifestyle Influencer & Home Improvement Blogger",meta_description:"Discover home improvement tips and charming locations with Neha Bansal as she shares her expertise on beautiful homes at CharmHavens."},{name:"Suresh Nair",description:"Suresh Nair is a freelance writer and real estate consultant with over 12 years of experience in the industry. His articles for CharmHavens provide valuable insights into property trends and the allure of incredible locations in India.",meta_title:"Suresh Nair - Real Estate Consultant & Freelance Writer",meta_description:"Learn about real estate trends and beautiful locations with Suresh Nair, who provides expert insights and inspiring articles for CharmHavens."},{name:"Tanya Reddy",description:"Tanya Reddy is an editor and home design enthusiast who has worked with various lifestyle magazines. Her passion for beautiful homes drives her to create engaging content for CharmHavens that highlights the best in home design and incredible locations.",meta_title:"Tanya Reddy - Home Design Editor & Enthusiast",meta_description:"Explore the latest in home design and charming locations with Tanya Reddy as she shares her expertise at CharmHavens."},{name:"Aditya Mehra",description:"Aditya Mehra is a cultural historian and writer who specializes in documenting heritage homes and remarkable locations across India. His articles for CharmHavens explore the stories behind beautiful homes, blending history with modern comfort.",meta_title:"Aditya Mehra - Cultural Historian & Writer",meta_description:"Discover the rich history and architectural beauty of heritage homes and remarkable locations with Aditya Mehra at CharmHavens."},{name:"Arjun Malhotra",description:"Arjun Malhotra is a seasoned lifestyle writer and architect based in Mumbai, India. With over a decade of experience in the field, he specializes in sustainable home designs and luxurious retreats. His passion for nature and harmonious living drives his articles for CharmHavens, where he shares insights on beautiful homes in incredible locations.",meta_title:"Arjun Malhotra - CharmHavens Author",meta_description:"Explore the writings of Arjun Malhotra, a seasoned architect and lifestyle writer at CharmHavens, as he shares insights on sustainable homes and stunning locations."},{name:"Samantha Rao",description:"Samantha Rao is an acclaimed travel and home décor writer from New Delhi. With her keen eye for aesthetics and a deep understanding of cultural influences, she captures the essence of beautiful homes across India and beyond. Samantha’s articles at CharmHavens reflect her journey and experiences in design and travel.",meta_title:"Samantha Rao - CharmHavens Author",meta_description:"Discover the world of interiors and travel through the eyes of Samantha Rao, a celebrated writer at CharmHavens, as she highlights stunning homes and incredible travel locations."},{name:"Karan Bhatt",description:"Karan Bhatt, a real estate expert and writer, brings over 15 years of industry experience to CharmHavens. His articles focus on emerging markets and listings of breathtaking properties, offering readers a blend of investment advice and aspirational living. Karan’s deep knowledge helps homeowners make informed decisions.",meta_title:"Karan Bhatt - CharmHavens Author",meta_description:"Learn from Karan Bhatt, a real estate guru at CharmHavens, who specializes in showcasing breathtaking properties and offering valuable insights on investments."},{name:"Divya Nair",description:"Divya Nair is a professional interior designer and lifestyle blogger from Bengaluru. With a rich background in design consultancy, she offers unique perspectives on home décor trends and innovative styling ideas. Her engaging articles invite readers to explore incredible locations and the magic of beautiful homes.",meta_title:"Divya Nair - CharmHavens Author",meta_description:"Join Divya Nair, an accomplished interior designer at CharmHavens, as she shares her expertise in home décor and inspirational locations."},{name:"Rajesh Kumar",description:"Rajesh Kumar is a travel journalist and home enthusiast who writes from Kolkata. With extensive travel experience, he explores the intersection of architecture and nature in his well-researched articles. At CharmHavens, Rajesh reveals the beauty of homes situated in extraordinary locations.",meta_title:"Rajesh Kumar - CharmHavens Author",meta_description:"Explore the captivating writings of Rajesh Kumar at CharmHavens, as he uncovers the beauty of homes nestled in extraordinary locations."},{name:"Aisha Singh",description:"Aisha Singh is an art and design writer from Hyderabad. With a passion for blending cultural heritage with modern aesthetics, she writes compelling articles for CharmHavens, showcasing innovative designs that reflect incredible homes and their locations.",meta_title:"Aisha Singh - CharmHavens Author",meta_description:"Discover the artistry of homes through Aisha Singh's compelling writings at CharmHavens, blending cultural heritage with contemporary design."},{name:"Vikram Desai",description:"Vikram Desai is a real estate and home improvement expert based in Pune. His background in construction and design allows him to provide practical advice on home renovations and the latest market trends. His contributions to CharmHavens focus on both aesthetic and functional aspects of beautiful homes.",meta_title:"Vikram Desai - CharmHavens Author",meta_description:"Gain insights from Vikram Desai, a real estate and home improvement expert at CharmHavens, as he explores functional and aesthetic elements of beautiful homes."},{name:"Meera Iyer",description:"Meera Iyer, a travel enthusiast and freelance writer from Chennai, has a penchant for uncovering hidden gems in architecture and design. Her writing at CharmHavens emphasizes discovering incredible homes in unique locations, giving readers an authentic look at various cultural inspirations.",meta_title:"Meera Iyer - CharmHavens Author",meta_description:"Join Meera Iyer in her exploration of unique architectures at CharmHavens, focusing on the beauty of homes in captivating locations."},{name:"Nitin Roy",description:"Nitin Roy is an environmental design consultant and writer from Jaipur, specializing in eco-friendly living solutions. With a decade-long experience in green architecture, he shares insights about merging sustainability with aesthetics in his articles for CharmHavens, focusing on incredible homes that honor the planet.",meta_title:"Nitin Roy - CharmHavens Author",meta_description:"Explore sustainability in home design with Nitin Roy, an environmental design expert at CharmHavens, who promotes eco-friendly living solutions in beautiful locations."},{name:"Riya Kapoor",description:"Riya Kapoor is a passionate urban planner and writer from Chandigarh. Her work focuses on the relationship between community living and home environments, providing readers with a deeper understanding of how incredible locations enhance home experiences. Riya writes insightful pieces for CharmHavens, emphasizing harmonious living.",meta_title:"Riya Kapoor - CharmHavens Author",meta_description:"Read insightful articles by Riya Kapoor at CharmHavens, as she explores the connection between urban planning and beautiful living environments."},{name:"Ravi Sharma",description:"Ravi Sharma is a renowned architect and interior designer based in New Delhi. With over 15 years of experience in sustainable design, he specializes in creating beautiful homes that blend seamlessly with their incredible surroundings. His works have been featured in numerous design publications, showcasing innovative solutions that merge functionality and aesthetic appeal.",meta_title:"Ravi Sharma - Expert Architect & Interior Designer | CharmHavens",meta_description:"Explore the creative works of Ravi Sharma, New Delhi's leading architect and interior designer, who brings sustainable beauty to homes and surroundings. Read his articles on CharmHavens."},{name:"Anita Desai",description:"Anita Desai is a celebrated author and travel journalist from Mumbai, India. With a passion for exploring breathtaking locations, her work often focuses on cultural heritage and the charm of India’s diverse landscapes. Anita has contributed to various travel magazines and blogs, sharing her insights and experiences with readers seeking to discover hidden gems.",meta_title:"Anita Desai - Travel Journalist & Cultural Advocate | CharmHavens",meta_description:"Join Anita Desai, a travel journalist from Mumbai, as she uncovers the cultural heritage and charm of incredible locations. Read her engaging articles on CharmHavens."},{name:"Mohit Kapoor",description:"Mohit Kapoor is a seasoned real estate expert with over a decade of experience in the Indian market. His articles shine a light on emerging trends in the housing sector, alongside breathtaking home showcases. Mohit is dedicated to educating homeowners and investors about maximizing their living experiences through informed decisions.",meta_title:"Mohit Kapoor - Real Estate Expert & Lifestyle Writer | CharmHavens",meta_description:"Discover expert insights on real estate and home aesthetics from Mohit Kapoor. Explore his articles about the beautiful homes and locations that attract investors on CharmHavens."},{name:"Sita Iyer",description:"Sita Iyer is a well-known lifestyle blogger and influencer based in Bangalore. With a focus on home decor and innovative design, she creatively mixes contemporary styles with traditional Indian aesthetics. Her passion for interior design has led her to curate beautiful spaces that reflect their owners' personalities.",meta_title:"Sita Iyer - Lifestyle Blogger & Interior Decor Expert | CharmHavens",meta_description:"Explore home decor inspiration with Sita Iyer, a lifestyle blogger from Bangalore. Discover her innovative designs and beautiful home ideas on CharmHavens."},{name:"Anil Mehta",description:"Anil Mehta is an award-winning landscape architect with extensive experience in creating stunning outdoor spaces that accentuate beautiful homes. Based in Jaipur, he focuses on blending natural beauty with functional landscapes. His work includes parks, residential gardens, and community spaces that inspire tranquility.",meta_title:"Anil Mehta - Landscape Architect & Outdoor Space Expert | CharmHavens",meta_description:"Experience the art of landscape architecture with Anil Mehta. Read his insights on creating stunning outdoor spaces around beautiful homes on CharmHavens."},{name:"Leela Singh",description:"Leela Singh is a passionate food and lifestyle writer from Kolkata who often explores the intersection of home, culture, and cuisine. Her focus on regional Indian dishes showcases how beautiful homes can enhance culinary experiences. Leela's articles provide readers with a taste of local flavors that elevate everyday living.",meta_title:"Leela Singh - Food & Lifestyle Writer | CharmHavens",meta_description:"Savor the flavors of Indian cuisine with Leela Singh, a food and lifestyle writer from Kolkata. Discover articles that enhance your culinary experiences at CharmHavens."},{name:"Ajay Bansal",description:"Ajay Bansal is a certified home inspector and renovation expert with over 12 years in the industry. Based in Chandigarh, he offers insights into maintaining the integrity and beauty of homes. His expertise covers everything from minor repairs to full renovations, helping homeowners achieve their dreams while ensuring safety and functionality.",meta_title:"Ajay Bansal - Home Inspector & Renovation Specialist | CharmHavens",meta_description:"Join Ajay Bansal, a home inspection and renovation expert from Chandigarh, in exploring the necessary steps to maintain and beautify your home. Read his articles on CharmHavens."},{name:"Pooja Chand",description:"Pooja Chand is a versatile writer and digital content creator from Pune, specializing in home improvement and DIY projects. With a keen eye for design, she provides readers with step-by-step guides to transform their living spaces into stylish havens. Pooja's articles inspire creativity and empower homeowners to take control of their decor.",meta_title:"Pooja Chand - DIY & Home Improvement Specialist | CharmHavens",meta_description:"Transform your home with Pooja Chand’s DIY projects and home improvement tips. Discover creative ways to enhance your living space on CharmHavens."},{name:"Nisha Rao",description:"Nisha Rao is a passionate environmentalist and designer focused on sustainable living. Based in Goa, she combines her knowledge of eco-friendly practices with stylish home designs. Her articles encourage homeowners to make environmentally conscious decisions that do not compromise on aesthetics.",meta_title:"Nisha Rao - Sustainable Living Designer & Writer | CharmHavens",meta_description:"Embrace sustainable living with Nisha Rao, an environmentalist and designer from Goa. Discover her articles promoting eco-friendly home choices at CharmHavens."},{name:"Anjali Sharma",description:"Anjali Sharma is a celebrated interior designer and lifestyle blogger based in Mumbai. With over 10 years of experience, she specializes in creating aesthetically pleasing spaces that reflect the soul of the homeowner. Anjali has contributed articles to several renowned publications and holds workshops on home styling across India.",meta_title:"Anjali Sharma - Interior Designer & Lifestyle Blogger at CharmHavens",meta_description:"Explore expert insights from Anjali Sharma, a seasoned interior designer and lifestyle blogger, as she shares her passion for creating beautiful homes at CharmHavens."},{name:"Rohit Mehta",description:"Rohit Mehta is a travel enthusiast and writer who focuses on finding the most incredible locations across India and beyond. With a background in photography, he vividly captures the essence of places in his articles. Rohit’s work is featured in various travel magazines and blogs, making him a trusted voice in the travel community.",meta_title:"Rohit Mehta - Travel Writer & Photographer at CharmHavens",meta_description:"Join Rohit Mehta on his journey to uncover breathtaking locations. His captivating travel narratives at CharmHavens promise to inspire your next getaway."},{name:"Neha Gupta",description:"Neha Gupta is an architect and sustainable design advocate from Delhi. With a passion for green architecture, she writes about how beautiful homes can coexist with nature. Her expertise has led her to work on multiple award-winning projects, and she actively shares her insights and innovative design ideas at CharmHavens.",meta_title:"Neha Gupta - Architect & Sustainable Design Advocate at CharmHavens",meta_description:"Discover Neha Gupta's vision of sustainable architecture. Follow her journey towards eco-friendly living and beautiful designs at CharmHavens."},{name:"Karan Singh",description:"Karan Singh is a landscape designer and garden columnist known for transforming outdoor spaces into breathtaking retreats. His articles provide expert tips and unique designs, encouraging readers to create beautiful gardens. With a strong online presence, Karan has established himself as a go-to source for gardening enthusiasts.",meta_title:"Karan Singh - Landscape Designer & Garden Expert at CharmHavens",meta_description:"Get inspired by Karan Singh’s creative landscape designs. Learn how to beautify your garden with expert tips and tricks at CharmHavens."},{name:"Devraj Patil",description:"Devraj Patil is an expert in real estate and a passionate writer. His deep understanding of the housing market allows him to provide valuable insights within his articles for CharmHavens. Devraj is dedicated to helping readers navigate the complexities of home buying and investment.",meta_title:"Devraj Patil - Real Estate Expert & Writer at CharmHavens",meta_description:"Navigate the real estate landscape with Devraj Patil. Gain insights into home buying and investment to find your dream property with CharmHavens."},{name:"Priya Bhatia",description:"Priya Bhatia is a lifestyle and travel writer with a keen eye for cultural experiences around beautiful homes. Her articles blend personal stories with travel tips, capturing the essence of each location. With a background in journalism, Priya offers a unique voice to inspiring narratives at CharmHavens.",meta_title:"Priya Bhatia - Lifestyle & Travel Writer at CharmHavens",meta_description:"Explore the world of lifestyle and travel with Priya Bhatia. Discover inspiring stories and tips to enrich your travels at CharmHavens."},{name:"Amit Desai",description:"Amit Desai is a renowned culinary expert and home chef, sharing his love for food within his articles on CharmHavens. With years of experience in gourmet cooking, Amit captures the essence of regional recipes and home hospitality, bridging the gap between the kitchen and beautiful living.",meta_title:"Amit Desai - Culinary Expert & Home Chef at CharmHavens",meta_description:"Savor culinary delights with Amit Desai. Delve into delicious recipes and the art of home cooking at CharmHavens."},{name:"Isha Bansal",description:"Isha Bansal is a wellness advocate and home lifestyle coach who blends aesthetics with well-being. She writes extensively about creating harmonious living spaces that promote mental and emotional health. Having worked with various clients, Isha is dedicated to empowering others through home transformations.",meta_title:"Isha Bansal - Wellness Advocate & Lifestyle Coach at CharmHavens",meta_description:"Transform your home into a sanctuary with Isha Bansal. Discover wellness tips that harmonize your living space and well-being at CharmHavens."},{name:"Vikram Rao",description:"Vikram Rao is a technology enthusiast and home automation expert. His expertise in integrating smart technologies into beautiful homes makes him a sought-after writer for CharmHavens. Vikram's articles focus on the latest smart home trends and how to create tech-savvy living spaces.",meta_title:"Vikram Rao - Technology Expert & Smart Home Writer at CharmHavens",meta_description:"Explore innovative smart home solutions with Vikram Rao. Learn how to integrate technology into your living space for comfort and style at CharmHavens."},{name:"Sophia Hart",description:"Sophia is an acclaimed travel and lifestyle writer with over 10 years of experience covering beautiful homes and hidden gems around the globe. Her passion for architecture and design shines through in her captivating articles that inspire wanderlust.",meta_title:"Sophia Hart | CharmHavens Author",meta_description:"Discover the world through Sophia Hart's lens, where exquisite homes and striking locations come to life. An expert in travel and lifestyle writing."},{name:"Liam O'Sullivan",description:"Liam, a seasoned travel journalist, has been exploring the world's most picturesque locations for over 15 years. His insights on the intersection of nature and design offer readers unique perspectives on beautiful homes.",meta_title:"Liam O'Sullivan | CharmHavens Author",meta_description:"Join Liam O'Sullivan as he uncovers stunning homes in breathtaking locales. Travel journalist with a keen eye for beauty and detail."},{name:"Aisha Patel",description:"Aisha is a passionate writer and photographer based in India, devoted to sharing stories that combine culture, real estate, and stunning environments. Her knowledge of sustainable building practices reflects her love for both beauty and the planet.",meta_title:"Aisha Patel | CharmHavens Author",meta_description:"Explore Aisha Patel's captivating articles on sustainable homes in incredible locations. A writer committed to beauty and environmental responsibility."},{name:"Marco Rossi",description:"Based in Italy, Marco combines his love of design with storytelling. With over 12 years of experience in architecture journalism, he brings readers unique narratives about beautiful homes and incredible Italian locales.",meta_title:"Marco Rossi | CharmHavens Author",meta_description:"Experience the beauty of Italy through Marco Rossi's expert articles on architecture and home design. An authority on stunning locales and craftsmanship."},{name:"Emily Zhang",description:"Emily is an interior designer turned writer who specializes in home aesthetics and location-based inspiration. With her keen eye for detail and a flair for storytelling, she shares insights from her travels around Asia and beyond.",meta_title:"Emily Zhang | CharmHavens Author",meta_description:"Dive into Emily Zhang's world of home design and delightful locales. A former interior designer revealing the beauty of modern living through experience."},{name:"David Thompson",description:"David is a travel enthusiast and freelance writer from Australia, with over 8 years of experience in chronicling stunning homes and exotic destinations. His articles are rich with practical advice for travelers and home seekers alike.",meta_title:"David Thompson | CharmHavens Author",meta_description:"Journey with David Thompson as he guides readers to exceptional homes and breathtaking locations. An expert in travel and lifestyle insights."},{name:"Maya Santos",description:"Maya is a Brazilian journalist and digital nomad who has explored the world’s most charming homes for over a decade. Her stories emphasize the beauty and culture each location holds, making them memorable for every reader.",meta_title:"Maya Santos | CharmHavens Author",meta_description:"Discover the enchanting homes and mesmerizing cultures with Maya Santos. A seasoned journalist passionate about travel and storytelling."},{name:"James Korsak",description:"Based in Canada, James is a travel and architecture writer with a specialization in eco-friendly homes. With a decade of experience, he shares insights into homes that harmonize with their surroundings.",meta_title:"James Korsak | CharmHavens Author",meta_description:"Join James Korsak in exploring the harmony of eco-friendly homes in stunning locations. An experienced architect turned writer."},{name:"Isabella Schmidt",description:"Isabella is a German lifestyle writer and home décor enthusiast. With more than 7 years of experience, she connects travelers with beautiful design and incredible locations across Europe through her engaging writing.",meta_title:"Isabella Schmidt | CharmHavens Author",meta_description:"Engage with Isabella Schmidt’s articles that showcase beautiful design in incredible locations. A lifestyle writer weaving travel and decor together."},{name:"Noah Williams",description:"Noah is an American writer with a passion for historical homes and picturesque landscapes. With a rich background in art history, he brings a unique perspective to the modern world of travel writing.",meta_title:"Noah Williams | CharmHavens Author",meta_description:"Explore the intersection of history and home with Noah Williams. A travel writer specializing in stunning historical homes and breathtaking locations."},{name:"Sophia Reynolds",description:"Sophia Reynolds is an acclaimed travel writer and interior design aficionado based in London. With over 10 years of experience in the industry, she has explored the intricacies of beautiful homes across Europe and crafted articles that weave together stunning visuals and engaging stories. Her unique insights make her a beloved voice in the realm of home design and travel destinations.",meta_title:"Sophia Reynolds - Travel Writer & Interiors Specialist | CharmHavens",meta_description:"Explore the captivating articles of Sophia Reynolds, a travel writer with a passion for beautiful homes and incredible locations on CharmHavens."},{name:"Daniel Chang",description:"Daniel Chang is a renowned real estate expert and lifestyle blogger from Sydney, Australia. With a keen eye for architecture and design, Daniel has spent over 8 years documenting remarkable homes and locations worldwide. His articles combine practical advice with stunning imagery, making him a featured writer on numerous home and lifestyle sites.",meta_title:"Daniel Chang - Real Estate Expert & Lifestyle Blogger | CharmHavens",meta_description:"Discover the world through Daniel Chang's eyes as he shares his insights on beautiful homes and incredible locations at CharmHavens."},{name:"Clara Müller",description:"Clara Müller, based in Berlin, Germany, is an award-winning journalist specializing in sustainable architecture and eco-friendly living. With over 12 years of writing experience, Clara's articles showcase beautiful homes that prioritize both aesthetic appeal and environmental responsibility. Her commitment to green living resonates with readers seeking harmony between beauty and sustainability.",meta_title:"Clara Müller - Sustainable Architecture Journalist | CharmHavens",meta_description:"Explore beautiful homes and sustainable living tips with Clara Müller, an expert journalist dedicated to eco-friendly architecture at CharmHavens."},{name:"Ethan Johnson",description:"Ethan Johnson is a freelance writer and travel enthusiast from Toronto, Canada. With a background in journalism and a love for photography, he has spent the last 6 years documenting incredible locations and pristine homes around the globe. Ethan's vivid storytelling and stunning visuals captivate readers and transport them to the world's most breathtaking places.",meta_title:"Ethan Johnson - Travel Writer & Photographer | CharmHavens",meta_description:"Join Ethan Johnson on a journey to discover breathtaking homes and incredible locations around the world at CharmHavens."},{name:"Fatima El-Amin",description:"Fatima El-Amin is a cultural writer and design consultant based in Dubai, UAE. With a rich background in art history and over 7 years of experience in writing, Fatima offers unique perspectives on the intersection of culture and architecture. Her articles explore how different cultures shape beautiful homes in incredible locations.",meta_title:"Fatima El-Amin - Cultural Writer & Design Consultant | CharmHavens",meta_description:"Explore the stories behind beautiful homes influenced by culture with Fatima El-Amin, a cultural writer at CharmHavens."},{name:"Lucas Martinez",description:"Lucas Martinez is a passionate travel blogger and architecture historian from Buenos Aires, Argentina. He has dedicated the last decade to uncovering hidden gems and stunning properties in South America. With an engaging narrative style and a deep appreciation for history, Lucas offers readers a glimpse into the architectural wonders of his region.",meta_title:"Lucas Martinez - Travel Blogger & Architecture Historian | CharmHavens",meta_description:"Discover stunning properties and hidden gems in South America with Lucas Martinez, an architecture historian at CharmHavens."},{name:"Oliver Thompson",description:"Oliver Thompson is a leading travel and lifestyle writer hailing from Cape Town, South Africa. With over 15 years of experience, he combines his love for exploration with a talent for storytelling. Oliver believes that every home tells a story, and through his engaging articles, he shares breathtaking locations and the beauty of local craftsmanship.",meta_title:"Oliver Thompson - Travel & Lifestyle Writer | CharmHavens",meta_description:"Join Oliver Thompson as he explores beautiful homes and local craftsmanship around the world at CharmHavens."},{name:"Nina Petrov",description:"Nina Petrov is a celebrated architectural journalist and author based in Moscow, Russia. With a focus on modern design and traditional Russian architecture, she has penned numerous articles showcasing incredible homes across her country and beyond. Nina's writing is deeply researched and provides context to the beauty of the architecture she profiles.",meta_title:"Nina Petrov - Architectural Journalist & Author | CharmHavens",meta_description:"Dive into the world of modern design and traditional architecture with Nina Petrov, a celebrated architectural journalist at CharmHavens."},{name:"Rajveer Singh",description:"Rajveer Singh is a seasoned travel and real estate writer from New Delhi, India. With over 11 years of experience, he focuses on unique properties and the stories behind beautiful homes that reflect rich cultures. Rajveer's articles are a celebration of diversity and a deep appreciation of the incredible locations they inhabit.",meta_title:"Rajveer Singh - Travel & Real Estate Writer | CharmHavens",meta_description:"Explore the diversity of beautiful homes with Rajveer Singh, a seasoned writer dedicated to uncovering incredible locations at CharmHavens."}],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:#4b2c6b;--theme-color-8:#6d4c9a;--theme-color-7:#8e5dac;--theme-color-6:#c7a8d9;--theme-color-5:#e1b7e4;--theme-color-3:#f3d1e8;--theme-color-2:#f7e0ed;--color-bg-layout:#ffffff;--color-bg-hover:#f4f4f4;--article-border-radius:25px;--btn-border-radius:12px;--category-border-radius:30px;}
@@ -0,0 +1 @@
1
+ @import "sizing.css";@import "colors.css";@import "fonts.css";@import "theme.css";
@@ -262,7 +262,7 @@ export declare const dataStructure: {
262
262
  export declare const authors: Record<string, string>;
263
263
  export declare const authorsNames: string[];
264
264
  export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83C\uDFE1\uD83C\uDF05\u2728\uD83C\uDF0D";
265
- export declare const categories: ("interiorDesign" | "homeImprovement" | "beautifulHomes" | "incredibleLocations" | "architecturalStyles" | "travelInspiration" | "designTrends")[];
265
+ export declare const categories: ("interiorDesign" | "homeImprovement" | "beautifulHomes" | "incredibleLocations" | "travelInspiration" | "architecturalStyles" | "designTrends")[];
266
266
  export declare const subcategories: string[];
267
267
  export declare const subsubcategories: string[];
268
268
  export type Category = keyof typeof dataStructure;
@@ -0,0 +1,162 @@
1
+ export declare const dataStructure: {
2
+ beautifulHomes: {
3
+ title: string;
4
+ description: string;
5
+ slug: string;
6
+ children: {
7
+ modernArchitecture: {
8
+ title: string;
9
+ description: string;
10
+ slug: string;
11
+ children: null;
12
+ };
13
+ luxuryInteriors: {
14
+ title: string;
15
+ description: string;
16
+ slug: string;
17
+ children: null;
18
+ };
19
+ cozyCottages: {
20
+ title: string;
21
+ description: string;
22
+ slug: string;
23
+ children: null;
24
+ };
25
+ ecoFriendlyDesign: {
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
+ incredibleLocations: {
40
+ title: string;
41
+ description: string;
42
+ slug: string;
43
+ children: {
44
+ breathtakingBeaches: {
45
+ title: string;
46
+ description: string;
47
+ slug: string;
48
+ children: null;
49
+ };
50
+ charmingVillages: {
51
+ title: string;
52
+ description: string;
53
+ slug: string;
54
+ children: null;
55
+ };
56
+ mountainRetreats: {
57
+ title: string;
58
+ description: string;
59
+ slug: string;
60
+ children: null;
61
+ };
62
+ urbanEscapes: {
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
+ designInspiration: {
77
+ title: string;
78
+ description: string;
79
+ slug: string;
80
+ children: {
81
+ colorTrends: {
82
+ title: string;
83
+ description: string;
84
+ slug: string;
85
+ children: null;
86
+ };
87
+ decoratingTips: {
88
+ title: string;
89
+ description: string;
90
+ slug: string;
91
+ children: null;
92
+ };
93
+ furnitureSelection: {
94
+ title: string;
95
+ description: string;
96
+ slug: string;
97
+ children: null;
98
+ };
99
+ roomMakeovers: {
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
+ travelDestinations: {
114
+ title: string;
115
+ description: string;
116
+ slug: string;
117
+ children: {
118
+ hiddenGems: {
119
+ title: string;
120
+ description: string;
121
+ slug: string;
122
+ children: null;
123
+ };
124
+ luxuryResorts: {
125
+ title: string;
126
+ description: string;
127
+ slug: string;
128
+ children: null;
129
+ };
130
+ familyFriendlySpots: {
131
+ title: string;
132
+ description: string;
133
+ slug: string;
134
+ children: null;
135
+ };
136
+ adventureTravel: {
137
+ title: string;
138
+ description: string;
139
+ slug: string;
140
+ children: null;
141
+ };
142
+ other: {
143
+ title: string;
144
+ description: string;
145
+ slug: string;
146
+ children: null;
147
+ };
148
+ };
149
+ };
150
+ };
151
+ export declare const authors: Record<string, string>;
152
+ export declare const authorsNames: string[];
153
+ export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83C\uDFE1\uD83C\uDF05\u2728\uD83C\uDFE0";
154
+ export declare const categories: ("beautifulHomes" | "incredibleLocations" | "designInspiration" | "travelDestinations")[];
155
+ export declare const subcategories: string[];
156
+ export declare const subsubcategories: string[];
157
+ export type Category = keyof typeof dataStructure;
158
+ export type CategoryNode = (typeof dataStructure)[Category];
159
+ export type SubcategoryKeyByCategory<T extends Category> = (typeof dataStructure)[T]['children'];
160
+ export declare const startDate = "2024-09-19T00:00:00Z";
161
+ export declare const devBucketName = "idn-elegantroost-dev";
162
+ export declare const prodBucketName = "idn-elegantroost";
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./seo.js");const t={beautifulHomes:{title:"Beautiful Homes: Explore Modern Architecture, Luxury, and More 🌍",description:"Explore a stunning collection of beautiful homes that inspire creativity and showcase incredible locations around the world. 🏡✨",slug:"beautiful-homes",children:{modernArchitecture:{title:"Modern Architecture: The Future of Home Design 🏙️",description:"Dive into the world of modern architecture featuring innovative designs and cutting-edge aesthetics. Discover homes that redefine living! 🏠✨",slug:"modern-architecture",children:null},luxuryInteriors:{title:"Luxury Interiors: Opulent Spaces that Inspire 💎",description:"Experience the elegance of luxury interiors with stunning decor ideas and exquisite furnishings that elevate any space to a realm of sophistication. 🛋️🔥",slug:"luxury-interiors",children:null},cozyCottages:{title:"Cozy Cottages: Charming Retreats in Nature 🌲",description:"Uncover the warmth and charm of cozy cottages that provide the perfect getaway. Embrace tranquil environments and beautiful surroundings! 🌼🏡",slug:"cozy-cottages",children:null},ecoFriendlyDesign:{title:"Eco-Friendly Design: Sustainable Living Spaces 🌱",description:"Explore eco-friendly design principles that create sustainable homes, harmonizing beauty with environmental consciousness for a better future! ♻️🌍",slug:"eco-friendly-design",children:null},other:{title:"Other Beautiful Homes: Unique Designs and Styles 🎨",description:"Discover a variety of other beautiful homes showcasing unique designs, unconventional styles, and captivating stories that inspire! 🏡❤️",slug:"other-beautiful-homes",children:null}}},incredibleLocations:{title:"Explore Incredible Locations: Breathtaking Beauty Awaits 🌍",description:"Discover a world of incredible locations at ElegantRoost, featuring breathtaking beaches, charming villages, mountain retreats, urban escapes, and more. 🌞✨",slug:"incredible-locations",children:{breathtakingBeaches:{title:"Breathtaking Beaches: Your Ultimate Coastal Getaway 🏖️",description:"Immerse yourself in paradise with our collection of breathtaking beaches. From crystal-clear waters to white sandy shores, plan your dream coastal escape! 🌊🌅",slug:"breathtaking-beaches",children:null},charmingVillages:{title:"Charming Villages: Hidden Gems to Discover 🏡",description:"Experience the allure of charming villages, filled with culture, serenity, and picturesque streets. Uncover hidden gems where beauty and history intertwine! 🌸✨",slug:"charming-villages",children:null},mountainRetreats:{title:"Mountain Retreats: Nature's Tranquil Getaways ⛰️",description:"Rejuvenate in stunning mountain retreats, offering breathtaking views and peaceful surroundings. Explore nature's beauty with our top picks for year-round escapes! 🍃🏞️",slug:"mountain-retreats",children:null},urbanEscapes:{title:"Urban Escapes: Discover Vibrant City Life 🌆",description:"Dive into the excitement of urban escapes, where culture meets modernity. Discover vibrant cityscapes & unique experiences waiting for you in every corner! 🏙️🚶‍♀️",slug:"urban-escapes",children:null},other:{title:"Other Incredible Locations: Unique Wonders Await ✨",description:"Explore a variety of other incredible locations that defy expectations and showcase stunning uniqueness. Unearth extraordinary destinations around the globe! 🌍💎",slug:"other-incredible-locations",children:null}}},designInspiration:{title:"Explore Stunning Design Inspiration for Beautiful Homes & Locations",description:"Dive into ElegantRoost's design inspiration, showcasing beautiful homes and incredible locations around the world. Discover your dream space! 🌍✨",slug:"design-inspiration",children:{colorTrends:{title:"Discover the Latest Color Trends for Timeless Interiors",description:"Uncover the most captivating color trends that elevate your living spaces. Learn how colors transform home aesthetics and create stunning vibes! 🎨🏡",slug:"color-trends",children:null},decoratingTips:{title:"Professional Decorating Tips to Enhance Every Room",description:"Master the art of home decor with expert tips that inspire creativity! Transform your space into a beautiful oasis of style and comfort! 🛋️💡",slug:"decorating-tips",children:null},furnitureSelection:{title:"Guide to Selecting the Perfect Furniture for Style & Comfort",description:"Explore how to choose furniture that combines style and comfort effortlessly. Your guide to creating beautiful and functional living spaces! 🪑✨",slug:"furniture-selection",children:null},roomMakeovers:{title:"Creative Room Makeovers to Revitalize Your Home Aesthetics",description:"Discover inspiring room makeovers that breathe new life into your spaces! Transform and rejuvenate any room with stunning ideas and styles! 🖼️🏠",slug:"room-makeovers",children:null},other:{title:"Unique Design Inspiration & Curiosities for Every Taste",description:"Explore a collection of unique design inspirations and curiosities that showcase creativity. Find fresh ideas to elevate your style! 💫🌺",slug:"other",children:null}}},travelDestinations:{title:"Explore Breathtaking Travel Destinations 🗺️",description:"Discover stunning travel destinations worldwide, from hidden gems to luxury resorts. Your guide to incredible locations awaits! ✈️",slug:"breathtaking-travel-destinations",children:{hiddenGems:{title:"Uncover Hidden Gems Around the World 🌟",description:"Find enchanting hidden gems that offer unique experiences and breathtaking beauty. Perfect for the discerning traveler seeking something special! 😍",slug:"hidden-gems",children:null},luxuryResorts:{title:"Indulge in Luxury Resorts and Escapes 🌴",description:"Experience the finest luxury resorts that offer unmatched comfort and elegance. Discover your dream getaway with exquisite amenities! ✨",slug:"luxury-resorts",children:null},familyFriendlySpots:{title:"Family-Friendly Spots for Unforgettable Vacations 🏖️",description:"Explore family-friendly spots that provide fun, safety, and memorable experiences for all ages. Create unforgettable moments together! 👨‍👩‍👧‍👦",slug:"family-friendly-spots",children:null},adventureTravel:{title:"Thrilling Adventure Travel Destinations 🚀",description:"Seek out adventure travel destinations that promise excitement and adrenaline. Perfect for thrill-seekers and adventurers! 🌄",slug:"adventure-travel",children:null},other:{title:"Other Unique Travel Experiences & Locations 🌍",description:"Discover a variety of unique travel experiences and extraordinary locations that don't fit the norm. Expand your travel horizons! 🌈",slug:"other-unique-travel-experiences",children:null}}}},i=e.AUTHORS_INFO.reduce(((e,t)=>Object.assign(Object.assign({},e),{[t.name]:[t.description]})),{}),r=e.AUTHORS_INFO.map((e=>e.name)),n="🏡🌅✨🏠",s=Object.keys(t),o=[],a=[];for(const e of s){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-19T00:00:00Z",c="elegantroost",u=`idn-${c}-dev`,d=`idn-${c}`;exports.DEFAULT_DESCRIPTION_EMOJIS=n,exports.authors=i,exports.authorsNames=r,exports.categories=s,exports.dataStructure=t,exports.devBucketName=u,exports.prodBucketName=d,exports.startDate=l,exports.subcategories=o,exports.subsubcategories=a;
@@ -0,0 +1,28 @@
1
+ export declare enum FiltersNames {
2
+ ArchitecturalStyles = "Architectural Styles",
3
+ HomeAesthetics = "Home Aesthetics",
4
+ LocationTypes = "Location Types",
5
+ InteriorInspirations = "Interior Inspirations",
6
+ TravelExperiences = "Travel Experiences"
7
+ }
8
+ type ArchitecturalStylesValues = 'Modern Marvels' | 'Rustic Retreats' | 'Classic Elegance' | 'Coastal Cottages';
9
+ type HomeAestheticsValues = 'Minimalist Masterpieces' | 'Colorful Abodes' | 'Eclectic Enclaves' | 'Luxurious Lavishness';
10
+ type LocationTypesValues = 'Urban Escapes' | 'Countryside Charms' | 'Coastal Paradises' | 'Mountain Hideaways';
11
+ type InteriorInspirationsValues = 'Open Concept Living' | 'Sustainable Design' | 'Vintage Vibes' | 'Bold Statements';
12
+ type TravelExperiencesValues = 'Cultural Journeys' | 'Nature Retreats' | 'Adventure Getaways' | 'Romantic Escapes';
13
+ export type ArticleFilters = {
14
+ [FiltersNames.ArchitecturalStyles]: ArchitecturalStylesValues[];
15
+ [FiltersNames.HomeAesthetics]: HomeAestheticsValues[];
16
+ [FiltersNames.LocationTypes]: LocationTypesValues[];
17
+ [FiltersNames.InteriorInspirations]: InteriorInspirationsValues[];
18
+ [FiltersNames.TravelExperiences]: TravelExperiencesValues[];
19
+ };
20
+ export declare const architecturalStylesValues: ArchitecturalStylesValues[];
21
+ export declare const homeAestheticsValues: HomeAestheticsValues[];
22
+ export declare const locationTypesValues: LocationTypesValues[];
23
+ export declare const interiorInspirationsValues: InteriorInspirationsValues[];
24
+ export declare const travelExperiencesValues: TravelExperiencesValues[];
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={})).ArchitecturalStyles="Architectural Styles",e.HomeAesthetics="Home Aesthetics",e.LocationTypes="Location Types",e.InteriorInspirations="Interior Inspirations",e.TravelExperiences="Travel Experiences";const s=["Modern Marvels","Rustic Retreats","Classic Elegance","Coastal Cottages"],t=["Minimalist Masterpieces","Colorful Abodes","Eclectic Enclaves","Luxurious Lavishness"],r=["Urban Escapes","Countryside Charms","Coastal Paradises","Mountain Hideaways"],i=["Open Concept Living","Sustainable Design","Vintage Vibes","Bold Statements"],a=["Cultural Journeys","Nature Retreats","Adventure Getaways","Romantic Escapes"],o={[exports.FiltersNames.ArchitecturalStyles]:[],[exports.FiltersNames.HomeAesthetics]:[],[exports.FiltersNames.LocationTypes]:[],[exports.FiltersNames.InteriorInspirations]:[],[exports.FiltersNames.TravelExperiences]:[]},l={[exports.FiltersNames.ArchitecturalStyles]:s,[exports.FiltersNames.HomeAesthetics]:t,[exports.FiltersNames.LocationTypes]:r,[exports.FiltersNames.InteriorInspirations]:i,[exports.FiltersNames.TravelExperiences]:a},n=()=>JSON.stringify(l,null,2);exports.architecturalStylesValues=s,exports.fullFilters=l,exports.getFiltersTypesJSON=n,exports.homeAestheticsValues=t,exports.initialFilters=o,exports.interiorInspirationsValues=i,exports.locationTypesValues=r,exports.travelExperiencesValues=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"),o=require("./seo.js"),a=require("./prompts/gpt35turbo/articles.js"),p=require("./prompts/gpt4oMini/articles.js"),i=require("./prompts/data.js");exports.DEFAULT_DESCRIPTION_EMOJIS=e.DEFAULT_DESCRIPTION_EMOJIS,exports.authors=e.authors,exports.authorsNames=e.authorsNames,exports.categories=e.categories,exports.dataStructure=e.dataStructure,exports.devBucketName=e.devBucketName,exports.prodBucketName=e.prodBucketName,exports.startDate=e.startDate,exports.subcategories=e.subcategories,exports.subsubcategories=e.subsubcategories,Object.defineProperty(exports,"FiltersNames",{enumerable:!0,get:function(){return t.FiltersNames}}),exports.architecturalStylesValues=t.architecturalStylesValues,exports.fullFilters=t.fullFilters,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.homeAestheticsValues=t.homeAestheticsValues,exports.initialFilters=t.initialFilters,exports.interiorInspirationsValues=t.interiorInspirationsValues,exports.locationTypesValues=t.locationTypesValues,exports.travelExperiencesValues=t.travelExperiencesValues,exports.getDefaultImagesFrontmatter=r.getDefaultImagesFrontmatter,exports.prohibitedWordsInAltTitle=r.prohibitedWordsInAltTitle,exports.getOpenAiBasedImagePrompt=s.getOpenAiBasedImagePrompt,exports.getOpenAiBasedImagePromptDalle2=s.getOpenAiBasedImagePromptDalle2,exports.getStableDiffusionImagePrompt=s.getStableDiffusionImagePrompt,exports.AUTHORS_INFO=o.AUTHORS_INFO,exports.AUTHORS_META=o.AUTHORS_META,exports.PAGES_SEO=o.PAGES_SEO,Object.defineProperty(exports,"PageNames",{enumerable:!0,get:function(){return o.PageNames}}),exports.gpt35Articles=a,exports.gpt4oMiniArticles=p,exports.END_STEP=i.END_STEP,exports.FILTERS_INFO=i.FILTERS_INFO,exports.IMAGES_PROHIBITED_WORDS=i.IMAGES_PROHIBITED_WORDS,exports.START_STEP=i.START_STEP,exports.TARGET_AUDIENCE=i.TARGET_AUDIENCE,exports.ZERO_SECTION=i.ZERO_SECTION,exports.portalInfo=i.portalInfo;
@@ -0,0 +1,7 @@
1
+ export declare const portalInfo = "The article is written for the web portal.I will give you important information regarding the web portal:\n - Brief description: ElegantRoost is an infotainment portal dedicated to showcasing beautiful homes and incredible locations across the globe. It serves as a digital sanctuary for design enthusiasts, real estate aficionados, and travel lovers seeking inspiration and insights into breathtaking spaces and extraordinary locales.\n - Detailed description: ElegantRoost is a premier online destination where architecture, interior design, and travel converge. Featuring a curated collection of articles that highlight the elegance of stunning homes and picturesque settings, ElegantRoost offers readers a deep dive into the world of aesthetics and ambiance. Each article is designed to inspire creativity, offering tips on home decor, showcasing innovative architecture, and exploring hidden gems that exemplify beauty in nature and human ingenuity. From charming cottages to luxurious estates and idyllic vacation spots, the portal caters to those who appreciate the finer things in life, empowering readers to envision their dream environments and travel aspirations.\n - Target audience: The target audience for ElegantRoost includes home design enthusiasts, potential homebuyers, architects, interior decorators, and traveling individuals or families who have an appreciation for beautiful aesthetics. It appeals to those seeking inspiration for their own living spaces, professionals in the real estate and design industries, and travelers looking for unique and picturesque destinations to explore.\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## Feature Spotlight\n - Exceptional Architectural Designs\n - Unique Decor Elements\n\n## Location Highlights\n - Must-Visit Neighborhoods\n - Cultural and Historical Significance\n\nYou can change the headers and topics to make a them more coherent with the description of the article.\nStart text with first Heading H2 - Feature Spotlight, IF it's applicable to the theme of the article.\n";
3
+ export declare const START_STEP = "highlighting the key points that will be discussed and the relevance of the topic";
4
+ export declare const END_STEP = "synthesizing the information presented throughout";
5
+ export declare const TARGET_AUDIENCE = "real estate enthusiasts, travel lovers, interior design aficionados";
6
+ export declare const IMAGES_PROHIBITED_WORDS = "any numbers, image, slug, step, seo, hand / hands, men, women, human, people, chief, preparing, process, cooking, mixing, serving, tasting, rolling";
7
+ export declare const FILTERS_INFO: string;
@@ -0,0 +1 @@
1
+ "use strict";var e;const t="The article is written for the web portal.I will give you important information regarding the web portal:\n - Brief description: ElegantRoost is an infotainment portal dedicated to showcasing beautiful homes and incredible locations across the globe. It serves as a digital sanctuary for design enthusiasts, real estate aficionados, and travel lovers seeking inspiration and insights into breathtaking spaces and extraordinary locales.\n - Detailed description: ElegantRoost is a premier online destination where architecture, interior design, and travel converge. Featuring a curated collection of articles that highlight the elegance of stunning homes and picturesque settings, ElegantRoost offers readers a deep dive into the world of aesthetics and ambiance. Each article is designed to inspire creativity, offering tips on home decor, showcasing innovative architecture, and exploring hidden gems that exemplify beauty in nature and human ingenuity. From charming cottages to luxurious estates and idyllic vacation spots, the portal caters to those who appreciate the finer things in life, empowering readers to envision their dream environments and travel aspirations.\n - Target audience: The target audience for ElegantRoost includes home design enthusiasts, potential homebuyers, architects, interior decorators, and traveling individuals or families who have an appreciation for beautiful aesthetics. It appeals to those seeking inspiration for their own living spaces, professionals in the real estate and design industries, and travelers looking for unique and picturesque destinations to explore.\n\n",i="This is important to include the following headers to the section, ONLY if they are applicable to the title, abstract and description of the article:\n## Feature Spotlight\n - Exceptional Architectural Designs\n - Unique Decor Elements\n\n## Location Highlights\n - Must-Visit Neighborhoods\n - Cultural and Historical Significance\n\nYou can change the headers and topics to make a them more coherent with the description of the article.\nStart text with first Heading H2 - Feature Spotlight, IF it's applicable to the theme of the article.\n",n="highlighting the key points that will be discussed and the relevance of the topic",a="synthesizing the information presented throughout",o="real estate enthusiasts, travel lovers, interior design aficionados",r="any numbers, image, slug, step, seo, hand / hands, men, women, human, people, chief, preparing, process, cooking, mixing, serving, tasting, rolling",s=`That is TREMENDOUS important - if category doesn't match - return empty array for that category - []. For example if you don't find any match for $FILTERNAME, return for that category\n$FILTERNAME: []\nResponse in valid json, adhering strictly to json interface below, include every field present in it, but include values in array only suitable for article, all array values are optional!\n${require("../filters.js").getFiltersTypesJSON()}`;exports.END_STEP=a,exports.FILTERS_INFO=s,exports.IMAGES_PROHIBITED_WORDS=r,exports.START_STEP=n,exports.TARGET_AUDIENCE=o,exports.ZERO_SECTION=i,exports.portalInfo=t;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt35turbo/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),p=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),i=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=i,exports.getFiltersPrompt=p,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt4oMini/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),i=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),p=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=p,exports.getFiltersPrompt=i,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,4 @@
1
+ import { GetOpenAiBasedImagePrompt, GetStableDiffusionImagePrompt } from 'src/common/types';
2
+ export declare const getStableDiffusionImagePrompt: GetStableDiffusionImagePrompt;
3
+ export declare const getOpenAiBasedImagePrompt: GetOpenAiBasedImagePrompt;
4
+ export declare const getOpenAiBasedImagePromptDalle2: GetOpenAiBasedImagePrompt;
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../common/prompts/images.js");const a=({title:a,alt:o,articleTitle:r})=>({prompt:`Award-winning hyper-real cinematic photo of a ${a}, ${o}, for an article ${r} from professional architecture photograph for a glossy beautiful homes magazine, nature style photography, glossy incredible locations magazine, photorealistic, ultra realistic, maximum detail, highly detailed, commercial photography, foreground focus, instagram, 4K, 8K, volumetric light, cinematic, octane render, uplight, no blur, depth of field, dof, film, bokeh, foreground focus, 35mm photograph`,negativePrompt:e.SD_NEGATIVE_PROMPT}),o=({title:e,alt:a,articleTitle:o})=>`I NEED a hyper-real illustration of a ${e} at food style photography, ${a}, for an article ${o} for a glossy recipe magazine, photorealistic, ultra realistic, maximum detail, highly detailed, food style, food style photography, professional food photography, commercial photography, foreground focus, recipes.com, delish.com, epicurious, instagram, 4K, 8K, volumetric light, octane render, uplight, no blur, depth of field, dof, bokeh, foreground focus. Please exclude any: Photocamera, videocamera, Spotlight, soffit, ramp, scanners, strobe, soffit truss, film props, radio, cooking timer, watches, clocks, men, woman, people, hand, nands, leg, legs, font, username, error, words, letters, digits, autograph, trademark, name, easy-negative, cartoon, worst quality, low quality, blind, bad eyes, ugly eyes, dead eyes, greyscale, monochrome, vignette, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, censored, rabs, muscular, rib, blurry, blur, grainy, teeth, low resolution, lowres, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bw, bad photo, bad photography, bad art, morbid, ugly, asymmetrical, mutated malformed, mutilated, poorly lit, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, duplicate, airbrushed,, anime, semi-realistic, cgi, render, 3D, blender, digital art, manga, amateur, 3D, 3D Game, 3D Game Scene, 3D Character, bad hands, , bad body, bad face, bad teeth, bad arms, bad legs, deformities, drawing, deformed iris, deformed pupils, deformed, painting, crayon, sketch, graphite, impressionist, noisy, poorly drawn hands, poorly drawn face, poorly drawn eyes, mutation, bad proportions, cloned face, disfigured, gross proportions, malformed limbs, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck, incoherent from this hyper-real illustration of a ${e}`,r=({title:e})=>`\n\tPhotorealistic highly detailed image of ingredients for ${e}, arranged professionally as if for a food photography shoot. image should showcase maximum detail realism, with a focus on foreground, emulating the style of a high-definition, 8k resolution professional food photograph. lighting should be volumetric and uplit, with a depth of field and bokeh effect, avoiding any blur for clarity. overall aesthetic should be reminiscent of the Kodak Portrait 800 style.\n\tNegative Prompt:\n\teasy-negative, cartoon, worst quality, low quality, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, blurry, blur, grainy, teeth, low resolution, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, airbrushed, anime, semi-realistic, cgi, render, 3D, blender, manga, amateur, 3D, 3D Game, drawing, sketch\n`;exports.getOpenAiBasedImagePrompt=o,exports.getOpenAiBasedImagePromptDalle2=r,exports.getStableDiffusionImagePrompt=a;
@@ -0,0 +1,23 @@
1
+ export interface PageSeoData {
2
+ title: string;
3
+ description: string;
4
+ }
5
+ export declare enum PageNames {
6
+ Authors = "authors",
7
+ Home = "home",
8
+ NotFound = "not-found",
9
+ AboutUs = "about-us",
10
+ PrivacyPolicy = "privacy-policy",
11
+ Terms = "terms",
12
+ Sitemap = "sitemap"
13
+ }
14
+ export type PagesSeo = Record<PageNames, PageSeoData>;
15
+ export interface AuthorInfo {
16
+ name: string;
17
+ description: string;
18
+ meta_title: string;
19
+ meta_description: string;
20
+ }
21
+ export declare const PAGES_SEO: PagesSeo;
22
+ export declare const AUTHORS_INFO: AuthorInfo[];
23
+ export declare const AUTHORS_META: Record<string, PageSeoData>;
@@ -0,0 +1 @@
1
+ "use strict";var e;exports.PageNames=void 0,(e=exports.PageNames||(exports.PageNames={})).Authors="authors",e.Home="home",e.NotFound="not-found",e.AboutUs="about-us",e.PrivacyPolicy="privacy-policy",e.Terms="terms",e.Sitemap="sitemap";const i={[exports.PageNames.Authors]:{title:"Meet the Visionaries Behind ElegantRoost",description:"Discover the creative minds bringing you the world's most Beautiful Homes & Incredible Locations. 🏡✈️"},[exports.PageNames.Home]:{title:"ElegantRoost - Beautiful Homes & Incredible Locations",description:"Explore stunning properties and unbeatable locations that inspire your dream living. 🌍✨ Join us at ElegantRoost for a journey of beauty!"},[exports.PageNames.NotFound]:{title:"404 - Page Not Found",description:"Oops! The page you're looking for seems to have flown away. 🥴✨ Let's head back to ElegantRoost to discover beautiful homes!"},[exports.PageNames.AboutUs]:{title:"About ElegantRoost - Your Guide to Stunning Homes",description:"Learn about ElegantRoost's mission to showcase Beautiful Homes and Incredible Locations for your inspiration. ❤️🏖️ Join us on our journey!"},[exports.PageNames.PrivacyPolicy]:{title:"ElegantRoost Privacy Policy",description:"Your privacy matters to us! Read our policy to understand how we protect your information. 🔒🌐"},[exports.PageNames.Terms]:{title:"Terms of Service - ElegantRoost",description:"Understand the terms that govern your use of ElegantRoost. We value transparency and your trust! 📜🤝"},[exports.PageNames.Sitemap]:{title:"ElegantRoost Sitemap - Navigate Our Beauty",description:"Find your way through our collection of Beautiful Homes and Incredible Locations. 🗺️🏡 Explore now!"}},t=[{name:"Riya Sharma",description:"Riya Sharma is an award-winning interior designer and lifestyle writer based in Mumbai. With over 10 years of experience in designing luxury homes and a deep understanding of Indian aesthetics, Riya brings her unique perspective to ElegantRoost, blending traditional elements with modern designs.",meta_title:"Riya Sharma - Interior Designer and Lifestyle Writer at ElegantRoost",meta_description:"Explore Riya Sharma's articles on ElegantRoost, showcasing her expertise in luxury interior design and her passion for beautiful homes that reflect Indian heritage."},{name:"Arjun Mehta",description:"Arjun Mehta is a travel and architecture enthusiast based in Delhi. His strong background in architectural studies, coupled with a passion for documenting captivating locations, allows him to beautifully narrate the stories behind India’s stunning homes and hidden gems.",meta_title:"Arjun Mehta - Travel and Architecture Writer at ElegantRoost",meta_description:"Discover Arjun Mehta's insights on travel and architecture in India at ElegantRoost, where he uncovers the beauty of incredible locations and traditional homes."},{name:"Sneha Patel",description:"Sneha Patel is a lifestyle blogger from Bengaluru specializing in home decor and DIY projects. With a knack for crafting and a keen eye for design, her articles inspire readers to transform their spaces into beautiful homes filled with personal touches.",meta_title:"Sneha Patel - Home Decor Writer at ElegantRoost",meta_description:"Get inspired by Sneha Patel's creative DIY tips and home decor ideas at ElegantRoost, making every space uniquely beautiful and inviting."},{name:"Rahul Verma",description:"Rahul Verma is an eco-conscious architect and writer based in Pune. His expertise lies in sustainable design and architecture, promoting eco-friendly living. Rahul shares insights on how to create beautiful, environmentally friendly homes in incredible locations.",meta_title:"Rahul Verma - Eco-Conscious Architect and Writer at ElegantRoost",meta_description:"Explore sustainable living through Rahul Verma's articles on ElegantRoost, focusing on eco-friendly architecture and design for beautiful homes."},{name:"Neha Joshi",description:"Neha Joshi is a passionate real estate expert and freelance writer from Jaipur who specializes in the luxury real estate market. With her extensive experience, she guides readers in understanding unique properties and beautiful homes in various regions.",meta_title:"Neha Joshi - Real Estate Writer at ElegantRoost",meta_description:"Dive into the luxury real estate world with Neha Joshi's articles at ElegantRoost, offering insights into unique properties and beautiful homes across India."},{name:"Vikram Singh",description:"Vikram Singh is a landscape architect and nature enthusiast from Chandigarh who is dedicated to enhancing the natural beauty of homes through innovative landscape designs. His passion for blending architecture with nature resonates in his writing.",meta_title:"Vikram Singh - Landscape Architect and Writer at ElegantRoost",meta_description:"Learn from Vikram Singh's expertise in landscape architecture at ElegantRoost, where he shares ways to beautify homes by harmonizing with nature."},{name:"Ananya Roy",description:"Ananya Roy is a lifestyle influencer and writer specializing in home organization and minimalism. Based in Hyderabad, she encourages her readers to declutter and curate beautiful, serene spaces that reflect their personal style.",meta_title:"Ananya Roy - Minimalism and Organization Writer at ElegantRoost",meta_description:"Transform your home with Ananya Roy's practical organization tips and minimalist design ideas featured at ElegantRoost for a beautiful and peaceful living environment."},{name:"Dev Rajput",description:"Dev Rajput is a cultural historian and writer focusing on heritage homes across India. With a deep-seated passion for preserving cultural narratives, Dev captures the essence of India's architectural legacy through his articles.",meta_title:"Dev Rajput - Cultural Historian and Writer at ElegantRoost",meta_description:"Explore India's architectural heritage with Dev Rajput's captivating articles at ElegantRoost, revealing the stories behind beautiful historical homes."},{name:"Pooja Nair",description:"Pooja Nair is an established home staging expert and writer from Kolkata. With years of experience in transforming properties to highlight their best features, Pooja shares techniques and tips to make homes more appealing to buyers and visitors alike.",meta_title:"Pooja Nair - Home Staging Expert and Writer at ElegantRoost",meta_description:"Unlock the secrets of home staging with Pooja Nair's valuable insights at ElegantRoost, helping you create beautiful, inviting spaces that allure buyers."},{name:"Siddharth Rao",description:"Siddharth Rao is a seasoned travel journalist and photographer from Goa. His deep appreciation for nature and architecture makes him an expert at capturing the breathtaking beauty of homes and locations, translating them into vivid stories.",meta_title:"Siddharth Rao - Travel Journalist and Photographer at ElegantRoost",meta_description:"Experience the beauty of travel and stunning landscapes through Siddharth Rao's evocative photography and writing at ElegantRoost."},{name:"Riya Mehta",description:"Riya Mehta is an experienced interior designer based in Mumbai, with over 10 years of experience in creating beautiful homes. Her expertise lies in combining traditional Indian aesthetics with modern minimalism, ensuring every space tells a unique story. She writes insights on decor trends and sustainable living.",meta_title:"Riya Mehta - Interior Design Expert | ElegantRoost",meta_description:"Discover the world of interior design with Riya Mehta. With a decade of experience, she shares her expertise in creating beautiful homes that reflect unique styles."},{name:"Vikram Shah",description:"Vikram Shah is a travel writer and photographer who captures the essence of incredible locations across India. With 15 years of experience, he combines his love for storytelling with stunning visuals, bringing destinations to life for readers of ElegantRoost.",meta_title:"Vikram Shah - Travel Writer & Photographer | ElegantRoost",meta_description:"Explore incredible locations in India with Vikram Shah. A seasoned writer and photographer, he shares captivating stories and stunning images from his travels."},{name:"Anita Verma",description:"Anita Verma is a lifestyle blogger and home decor enthusiast based in Delhi. Known for her engaging writing style, she has been sharing home improvement tips and DIY ideas for over 8 years, making homes more livable and aesthetically pleasing.",meta_title:"Anita Verma - Lifestyle Blogger | ElegantRoost",meta_description:"Join Anita Verma on ElegantRoost for creative home decor tips and DIY ideas. With 8 years of experience, she helps you transform your living spaces."},{name:"Rahul Joshi",description:"Rahul Joshi is an architect and urban planner specializing in sustainable housing solutions. With a career spanning over 12 years, he emphasizes eco-friendly designs and energy-efficient homes, sharing insights on sustainable living with ElegantRoost.",meta_title:"Rahul Joshi - Architect & Urban Planner | ElegantRoost",meta_description:"Explore sustainable housing solutions with Rahul Joshi. An architect with over 12 years of experience, he shares insights on eco-friendly and energy-efficient designs."},{name:"Neha Kapoor",description:"Neha Kapoor is a renowned garden designer and horticulturist based in Bangalore. With a passion for blending nature with architecture, she offers expert advice on creating beautiful outdoor spaces and has been featured in several design publications.",meta_title:"Neha Kapoor - Garden Designer & Horticulturist | ElegantRoost",meta_description:"Discover the art of garden design with Neha Kapoor. A horticulturist based in Bangalore, she shares expert advice on creating beautiful outdoor living spaces."},{name:"Sameer Malik",description:"Sameer Malik is a home automation specialist who writes extensively about integrating technology into home designs. With over 10 years in the tech industry, he provides insights on smart homes and modern living solutions.",meta_title:"Sameer Malik - Home Automation Specialist | ElegantRoost",meta_description:"Explore home automation with Sameer Malik. A tech specialist with over 10 years of experience, he shares insights on integrating modern technology into home designs."},{name:"Pooja Bansal",description:"Pooja Bansal is a professional stager and realtor with a keen eye for design. With 9 years of experience in the real estate market, she writes about staging homes effectively to attract buyers, sharing her expertise on ElegantRoost.",meta_title:"Pooja Bansal - Home Staging Expert | ElegantRoost",meta_description:"Learn about effective home staging with Pooja Bansal. A realtor with 9 years of experience, she shares tips for attracting buyers through beautiful designs."},{name:"Karan Singh",description:"Karan Singh is a home renovation expert and DIY blogger who has been transforming homes for over a decade. His practical tips and creative ideas aim to inspire homeowners to undertake their own renovation projects with confidence.",meta_title:"Karan Singh - Home Renovation Expert | ElegantRoost",meta_description:"Join Karan Singh on ElegantRoost for practical home renovation tips and creative DIY projects. With over a decade of experience, he inspires homeowners to transform their spaces."},{name:"Sheetal Rao",description:"Sheetal Rao is a digital content creator specializing in home decor and lifestyle trends. With a background in journalism, she enjoys writing articles that inspire readers to create stylish and functional homes that reflect their personalities.",meta_title:"Sheetal Rao - Digital Content Creator | ElegantRoost",meta_description:"Get inspired with Sheetal Rao on ElegantRoost. A digital content creator, she shares trends in home decor and lifestyle, helping you design a home that reflects your style."},{name:"Amit Choudhary",description:"Amit Choudhary is a furniture designer and artisan with over 15 years of experience in creating bespoke pieces. His articles focus on the importance of handcrafted furniture in home decor, elevating spaces with unique designs.",meta_title:"Amit Choudhary - Furniture Designer & Artisan | ElegantRoost",meta_description:"Discover bespoke furniture design with Amit Choudhary. A craftsman with over 15 years of experience, he explores the role of handcrafted pieces in enhancing home decor."},{name:"Anita Desai",description:"Anita Desai is an acclaimed Indian author and interior designer with over two decades of experience in creating stunning living spaces. Her passion for architecture and design has led her to explore various incredible locations around the world, merging aesthetics with functionality in her writing.",meta_title:"Anita Desai - ElegantRoost",meta_description:"Discover the captivating insights of Anita Desai, a renowned interior designer and author, as she shares her expertise on beautiful homes and incredible locations at ElegantRoost."},{name:"Rahul Mehta",description:"Rahul Mehta, a travel and lifestyle writer of Indian origin, specializes in highlighting beautiful homes across diverse cultures. With a background in architecture and years of globetrotting, he brings unique perspectives on how homes reflect their locations.",meta_title:"Rahul Mehta - ElegantRoost",meta_description:"Explore the world of beautiful homes and incredible locations through the eyes of Rahul Mehta, a seasoned travel writer on ElegantRoost."},{name:"Priya Rao",description:"Priya Rao is a passionate home décor enthusiast and writer, known for her work exploring picturesque homes and breathtaking locations in India and beyond. With over 15 years in home styling, she shares valuable tips and inspiration for creating elegant roosts.",meta_title:"Priya Rao - ElegantRoost",meta_description:"Get inspired by Priya Rao, an expert in home décor, as she shares insights into beautiful homes and amazing locations on ElegantRoost."},{name:"Vikas Kumar",description:"Vikas Kumar, an environmental designer and writer, focuses on sustainable and aesthetically pleasing homes. His articles shine a light on eco-friendly architecture and beautiful locations that honor nature, offering a fresh perspective to readers.",meta_title:"Vikas Kumar - ElegantRoost",meta_description:"Join Vikas Kumar on a journey to explore eco-friendly homes and incredible locations, showcasing sustainable living at ElegantRoost."},{name:"Sita Nair",description:"Sita Nair is a cultural historian and author who writes extensively on the intersection of home, art, and culture. With a deep understanding of Indian heritage, she explores homes that embody the essence of their locations, enriched by their history.",meta_title:"Sita Nair - ElegantRoost",meta_description:"Discover the rich narratives behind stunning homes and locations with Sita Nair, as she shares her expertise at ElegantRoost."},{name:"Rajesh Vashisht",description:"Rajesh Vashisht is an established content creator and architecture critic, known for his in-depth analysis of homes in both urban and rural settings. His keen eye for detail and appreciation for design elegance make his articles a must-read for homeowners.",meta_title:"Rajesh Vashisht - ElegantRoost",meta_description:"Read insightful critiques and features on beautiful homes by Rajesh Vashisht, a leading architecture critic at ElegantRoost."},{name:"Meera Sharma",description:"Meera Sharma is a lifestyle blogger and home tour expert, specializing in showcasing the beauty of eclectic homes around the globe. Her vibrant storytelling connects readers to the essence of incredible locations and their unique designs.",meta_title:"Meera Sharma - ElegantRoost",meta_description:"Explore the art of home tours and stunning locations with Meera Sharma, a dynamic lifestyle blogger contributing to ElegantRoost."},{name:"Rohit Verma",description:"Rohit Verma is an innovative architect and writer dedicated to exploring and writing about architecture that respects local contexts and traditions. His insights focus on how homes can be both beautiful and reflective of their settings.",meta_title:"Rohit Verma - ElegantRoost",meta_description:"Dive into the world of contextual architecture and elegance with Rohit Verma, as he shares his knowledge at ElegantRoost."},{name:"Tanvi Kapoor",description:"Tanvi Kapoor is a design enthusiast and content strategist, known for curating the best in home styling and travel. Her writings inspire readers to appreciate beauty while recognizing the importance of location in home design.",meta_title:"Tanvi Kapoor - ElegantRoost",meta_description:"Follow Tanvi Kapoor for expert insights on home styling and stunning locations, enriching your living space at ElegantRoost."},{name:"Neha Bansal",description:"Neha Bansal is an interior designer turned writer with over 10 years of experience in the home decor industry. Based in Mumbai, she specializes in sustainable designs that enhance the beauty of spaces while being environmentally friendly. Neha has contributed her expertise to various publications and is passionate about inspiring people to create beautiful homes.",meta_title:"Neha Bansal - Interior Designer and Home Decor Writer | ElegantRoost",meta_description:"Explore the world of interior design with Neha Bansal, a seasoned writer dedicated to sustainable home decor. Discover tips, trends, and ideas for your beautiful home."},{name:"Anjali Rao",description:"Anjali Rao is a lifestyle and design blogger from Delhi, with a background in architecture. With a flair for highlighting the intersection between aesthetic beauty and functionality, she brings creative solutions to contemporary homes, celebrating local artisans and craftsmanship.",meta_title:"Anjali Rao - Lifestyle and Design Blogger | ElegantRoost",meta_description:"Delve into the world of creative home design with Anjali Rao, a talented lifestyle blogger showcasing innovative ideas and celebrating Indian craftsmanship."},{name:"Puneet Narula",description:"Puneet Narula is a home improvement enthusiast and freelance writer who specializes in DIY projects and home renovations. With a decade of experience as a contractor, he provides practical advice and creative inspirations for homeowners looking to enhance their living spaces.",meta_title:"Puneet Narula - DIY Expert and Home Improvement Writer | ElegantRoost",meta_description:"Get inspired by Puneet Narula, a DIY expert sharing practical tips and innovative ideas for home improvement, renovations, and creative living spaces."},{name:"Suman Dutta",description:"Suman Dutta is a renowned garden designer and writer with over 12 years of experience in landscaping and outdoor living. Her articles inspire readers to create stunning gardens and outdoor spaces that bring joy and tranquility to their homes.",meta_title:"Suman Dutta - Garden Designer and Outdoor Living Expert | ElegantRoost",meta_description:"Explore gardening and landscaping with Suman Dutta, an expert who shares insightful tips on transforming outdoor spaces into beautiful retreats."},{name:"Vikram Choudhury",description:"Vikram Choudhury is a seasoned architect and writer specializing in modern architectural trends in Indian homes. With 15 years of experience, he combines functionality with aesthetics to create tailor-made solutions that meet the needs of homeowners.",meta_title:"Vikram Choudhury - Architect and Home Design Writer | ElegantRoost",meta_description:"Discover modern architectural trends and design insights with Vikram Choudhury, an experienced architect passionate about creating functional and beautiful homes."},{name:"Deepa Menon",description:"Deepa Menon is a passionate artist and writer focusing on the integration of art and home decor. With her rich experience in curating art pieces for interiors, she inspires readers to enhance their spaces with creativity and expression.",meta_title:"Deepa Menon - Artist and Home Decor Writer | ElegantRoost",meta_description:"Enhance your space with artful ideas from Deepa Menon, a creative writer and artist dedicated to merging art and home decor for inspiring interiors."},{name:"Kiran Joshi",description:"Kiran Joshi is a historic preservationist and writer committed to celebrating the architectural heritage of Indian homes. With over 8 years of experience, she emphasizes the importance of preserving traditional designs while embracing modern living.",meta_title:"Kiran Joshi - Historic Preservationist and Writer | ElegantRoost",meta_description:"Explore the beauty of architectural heritage with Kiran Joshi, a writer dedicated to preserving traditional home designs and inspiring modern adaptations."},{name:"Ravi Sharma",description:"Ravi Sharma is a leading furniture designer and writer who specializes in crafting unique, customized furniture pieces for modern homes. With his expertise and eye for design, he shares valuable insights on creating functional and stylish living spaces.",meta_title:"Ravi Sharma - Furniture Designer and Home Decor Writer | ElegantRoost",meta_description:"Transform your home with expert furniture design tips from Ravi Sharma, a recognized designer sharing insights on creating stylish and functional living spaces."},{name:"Sophia Chan",description:"Sophia Chan is an interior designer from Singapore with over 10 years of experience in creating spaces that combine elegance and functionality. Her work has been featured in numerous international design magazines, and she specializes in transforming both residential and commercial properties into beautiful havens. Sophia is passionate about sustainability and often incorporates eco-friendly materials into her designs.",meta_title:"Sophia Chan - Interior Designer & Contributor at ElegantRoost",meta_description:"Explore the elegant designs and sustainable living insights from Sophia Chan, an experienced interior designer contributing to ElegantRoost."},{name:"Liam O'Sullivan",description:"Liam O'Sullivan is an architectural journalist based in Dublin, Ireland. With a degree in architecture and over 8 years of experience in writing, Liam brings a unique perspective to the world of home design. He travels extensively, documenting beautiful homes and their incredible locations. His articles are known for their rich storytelling and in-depth research.",meta_title:"Liam O'Sullivan - Architectural Journalist at ElegantRoost",meta_description:"Discover the stories behind stunning homes and breathtaking locations with Liam O'Sullivan, an architectural journalist contributing to ElegantRoost."},{name:"Maria Rodriguez",description:"Maria Rodriguez is a real estate expert and lifestyle writer from Barcelona, Spain. With a background in urban planning and community development, she has helped transform neighborhoods while also reporting on the latest trends in home living. Maria’s articles provide insights into unique properties and vibrant locations, showcasing the beauty of living in diverse cultures.",meta_title:"Maria Rodriguez - Real Estate Expert & Writer at ElegantRoost",meta_description:"Learn about the latest in real estate and discover breathtaking homes with Maria Rodriguez, an expert and writer for ElegantRoost."},{name:"James Nguyen",description:"James Nguyen is a home stylist and DIY enthusiast based in Melbourne, Australia. He specializes in minimalistic design and practical home improvement solutions, drawing inspiration from his multicultural background. With over 6 years of experience in the industry, James shares creative tips and ideas that empower readers to transform their own spaces beautifully.",meta_title:"James Nguyen - Home Stylist & DIY Expert at ElegantRoost",meta_description:"Transform your space with creative tips and stylish designs from James Nguyen, a home stylist and DIY expert contributing to ElegantRoost."},{name:"Thomas Müller",description:"Thomas Müller is a sustainable architecture advocate and writer located in Berlin, Germany. With over 12 years of experience in green building practices, he focuses on how design can contribute to a healthier planet. His articles on ElegantRoost highlight innovative homes that marry aesthetics with sustainability, encouraging readers to adopt eco-friendly living.",meta_title:"Thomas Müller - Sustainable Architecture Advocate at ElegantRoost",meta_description:"Discover sustainable living and beautiful designs with Thomas Müller, an architecture advocate contributing thoughtful insights to ElegantRoost."},{name:"Jessica Peterson",description:"Jessica Peterson is an acclaimed photographer and design writer from Toronto, Canada. With a keen eye for detail and a passion for interior photography, she captures the essence of beautiful homes and breathtaking locations. Her work showcases the art of design through compelling visuals and informative articles that inspire readers to appreciate their surroundings.",meta_title:"Jessica Peterson - Photographer & Design Writer at ElegantRoost",meta_description:"Discover the beauty of design with Jessica Peterson, a talented photographer and design writer sharing insights on ElegantRoost."},{name:"Hiroshi Takeda",description:"Hiroshi Takeda is an urban designer and writer from Tokyo, Japan. With a focus on integrating nature and architecture, he explores new trends in urban living and its impact on home design. His work aims to inspire innovative concepts that enhance the quality of life in populated areas, showcasing homes that embody a harmonious blend of nature and modernity.",meta_title:"Hiroshi Takeda - Urban Designer & Writer at ElegantRoost",meta_description:"Explore innovative urban living concepts with Hiroshi Takeda, an urban designer and writer offering fresh perspectives on design for ElegantRoost."},{name:"Elena Petrova",description:"Elena Petrova is a landscape architect and writer based in Moscow, Russia. Her expertise in outdoor spaces allows her to share unique insights about gardens that complement beautiful homes. With over 9 years of experience, her articles on ElegantRoost feature designs that encourage an indoor-outdoor lifestyle, enhancing the charm of residential properties.",meta_title:"Elena Petrova - Landscape Architect & Writer at ElegantRoost",meta_description:"Discover beautiful garden designs and outdoor living inspiration from Elena Petrova, a landscape architect contributing to ElegantRoost."},{name:"Nia Mburu",description:"Nia Mburu is a home renovation expert and lifestyle blogger from Nairobi, Kenya. Having spent over 7 years transforming homes, she brings practical advice and inspiration to readers looking to enhance their living spaces. Nia’s articles focus on blending traditional craftsmanship with modern design elements, celebrating the uniqueness of every home.",meta_title:"Nia Mburu - Home Renovation Expert & Blogger at ElegantRoost",meta_description:"Revitalize your living space with expert home renovation tips from Nia Mburu, a knowledgeable contributor to ElegantRoost."},{name:"Sophia Hart",description:"Sophia Hart is an award-winning travel and interior design writer with over a decade of experience. She has a keen eye for aesthetics and a passion for beautiful homes, often featuring them in prestigious publications. Sophia travels extensively to discover hidden gems around the world, bringing her unique perspective to ElegantRoost.",meta_title:"Sophia Hart - ElegantRoost Author",meta_description:"Explore the world of beautiful homes and incredible locations with Sophia Hart, an experienced writer and interior design expert."},{name:"Liam Chen",description:"Liam Chen is a seasoned lifestyle journalist and real estate expert hailing from Singapore. With a focus on sustainable architecture and eco-friendly homes, his articles inspire readers to embrace environmentally conscious living. Liam’s deep understanding of global real estate markets makes him a valuable contributor at ElegantRoost.",meta_title:"Liam Chen - ElegantRoost Author",meta_description:"Discover sustainable architecture and exceptional homes with Liam Chen, a lifestyle journalist and real estate expert for ElegantRoost."},{name:"Maria Gonzales",description:"Based in Madrid, Maria Gonzales is a passionate writer and photographer specializing in culturally rich homes and locations. With her background in architecture and design, she brings a creative flair to her articles. Her work has been featured in various international magazines, and she enjoys connecting the world through architecture.",meta_title:"Maria Gonzales - ElegantRoost Author",meta_description:"Travel through culture and architecture with Maria Gonzales, a talented writer and photographer for ElegantRoost."},{name:"James O'Connor",description:"James O’Connor is an American expat living in the French countryside, where he writes about luxury living and rural aesthetics. With over 12 years of freelance writing under his belt, James captures the essence of elegant homes and unique locales, making him an esteemed contributor to ElegantRoost.",meta_title:"James O'Connor - ElegantRoost Author",meta_description:"Explore luxury living in the countryside with James O'Connor, an experienced writer and lifestyle expert for ElegantRoost."},{name:"Amina Khan",description:"Amina Khan is a renowned travel writer from India, focusing on exotic locations and their beautiful homes. With extensive experience in travel journalism and a love for exploring diverse cultures, Amina shares her stories on ElegantRoost, showcasing architectural beauty worldwide.",meta_title:"Amina Khan - ElegantRoost Author",meta_description:"Uncover the beauty of exotic homes and locations with Amina Khan, a travel writer dedicated to cultural exploration for ElegantRoost."},{name:"Karl Müller",description:"Karl Müller is a German architect turned writer with a passion for modern design and urban spaces. Living in Berlin, he travels across Europe, documenting architectural wonders and sharing insights on beautiful living spaces. His expertise enriches the content on ElegantRoost.",meta_title:"Karl Müller - ElegantRoost Author",meta_description:"Dive into modern design and urban living with Karl Müller, an architect and writer bringing European elegance to ElegantRoost."},{name:"David Thompson",description:"David Thompson is an award-winning British journalist with a focus on home design and interior decor. With over 15 years in the business, David has a knack for identifying trends and styles that define beautiful living spaces. His expertise brings depth to ElegantRoost.",meta_title:"David Thompson - ElegantRoost Author",meta_description:"Stay updated with home design trends and interior decor insights from David Thompson, a premier journalist for ElegantRoost."},{name:"Lucy Tan",description:"Lucy Tan is a creative writer and editor from Australia, known for her work in the home and lifestyle niche. With years of experience collaborating with design studios, her focus on elegant aesthetics and breathtaking locations provides a unique angle that captivates readers of ElegantRoost.",meta_title:"Lucy Tan - ElegantRoost Author",meta_description:"Explore beautiful aesthetics and breathtaking locations with Lucy Tan, a premier writer in home and lifestyle for ElegantRoost."},{name:"Oliver Rodriguez",description:"Oliver Rodriguez is a passionate travel and architecture writer from Brazil. He specializes in writing about eco-friendly homes and off-the-beaten-path locations. His deep appreciation for nature and sustainable living principles shines through in his articles for ElegantRoost.",meta_title:"Oliver Rodriguez - ElegantRoost Author",meta_description:"Learn about eco-friendly homes and unique locations with Oliver Rodriguez, a dedicated travel and architecture writer for ElegantRoost."}],a=t.reduce(((e,i)=>Object.assign(Object.assign({},e),{[i.name]:{title:i.meta_title,description:i.meta_description}})),{});exports.AUTHORS_INFO=t,exports.AUTHORS_META=a,exports.PAGES_SEO=i;
@@ -0,0 +1 @@
1
+ :root{--gray-4-a:rgba(0,0,0,0.45);--text-secondary:rgba(0,0,0,0.65);--text-primary:rgba(0,0,0,0.88);--border-color-border-secondary:#F0F0F0;--background-color-bg-base:#FFF;}
@@ -0,0 +1 @@
1
+ :root{--font-size-xx-small:0.625rem;--font-size-x-small:0.75rem;--font-size-small:0.875rem;--font-size-medium:1rem;--font-size-large:1.25rem;--font-size-x-large:1.5rem;--font-size-xx-large:2rem;--h1-font-size:38px;--h1-line-height:46px;--h2-font-size:30px;--h2-line-height:38px;--h3-font-size:24px;--h3-line-height:32px;--h4-font-size:20px;--h4-line-height:28px;--h5-font-size:16px;--h5-line-height:24px;}
@@ -0,0 +1 @@
1
+ html,body,#root {height:100%;width:100%;}body {display:flex;flex-direction:column;align-items:center;margin:0;padding:0;background-color:var(--background-color-bg-base);}#___gatsby {width:100%;}.ant-app {height:100%;}.ant-dropdown-menu,.ant-select-dropdown,.ant-select-selector,.ant-popover-inner {border-radius:8px!important;}
@@ -0,0 +1 @@
1
+ :root{--gap-lg:24px;--gap-md:16px;--gap-sm:12px;--gap-xs:8px;--gap-xss:4px;--padding-lg:24px;--padding-md:16px;--padding-sm:12px;--padding-xs:8px;--padding-xss:4px;--margin-hg:36px;--margin-lg:24px;--margin-md:16px;--margin-sm:12px;--margin-xs:8px;--margin-xss:4px;}
@@ -0,0 +1 @@
1
+ :root {--theme-color-9:#4b3c7a;--theme-color-8:#6f57b0;--theme-color-7:#a67da5;--theme-color-6:#e3b3e3;--theme-color-5:#f5e1f6;--theme-color-3:#e4c6e5;--theme-color-2:#f9e2f9;--color-bg-layout:#ffffff;--color-bg-hover:#f2f2f2;--article-border-radius:20px;--btn-border-radius:15px;--category-border-radius:25px;}
@@ -0,0 +1 @@
1
+ @import "sizing.css";@import "colors.css";@import "fonts.css";@import "theme.css";
@@ -127,7 +127,7 @@ export declare const dataStructure: {
127
127
  export declare const authors: Record<string, string>;
128
128
  export declare const authorsNames: string[];
129
129
  export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83C\uDFE1\uD83C\uDF05\uD83C\uDF33\u2728";
130
- export declare const categories: ("beautifulHomes" | "designInspiration" | "stunningLocations" | "lifestyleEnhancements")[];
130
+ export declare const categories: ("beautifulHomes" | "lifestyleEnhancements" | "designInspiration" | "stunningLocations")[];
131
131
  export declare const subcategories: string[];
132
132
  export declare const subsubcategories: string[];
133
133
  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.284",
3
+ "version": "1.3.286",
4
4
  "description": "Package for config files and reusable code/components between projects",
5
5
  "main": "dist/index.js",
6
6
  "files": [