tedo-publisher 1.3.381 → 1.3.383

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. package/dist/aviarynow/data.d.ts +248 -0
  2. package/dist/aviarynow/data.js +1 -0
  3. package/dist/aviarynow/filters.d.ts +28 -0
  4. package/dist/aviarynow/filters.js +1 -0
  5. package/dist/aviarynow/helpers.d.ts +3 -0
  6. package/dist/aviarynow/helpers.js +1 -0
  7. package/dist/aviarynow/index.d.ts +15 -0
  8. package/dist/aviarynow/index.js +1 -0
  9. package/dist/aviarynow/prompts/data.d.ts +7 -0
  10. package/dist/aviarynow/prompts/data.js +1 -0
  11. package/dist/aviarynow/prompts/gpt35turbo/articles.d.ts +6 -0
  12. package/dist/aviarynow/prompts/gpt35turbo/articles.js +1 -0
  13. package/dist/aviarynow/prompts/gpt4oMini/articles.d.ts +6 -0
  14. package/dist/aviarynow/prompts/gpt4oMini/articles.js +1 -0
  15. package/dist/aviarynow/prompts/images.d.ts +4 -0
  16. package/dist/aviarynow/prompts/images.js +1 -0
  17. package/dist/aviarynow/seo.d.ts +23 -0
  18. package/dist/aviarynow/seo.js +1 -0
  19. package/dist/aviarynow/styles/colors.css +1 -0
  20. package/dist/aviarynow/styles/fonts.css +1 -0
  21. package/dist/aviarynow/styles/global.css +1 -0
  22. package/dist/aviarynow/styles/sizing.css +1 -0
  23. package/dist/aviarynow/styles/theme.css +1 -0
  24. package/dist/aviarynow/styles/vars.css +1 -0
  25. package/dist/dreamsanct/data.d.ts +14 -0
  26. package/dist/dreamsanct/data.js +1 -0
  27. package/dist/dreamsanct/filters.d.ts +28 -0
  28. package/dist/dreamsanct/filters.js +1 -0
  29. package/dist/dreamsanct/helpers.d.ts +3 -0
  30. package/dist/dreamsanct/helpers.js +1 -0
  31. package/dist/dreamsanct/index.d.ts +15 -0
  32. package/dist/dreamsanct/index.js +1 -0
  33. package/dist/dreamsanct/prompts/data.d.ts +7 -0
  34. package/dist/dreamsanct/prompts/data.js +1 -0
  35. package/dist/dreamsanct/prompts/gpt35turbo/articles.d.ts +6 -0
  36. package/dist/dreamsanct/prompts/gpt35turbo/articles.js +1 -0
  37. package/dist/dreamsanct/prompts/gpt4oMini/articles.d.ts +6 -0
  38. package/dist/dreamsanct/prompts/gpt4oMini/articles.js +1 -0
  39. package/dist/dreamsanct/prompts/images.d.ts +4 -0
  40. package/dist/dreamsanct/prompts/images.js +1 -0
  41. package/dist/dreamsanct/seo.d.ts +23 -0
  42. package/dist/dreamsanct/seo.js +1 -0
  43. package/dist/dreamsanct/styles/colors.css +1 -0
  44. package/dist/dreamsanct/styles/fonts.css +1 -0
  45. package/dist/dreamsanct/styles/global.css +1 -0
  46. package/dist/dreamsanct/styles/sizing.css +1 -0
  47. package/dist/dreamsanct/styles/theme.css +1 -0
  48. package/dist/dreamsanct/styles/vars.css +1 -0
  49. package/dist/luxebathe/data.d.ts +14 -0
  50. package/dist/luxebathe/data.js +1 -0
  51. package/dist/luxebathe/filters.d.ts +28 -0
  52. package/dist/luxebathe/filters.js +1 -0
  53. package/dist/luxebathe/helpers.d.ts +3 -0
  54. package/dist/luxebathe/helpers.js +1 -0
  55. package/dist/luxebathe/index.d.ts +15 -0
  56. package/dist/luxebathe/index.js +1 -0
  57. package/dist/luxebathe/prompts/data.d.ts +7 -0
  58. package/dist/luxebathe/prompts/data.js +1 -0
  59. package/dist/luxebathe/prompts/gpt35turbo/articles.d.ts +6 -0
  60. package/dist/luxebathe/prompts/gpt35turbo/articles.js +1 -0
  61. package/dist/luxebathe/prompts/gpt4oMini/articles.d.ts +6 -0
  62. package/dist/luxebathe/prompts/gpt4oMini/articles.js +1 -0
  63. package/dist/luxebathe/prompts/images.d.ts +4 -0
  64. package/dist/luxebathe/prompts/images.js +1 -0
  65. package/dist/luxebathe/seo.d.ts +23 -0
  66. package/dist/luxebathe/seo.js +1 -0
  67. package/dist/luxebathe/styles/colors.css +1 -0
  68. package/dist/luxebathe/styles/fonts.css +1 -0
  69. package/dist/luxebathe/styles/global.css +1 -0
  70. package/dist/luxebathe/styles/sizing.css +1 -0
  71. package/dist/luxebathe/styles/theme.css +1 -0
  72. package/dist/luxebathe/styles/vars.css +1 -0
  73. package/package.json +1 -1
@@ -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.diyInspirationsValues=t.diyInspirationsValues,exports.fullFilters=t.fullFilters,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.initialFilters=t.initialFilters,exports.organizationalSolutionsValues=t.organizationalSolutionsValues,exports.sanctuaryStylesValues=t.sanctuaryStylesValues,exports.trendyThemesValues=t.trendyThemesValues,exports.wellnessFocusValues=t.wellnessFocusValues,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: DreamSanct is an informative online portal dedicated to enhancing the experiences within your bath and bedroom. It provides expert insights, tips, and inspiration on creating serene and stylish environments for relaxation and rejuvenation.\n - Detailed description: DreamSanct serves as a comprehensive resource for individuals seeking to transform their bath and bedroom spaces into peaceful sanctuaries. The portal features a variety of articles covering topics such as decor trends, organizational hacks, DIY projects, product reviews, and wellness advice tailored specifically for these intimate areas of the home. With a focus on both aesthetics and functionality, DreamSanct aims to help readers cultivate spaces that promote comfort and tranquility, ultimately enhancing their daily routines. The content is designed to be accessible and engaging for everyone, from seasoned home decor enthusiasts to those taking their first steps in personalizing their homes.\n - Target audience: The target audience for DreamSanct includes homeowners, renters, and lifestyle enthusiasts aged 25-45 who are interested in home improvement, interior design, and wellness. This demographic values aesthetics, functionality, and personal comfort in their living spaces, seeking to curate environments that reflect their personal styles and promote relaxation.\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## Current Trends\n- Color palettes\n- Popular styles\n\n## Visual Ideas\n- Gallery of styled bathrooms and bedrooms\n- Before-and-after transformations\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 - Current Trends, IF it's applicable to the theme of the article.\n";
3
+ export declare const START_STEP = "highlighting the key points that will be discussed and the relevance of the topic";
4
+ export declare const END_STEP = "synthesizing the information presented throughout";
5
+ export declare const TARGET_AUDIENCE = "housewives and house owners";
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: DreamSanct is an informative online portal dedicated to enhancing the experiences within your bath and bedroom. It provides expert insights, tips, and inspiration on creating serene and stylish environments for relaxation and rejuvenation.\n - Detailed description: DreamSanct serves as a comprehensive resource for individuals seeking to transform their bath and bedroom spaces into peaceful sanctuaries. The portal features a variety of articles covering topics such as decor trends, organizational hacks, DIY projects, product reviews, and wellness advice tailored specifically for these intimate areas of the home. With a focus on both aesthetics and functionality, DreamSanct aims to help readers cultivate spaces that promote comfort and tranquility, ultimately enhancing their daily routines. The content is designed to be accessible and engaging for everyone, from seasoned home decor enthusiasts to those taking their first steps in personalizing their homes.\n - Target audience: The target audience for DreamSanct includes homeowners, renters, and lifestyle enthusiasts aged 25-45 who are interested in home improvement, interior design, and wellness. This demographic values aesthetics, functionality, and personal comfort in their living spaces, seeking to curate environments that reflect their personal styles and promote relaxation.\n\n",n="This is important to include the following headers to the section, ONLY if they are applicable to the title, abstract and description of the article:\n## Current Trends\n- Color palettes\n- Popular styles\n\n## Visual Ideas\n- Gallery of styled bathrooms and bedrooms\n- Before-and-after transformations\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 - Current Trends, IF it's applicable to the theme of the article.\n",i="highlighting the key points that will be discussed and the relevance of the topic",a="synthesizing the information presented throughout",r="housewives and house owners",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=i,exports.TARGET_AUDIENCE=r,exports.ZERO_SECTION=n,exports.portalInfo=t;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt35turbo/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),p=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),i=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=i,exports.getFiltersPrompt=p,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt4oMini/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),i=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),p=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=p,exports.getFiltersPrompt=i,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,4 @@
1
+ import { GetOpenAiBasedImagePrompt, GetStableDiffusionImagePrompt } from 'src/common/types';
2
+ export declare const getStableDiffusionImagePrompt: GetStableDiffusionImagePrompt;
3
+ export declare const getOpenAiBasedImagePrompt: GetOpenAiBasedImagePrompt;
4
+ export declare const getOpenAiBasedImagePromptDalle2: GetOpenAiBasedImagePrompt;
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../common/prompts/images.js");const a=({title:a,alt:o,articleTitle:r})=>({prompt:`Award-winning hyper-real cinematic photo of a ${a}, ${o}, for an article ${r} from professional interior photograph for a glossy interior magazine, Interior photography, glossy Interior magazine, photorealistic, ultra realistic, maximum detail, highly detailed, commercial photography, sharp focus, epicurious, instagram, 4K, 8K, volumetric light, cinematic, octane render, uplight, no blur, depth of field, dof, film, bokeh, 85mm, f1.8, portrait, photo realistic, hyperrealistic, ornate, super detailed, intricate, dramatic, sunlight lighting, shadows, high dynamic range, masterpiece, best quality, (8k, RAW photo:1.2), vivid colour, masterpiece`,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 Experts at DreamSanct | Bath & Bedroom Insights",description:"Discover the voices behind DreamSanct! 🛁✨ Our experts share tips and inspiration for your perfect bath and bedroom retreat."},[exports.PageNames.Home]:{title:"DreamSanct | Your Ultimate Bath & Bedroom Resource",description:"Welcome to DreamSanct! 🏡✨ Explore the latest trends, tips, and ideas for transforming your bath and bedroom into your dream sanctuary."},[exports.PageNames.NotFound]:{title:"404 - Page Not Found | DreamSanct",description:"Oops! 🚫 The page you're looking for does not exist. Explore our home page for fabulous bath and bedroom inspiration at DreamSanct!"},[exports.PageNames.AboutUs]:{title:"About DreamSanct | Bath & Bedroom Lifestyle Hub",description:"Learn about DreamSanct! 🌟 We are dedicated to bringing you the best in bath and bedroom design, tips, and resources to elevate your home."},[exports.PageNames.PrivacyPolicy]:{title:"Privacy Policy | DreamSanct",description:"Your privacy matters to us! 🔒✨ Read our policy to discover how DreamSanct protects your information while you explore bath and bedroom content."},[exports.PageNames.Terms]:{title:"Terms of Service | DreamSanct",description:"Understand the terms of using DreamSanct. 📜✨ We’re committed to providing transparency and quality in our bath and bedroom articles."},[exports.PageNames.Sitemap]:{title:"Sitemap | DreamSanct",description:"Navigate easily through DreamSanct! 📍🛌 Explore our sitemap to find all the bath and bedroom content you desire."}},i=[{name:"Ritika Sharma",description:"Ritika Sharma is a seasoned interior designer and lifestyle journalist with over 10 years of experience in home decor and styling. Based in New Delhi, she blends traditional Indian aesthetics with modern design principles to create spaces that resonate warmth and comfort. With a passion for sustainability, Ritika has authored numerous articles on eco-friendly decor tips and bedroom aesthetics that elevate personal sanctuaries.",meta_title:"Ritika Sharma - Interior Designer & Lifestyle Journalist",meta_description:"Discover expert tips and insights from Ritika Sharma, an acclaimed interior designer with a focus on eco-friendly decor for your baths and bedrooms."},{name:"Rahul Mehta",description:"Rahul Mehta is a home improvement blogger and DIY enthusiast with a knack for transforming spaces into sanctuaries. With over 8 years of experience in writing about decor, he provides innovative ideas and practical tips for creating serene and stylish baths and bedrooms on a budget. His engaging writing resonates with readers seeking to enhance their home environments.",meta_title:"Rahul Mehta - Home Improvement Blogger",meta_description:"Explore DIY tips and innovative designs with Rahul Mehta, a home improvement blogger dedicated to transforming your bath and bedroom into havens."},{name:"Anjali Patil",description:"Anjali Patil is an acclaimed lifestyle coach and wellness author specializing in creating serene environments. With a background in psychology and over 5 years of experience, she focuses on the impact of a well-designed space on mental health and well-being. Anjali shares her insights on creating calm and rejuvenating baths and bedrooms for holistic living.",meta_title:"Anjali Patil - Lifestyle Coach & Wellness Author",meta_description:"Join Anjali Patil on a journey to wellness through design. Discover how to create bath and bedroom spaces that nurture your mind and soul."},{name:"Vikram Joshi",description:"Vikram Joshi is an architectural journalist and a passionate home decor expert with more than 12 years of experience in the industry. Based in Mumbai, he explores the latest trends in architecture and interior design while emphasizing the importance of functionality in baths and bedrooms. His work aims to inspire readers to create beautiful yet practical living spaces.",meta_title:"Vikram Joshi - Architectural Journalist & Decor Expert",meta_description:"Discover the latest trends in architecture and decor with Vikram Joshi. Learn how to enhance your baths and bedrooms for beauty and functionality."},{name:"Sneha Rao",description:"Sneha Rao is a creative content writer specializing in lifestyle and home decor. With over 6 years of experience, she helps readers discover the joy of crafting their perfect sanctuary at home. Based in Bangalore, Sneha's articles focus on styling tips, product recommendations, and the psychology of space, creating a sanctuary feel in every bath and bedroom.",meta_title:"Sneha Rao - Creative Writer & Home Decor Specialist",meta_description:"Craft your perfect sanctuary with Sneha Rao's expert insights in home decor. Discover tips to transform your bath and bedroom into serene spaces."},{name:"Arjun Verma",description:"Arjun Verma is a design consultant and writer with a passion for creating harmonious living spaces. He has worked with top interior design firms and now shares his expertise through insightful articles. His writings often emphasize the importance of color psychology and minimalist design, offering readers creative ways to enhance their bathrooms and bedrooms.",meta_title:"Arjun Verma - Design Consultant & Writer",meta_description:"Transform your living spaces with Arjun Verma's expert advice on color psychology and minimalist design. Elevate your bath and bedroom experience."},{name:"Lakshmi Singh",description:"Lakshmi Singh is a home decor stylist and writer known for her unique blend of traditional and contemporary styles. With 7 years in the industry, she curates stunning spaces and shares tips on personalizing bedrooms and bathrooms. Her passion for Indian textiles and artisan decor shines through in her engaging articles.",meta_title:"Lakshmi Singh - Home Decor Stylist & Writer",meta_description:"Explore the fusion of tradition and modernity in home decor with Lakshmi Singh. Get inspired to style your bath and bedroom uniquely."},{name:"Karan Bhatia",description:"Karan Bhatia is a lifestyle blogger and home improvement expert, specializing in budget-friendly decor solutions. With 9 years of experience, he focuses on creating cozy and functional living spaces that reflect individual style. Karan shares practical tips, DIY projects, and product reviews to help readers revamp their baths and bedrooms affordably.",meta_title:"Karan Bhatia - Lifestyle Blogger & Home Improvement Expert",meta_description:"Revamp your home on a budget with Karan Bhatia's practical tips and DIY projects for your bath and bedroom. Style doesn’t have to break the bank!"},{name:"Neha Kapoor",description:"Neha Kapoor is a wellness advocate and interior design writer dedicated to promoting mental health through thoughtful space design. With a background in holistic wellness, her articles provide insights on how to create calming bath and bedroom environments that foster tranquility and relaxation. Neha has 4 years of experience in writing focused on wellness-oriented decor.",meta_title:"Neha Kapoor - Wellness Advocate & Design Writer",meta_description:"Create calming environments with Neha Kapoor’s expertise in wellness-focused decorating. Discover how to design tranquil baths and bedrooms."},{name:"Vani Iyer",description:"Vani Iyer is an esteemed feng shui consultant and lifestyle writer with experience spanning over 11 years. Based in Chennai, Vani’s writings focus on the application of feng shui principles in home design, particularly in creating harmonious bath and bedroom spaces. She encourages readers to align their homes with energy flow for peace and positivity.",meta_title:"Vani Iyer - Feng Shui Consultant & Lifestyle Writer",meta_description:"Align your home with harmony through Vani Iyer's feng shui insights. Discover how to create perfectly balanced baths and bedrooms."},{name:"Anjali Mehta",description:"Anjali Mehta is an experienced home decor writer with over a decade of experience in lifestyle and interior design. Based in Mumbai, she specializes in creating serene spaces that blend tradition with modern aesthetics. Anjali’s articles have appeared in various renowned publications, and she brings a deep understanding of Indian craftsmanship into her work.",meta_title:"Anjali Mehta - Home Decor Expert at DreamSanct",meta_description:"Explore the world of home interior design with Anjali Mehta, an expert who fuses Indian tradition with modern decor to create tranquil bath and bedroom spaces."},{name:"Ravi Sharma",description:"Ravi Sharma is a professional interior designer from New Delhi, known for his innovative approach to creating functional and beautiful living spaces. With a background in architecture and design, he shares insights on optimizing small rooms and selecting the right furnishings for comfort and style.",meta_title:"Ravi Sharma - Interior Designer at DreamSanct",meta_description:"Discover practical and stylish tips for your bath and bedroom designs from Ravi Sharma, a seasoned interior designer focused on maximizing space and beauty."},{name:"Priya Kumar",description:"With a Bachelor's degree in Textile Design, Priya Kumar offers a unique perspective on textiles and their impact on home interiors. She is passionate about sustainable living and often writes about eco-friendly materials and their integration into modern decor for bedrooms and bathrooms.",meta_title:"Priya Kumar - Textile and Home Decor Writer at DreamSanct",meta_description:"Learn about sustainable textiles and decor solutions for your home with Priya Kumar, who brings her expertise in textile design to the DreamSanct community."},{name:"Vikram Singh",description:"Vikram Singh is a DIY enthusiast and lifestyle blogger with extensive knowledge in home improvement and creativity. His articles provide step-by-step guides on transforming bath and bedroom spaces with simple yet impactful DIY projects.",meta_title:"Vikram Singh - DIY Lifestyle Blogger at DreamSanct",meta_description:"Unleash your creativity with DIY tips and tricks from Vikram Singh, your go-to source for transforming your bath and bedroom spaces with unique projects."},{name:"Neha Reddy",description:"Neha Reddy is a content writer with a keen eye for design trends in home decor. Living in Bangalore, she covers the latest trends in bedroom styles and bath innovations, helping readers to find inspiration for their personal spaces.",meta_title:"Neha Reddy - Home Decor Trends Writer at DreamSanct",meta_description:"Stay updated with the latest home decor trends in bedrooms and bathrooms through Neha Reddy’s insightful articles, bringing inspiration to your spaces at DreamSanct."},{name:"Amit Verma",description:"Amit Verma is an architect and a passionate home decor writer who integrates modern architectural principles with traditional Indian styles. He offers unique perspectives on bathroom layouts and bedroom ergonomics designed to enhance comfort and functionality.",meta_title:"Amit Verma - Architect and Decor Expert at DreamSanct",meta_description:"Enhance your living spaces with expert advice from Amit Verma, an architect who merges modern design with traditional elements for optimal comfort in bath and bedroom decor."},{name:"Sita Iyer",description:"Sita Iyer is a wellness and interior design advocate who emphasizes the importance of creating peaceful environments at home. She specializes in wellness-infused designs for bedrooms and bathrooms that promote relaxation and tranquility.",meta_title:"Sita Iyer - Wellness Design Advocate at DreamSanct",meta_description:"Create your sanctuary with Sita Iyer's expert tips on wellness-focused bath and bedroom designs that nurture peace and harmony within your home."},{name:"Rahul Gupta",description:"Rahul Gupta is a real estate expert and passionate writer focusing on luxury home design. He brings insights on upscale fixtures and finishes for bath and bedroom spaces, helping homeowners make informed stylistic choices.",meta_title:"Rahul Gupta - Luxury Home Design Writer at DreamSanct",meta_description:"Explore luxury living with Rahul Gupta, as he shares expert advice on high-end fixtures and finishes for your dream bath and bedroom spaces at DreamSanct."},{name:"Maya Nayak",description:"Maya Nayak is a freelance journalist and author who covers home improvement and lifestyle topics. Her expertise in small-space solutions and budget-friendly designs offers families practical ways to enhance their bathrooms and bedrooms.",meta_title:"Maya Nayak - Home Improvement Journalist at DreamSanct",meta_description:"Transform your home with Maya Nayak's insightful articles on budget-friendly and practical bath and bedroom improvements, perfect for families and small spaces."},{name:"Karan Joshi",description:"Karan Joshi is a researcher and writer focusing on sustainable living practices. He combines his knowledge of environmental science with home decor, providing unique insights into eco-friendly design choices for baths and bedrooms.",meta_title:"Karan Joshi - Sustainable Living Writer at DreamSanct",meta_description:"Learn how to create eco-friendly bath and bedroom spaces with insights from Karan Joshi, an expert on sustainable living and home decor at DreamSanct."},{name:"Ananya Sharma",description:"Ananya Sharma is an interior design enthusiast with over a decade of experience in creating harmonious living spaces. With a degree in Arts and Design from the National Institute of Design, she blends modern aesthetics with traditional Indian elements in her articles. Ananya specializes in bedroom and bath designs that promote tranquility and comfort.",meta_title:"Ananya Sharma - Interior Design Expert at DreamSanct",meta_description:"Explore insights from Ananya Sharma, an expert in interior design with over 10 years of experience, sharing tips and trends for creating your perfect bedroom and bathroom."},{name:"Rahul Verma",description:"Rahul Verma is a wellness and lifestyle writer focusing on how design can improve mental health. With a background in psychology and over five years in content creation, he aims to guide readers in transforming their bedrooms and bathrooms into sanctuaries of serenity.",meta_title:"Rahul Verma - Wellness Writer at DreamSanct",meta_description:"Discover the connection between design and wellness with Rahul Verma, a lifestyle writer dedicated to turning your bedroom and bathroom into a wellness sanctuary."},{name:"Priya Desai",description:"Priya Desai is a seasoned home decor influencer with a passion for sustainable living. With over eight years of experience, she focuses on eco-friendly tips and DIY projects for bathroom and bedroom decor, inspiring readers to create beautiful, sustainable spaces.",meta_title:"Priya Desai - Eco-Friendly Decor Influencer at DreamSanct",meta_description:"Join Priya Desai in exploring eco-friendly design tips and DIY projects that transform your bedroom and bathroom into stylish and sustainable sanctuaries."},{name:"Vikram Rao",description:"Vikram Rao is an architect and designer with extensive experience in residential projects in India. His articles reflect a keen understanding of spatial dynamics and functionality in bathroom and bedroom designs, helping homeowners make informed choices.",meta_title:"Vikram Rao - Architect and Designer at DreamSanct",meta_description:"Learn from Vikram Rao, an architect who blends functionality with aesthetics in bathroom and bedroom design, ensuring every space is both beautiful and practical."},{name:"Sneha Patel",description:"Sneha Patel is a lifestyle journalist and interior designer with a decade of experience writing about home interiors. Her work reflects a strong understanding of color, texture, and style, guiding readers in curating their ideal bedroom and bath environments.",meta_title:"Sneha Patel - Lifestyle Journalist at DreamSanct",meta_description:"Explore lifestyle tips and interior design advice from Sneha Patel, a journalist with a decade of experience in creating inviting bedroom and bathroom spaces."},{name:"Arjun Mehta",description:"Arjun Mehta is a blogger and visual storyteller who specializes in minimalist design. With a unique approach to decluttering and space optimization, his articles help readers achieve peace and simplicity in their bath and bedroom spaces.",meta_title:"Arjun Mehta - Minimalist Design Blogger at DreamSanct",meta_description:"Discover minimalist design concepts with Arjun Mehta, helping you create serene and simplified bathroom and bedroom spaces that enhance your living experience."},{name:"Tara Nair",description:"Tara Nair is a crafts and DIY specialist known for her unique approach to home decor. With over six years of hands-on experience, she empowers readers to transform their bedrooms and bathrooms with creative and imaginative DIY solutions.",meta_title:"Tara Nair - DIY Specialist at DreamSanct",meta_description:"Unlock your creativity with Tara Nair, a DIY specialist offering innovative ideas and projects to enhance your bedroom and bathroom decor."},{name:"Karan Iyer",description:"Karan Iyer is a lifestyle designer with a focus on modern aesthetics and smart living. His articles guide readers through the latest trends in bath and bedroom design, embodying innovation and style.",meta_title:"Karan Iyer - Modern Lifestyle Designer at DreamSanct",meta_description:"Stay updated with the latest trends in bath and bedroom design with Karan Iyer, a modern lifestyle designer sharing innovative ideas for your home."},{name:"Neha Gupta",description:"An experienced content writer, Neha Gupta has spent over 7 years curating content that inspires and informs. Her expertise lies in luxurious designs, particularly in transforming bathrooms and bedrooms into opulent retreats.",meta_title:"Neha Gupta - Luxury Design Writer at DreamSanct",meta_description:"Explore luxury design insights with Neha Gupta, an experienced writer dedicated to turning your bathrooms and bedrooms into lavish retreats."},{name:"Amit Bansal",description:"Amit Bansal is a home technology expert who integrates smart technology into home design. With a background in engineering, his articles focus on incorporating technology seamlessly into bath and bedroom designs for a modern lifestyle.",meta_title:"Amit Bansal - Smart Technology Expert at DreamSanct",meta_description:"Discover how to integrate smart technology into your bath and bedroom designs with Amit Bansal, an expert in modern home innovations."},{name:"Rahul Sharma",description:"With a background in architecture and a passion for home decor, Rahul Sharma pens insightful articles on creating functional and stylish bath and bedroom environments. His experience spans various projects across India, offering readers a wealth of practical knowledge.",meta_title:"Rahul Sharma - Architecture and Decor Enthusiast",meta_description:"Transform your bath and bedroom spaces with expert advice from Rahul Sharma, an architect with a flair for home decor. Get inspired to create functional luxury in your home."},{name:"Pooja Reddy",description:"Pooja Reddy is a lifestyle blogger and home staging expert specializing in bathroom and bedroom organization. With a keen eye for aesthetics and a knack for DIY projects, her articles help readers achieve beauty and functionality in their homes.",meta_title:"Pooja Reddy - DIY Home Organization Specialist",meta_description:"Enhance your living spaces with Pooja Reddy's expert tips on bathroom and bedroom organization. Discover DIY projects and ideas for a stylish home makeover."},{name:"Amit Kapoor",description:"Amit Kapoor, a writer and home improvement enthusiast, shares his extensive knowledge on bath accessories and bedroom furnishings. He is dedicated to helping readers make informed choices about products that enhance their home's comfort and functionality.",meta_title:"Amit Kapoor - Home Improvement Writer",meta_description:"Unlock the secrets to a comfortable home with Amit Kapoor's insightful writing on bath and bedroom essentials. Learn how to choose the best products for your needs."},{name:"Ankit Singh",description:"Ankit Singh is a luxury lifestyle journalist with a focus on bathroom and bedroom renovations. With several years in the industry, his expertise helps readers navigate the complexities of high-end design and renovation processes.",meta_title:"Ankit Singh - Luxury Lifestyle Journalist",meta_description:"Elevate your home renovation experience with Ankit Singh's expert insights on bathroom and bedroom luxury. Discover tips for planning your next remodel!"},{name:"Riya Choudhury",description:"Riya Choudhury is an acclaimed interior stylist who specializes in bedrooms and baths. With her flair for combining aesthetics with functionality, she shares creative tips that empower readers to personalize their spaces.",meta_title:"Riya Choudhury - Interior Stylist and Creative Writer",meta_description:"Transform your spaces with Riya Choudhury's expert styling tips for bathrooms and bedrooms. Personalize your home with creativity and flair!"},{name:"Tarun Verma",description:"Tarun Verma, a veteran home decor consultant, provides valuable insights into optimizing small bathrooms and bedrooms. His articles focus on space-saving tricks and innovative designs that maximize utility without compromising on style.",meta_title:"Tarun Verma - Small Space Expert",meta_description:"Maximize your space with Tarun Verma's expert advice on small bathroom and bedroom designs. Discover stylish solutions for compact living!"},{name:"Sophia Bennett",description:"Sophia Bennett is a seasoned interior designer from London with over a decade of experience in creating luxurious bathrooms and bedrooms. Her expertise lies in harmonizing aesthetics with functionality, ensuring that every space she designs embodies comfort and elegance. Regularly featured in top design magazines, Sophia shares her insights on trends, decor tips, and renovation advice on DreamSanct.",meta_title:"Sophia Bennett - Interior Designer for DreamSanct",meta_description:"Explore the inspiring works of Sophia Bennett, an interior designer who brings luxury and comfort to bathrooms and bedrooms. Read her expert tips on DreamSanct."},{name:"Liam Cheng",description:"Liam Cheng is a freelance writer and home improvement expert based in Sydney. With a background in architecture, he specializes in sustainable design and eco-friendly home solutions. His passion for creating beautiful yet environmentally conscious spaces drives his writing for DreamSanct, where he provides valuable advice on renovations and decorations.",meta_title:"Liam Cheng - Eco-Friendly Home Expert for DreamSanct",meta_description:"Learn about sustainable design with Liam Cheng, a home improvement expert sharing eco-friendly tips for bathrooms and bedrooms at DreamSanct."},{name:"Maria Gonzalez",description:"Maria Gonzalez, a lifestyle blogger from Mexico City, has a keen eye for decor and aesthetics. Her articles revolve around blending cultural elements with modern design, making them perfect for those looking to enrich their home environments. At DreamSanct, Maria shares DIY ideas, seasonal trends, and practical advice to transform bathrooms and bedrooms into personal sanctuaries.",meta_title:"Maria Gonzalez - Lifestyle Blogger for DreamSanct",meta_description:"Transform your home with Maria Gonzalez's creative DIY ideas and decor tips for bathrooms and bedrooms at DreamSanct."},{name:"James O'Neill",description:"James O'Neill is a wellness coach and writer from Toronto who believes that the design of our personal spaces directly influences our well-being. With a focus on creating calming and restorative environments, he contributes articles to DreamSanct that explore the intersection of interior design and mental health.",meta_title:"James O'Neill - Wellness Coach and Writer for DreamSanct",meta_description:"Discover how to create restorative living spaces with wellness coach James O'Neill's insights on DreamSanct."},{name:"Aisha Mohammed",description:"Aisha Mohammed, an Indian interior stylist with a flair for minimalism, has worked extensively across various design projects in luxury hotels and residential spaces. She aims to bring simplicity paired with elegance to bathrooms and bedrooms through her writing on DreamSanct, offering practical styling tips and organizing hacks.",meta_title:"Aisha Mohammed - Minimalist Interior Stylist for DreamSanct",meta_description:"Embrace minimalism in your home with Aisha Mohammed's expert styling tips for bathrooms and bedrooms at DreamSanct."},{name:"Frederick Wells",description:"Frederick Wells is an experienced contractor from New York specializing in home renovations. With his technical expertise and practical insights, he guides readers through the renovation process, helping them navigate challenges and achieve their dream spaces. His contributions to DreamSanct focus on bedroom and bath remodels.",meta_title:"Frederick Wells - Renovation Contractor for DreamSanct",meta_description:"Get expert renovation advice from contractor Frederick Wells for transforming your bathrooms and bedrooms at DreamSanct."},{name:"Ines Petrova",description:"Ines Petrova is a Russian artist and decor enthusiast who incorporates art into everyday living environments. She advocates for using art and color to personalize bathrooms and bedrooms, creating vibrant atmospheres. Ines writes captivating articles for DreamSanct that inspire creativity and self-expression in home decor.",meta_title:"Ines Petrova - Art and Decor Enthusiast for DreamSanct",meta_description:"Infuse your spaces with creativity through Ines Petrova's artistic insights for bathrooms and bedrooms at DreamSanct."},{name:"Tomoko Saito",description:"Tomoko Saito, a Japanese cultural expert and designer, focuses on the principles of Zen in her home design philosophy. Based in Kyoto, she explores the balance between simplicity and beauty in bathrooms and bedrooms. Her articles on DreamSanct aim to guide readers toward creating serene spaces that promote mindfulness.",meta_title:"Tomoko Saito - Zen Design Expert for DreamSanct",meta_description:"Create serene bathrooms and bedrooms with Tomoko Saito's insights on Zen design at DreamSanct."},{name:"David Thompson",description:"David Thompson is a well-known real estate agent and home staging expert from Los Angeles. His articles on DreamSanct offer invaluable guidance on enhancing property appeal through bedroom and bath design, focusing on trends that not only beautify a space but also increase market value.",meta_title:"David Thompson - Real Estate and Staging Expert for DreamSanct",meta_description:"Discover how to boost property appeal with David Thompson's expert staging tips for bathrooms and bedrooms at DreamSanct."},{name:"Elena Rossi",description:"Elena Rossi is an Italian home decor journalist with a passion for timeless elegance. Her writing style combines cultural insights with practical advice, focusing on how to incorporate classic design elements into modern spaces. At DreamSanct, Elena shares her tips for creating romantic and inviting bathrooms and bedrooms.",meta_title:"Elena Rossi - Home Decor Journalist for DreamSanct",meta_description:"Add timeless elegance to your spaces with Elena Rossi's sophisticated tips for bathrooms and bedrooms at DreamSanct."},{name:"Emily Shaw",description:"Emily Shaw is a home design enthusiast and freelance writer with over a decade of experience in lifestyle and interior design. She has contributed to various home décor magazines and blogs, focusing on creating serene, inviting spaces. Her passion for wellness and relaxation shines through her writings, particularly in the realm of bathroom aesthetics and bedroom retreats.",meta_title:"Emily Shaw - DreamSanct Contributor",meta_description:"Explore articles by Emily Shaw, a seasoned interior design writer specializing in creating tranquil baths and cozy bedrooms. Discover expert tips and trends for your DreamSanct."},{name:"Liam Chen",description:"Liam Chen is an architect and interior designer based in Sydney, Australia. He has a firm belief that every space should reflect personal style while promoting comfort. With extensive knowledge in spatial arrangement and color theory, Liam’s articles guide readers in transforming their bath and bedroom spaces into their personal sanctuaries.",meta_title:"Liam Chen - DreamSanct Contributor",meta_description:"Meet Liam Chen, an architect and interior designer who shares his expertise on transforming bath and bedroom spaces into personalized retreats at DreamSanct."},{name:"Amara Johnson",description:"Amara Johnson is a wellness and interior design advocate, who writes about the intersection of health and home aesthetics. With a background in holistic living, her expertise helps readers understand how to create peaceful environments in bathing and sleeping spaces that promote relaxation and healing.",meta_title:"Amara Johnson - DreamSanct Contributor",meta_description:"Dive into wellness-focused articles by Amara Johnson on creating relaxing bath and bedroom environments. Find tips for health-enhancing home design at DreamSanct."},{name:"Noah Patel",description:"Noah Patel is a lifestyle blogger and DIY enthusiast with over 5 years of experience in home improvement projects. His works often focus on budget-friendly solutions for stylish bath and bedroom designs, making him a go-to source for anyone looking to enhance their living spaces without breaking the bank.",meta_title:"Noah Patel - DreamSanct Contributor",meta_description:"Discover budget-friendly bath and bedroom design ideas by Noah Patel, a seasoned DIY enthusiast at DreamSanct. Transform your home affordably and stylishly."},{name:"Sophia Ramos",description:"Sophia Ramos is a seasoned travel writer and interior curator, inspired by her journeys to different cultures and their unique approaches to home design. Her vast experiences offer valuable insights into creating culturally rich and distinct bath and bedroom environments.",meta_title:"Sophia Ramos - DreamSanct Contributor",meta_description:"Explore culturally inspired bath and bedroom designs with Sophia Ramos, a travel writer skilled in interior curation at DreamSanct."},{name:"Ethan Murphy",description:"Ethan Murphy is a real estate expert and home staging professional. With over 15 years of experience in the field, he shares his unique insights on optimizing space in bath and bedroom designs to enhance functionality and aesthetics for modern living.",meta_title:"Ethan Murphy - DreamSanct Contributor",meta_description:"Get expert advice from Ethan Murphy on optimizing your bath and bedroom spaces. Learn staging secrets for enhancing home aesthetics at DreamSanct."},{name:"Isabella Garcia",description:"Isabella Garcia is an eco-friendly design advocate with a focus on sustainable living practices. Her commitment to environmental preservation translates into her writing, where she champions natural materials and organic designs, helping readers create eco-conscious bathrooms and bedrooms.",meta_title:"Isabella Garcia - DreamSanct Contributor",meta_description:"Embrace sustainable living with Isabella Garcia’s eco-friendly design tips for baths and bedrooms. Discover natural solutions at DreamSanct."},{name:"James Thornton",description:"James Thornton is a licensed home inspector and writer who specializes in home safety and maintenance. With his detailed knowledge, he offers readers practical advice on how to ensure their bath and bedroom areas are both safe and stylish.",meta_title:"James Thornton - DreamSanct Contributor",meta_description:"Find essential safety tips for your bath and bedroom with James Thornton, a home inspector sharing expert maintenance advice at DreamSanct."},{name:"Chloe Bennett",description:"Chloe Bennett is a lifestyle journalist with extensive experience covering home trends. She has a knack for identifying the latest styles and translating them into actionable advice for readers looking to upgrade their bath and bedroom environments.",meta_title:"Chloe Bennett - DreamSanct Contributor",meta_description:"Stay updated on home trends for baths and bedrooms with Chloe Bennett’s insightful articles. Find inspiration for your DreamSanct."},{name:"Oliver King",description:"Oliver King is a home technology expert focusing on smart home innovations. His articles explore how technology can enhance the functionality and luxury of bath and bedroom spaces, providing readers with the latest in automated comforts.",meta_title:"Oliver King - DreamSanct Contributor",meta_description:"Discover smart home solutions for your bath and bedroom from technology expert Oliver King. Elevate your lifestyle with innovative ideas at DreamSanct."}],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:#0d1f30;--theme-color-8:#1b3d54;--theme-color-7:#2b6a7c;--theme-color-6:#4f9ba2;--theme-color-5:#76d5e4;--theme-color-4:#a4e4ea;--theme-color-3:#d1f3f7;--theme-color-2:#e1f8fc;--theme-color-1:#e9fbfd;--color-bg-layout:#f4f9f9;--color-bg-hover:#c8e7e9;--article-border-radius:25px;--btn-border-radius:10px;--category-border-radius:30px;}
@@ -0,0 +1 @@
1
+ @import "sizing.css";@import "colors.css";@import "fonts.css";@import "theme.css";
@@ -0,0 +1,14 @@
1
+ import { CommonDataStructure } from 'src/common/data';
2
+ export declare const dataStructure: CommonDataStructure;
3
+ export declare const authors: Record<string, string>;
4
+ export declare const authorsNames: string[];
5
+ export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83D\uDEC1 \uD83D\uDECF\uFE0F \uD83D\uDD6F\uFE0F \uD83E\uDDF4";
6
+ export declare const categories: (string | number)[];
7
+ export declare const subcategories: string[];
8
+ export declare const subsubcategories: string[];
9
+ export type Category = keyof typeof dataStructure;
10
+ export type CategoryNode = (typeof dataStructure)[Category];
11
+ export type SubcategoryKeyByCategory<T extends Category> = (typeof dataStructure)[T]['children'];
12
+ export declare const startDate = "2024-10-22T00:00:00Z";
13
+ export declare const devBucketName = "idn-luxebathe-dev";
14
+ export declare const prodBucketName = "idn-luxebathe";
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./seo.js");const o={bathroomDesign:{title:"Transform Your Bathroom Design: Innovative Ideas & Trends 🌟",description:"Discover the latest trends in bathroom design to elevate your space. From modern styles to luxury fixtures, find inspiration today! 🛁✨",slug:"bathroom-design",children:{modernBathroomStyles:{title:"Modern Bathroom Styles: Chic & Functional Designs 🛁",description:"Explore modern bathroom styles that blend functionality with elegance. Discover trends that redefine luxury and comfort in your space. 🌈✨",slug:"modern-bathroom-styles",children:null},luxuryBathroomFixtures:{title:"Luxury Bathroom Fixtures: The Essence of Elegance 💎",description:"Elevate your bathroom with luxury fixtures that ooze style and comfort. From chic faucets to designer showers, find your perfect match! 🚿✨",slug:"luxury-bathroom-fixtures",children:null},colorPalettesForBathrooms:{title:"Color Palettes for Bathrooms: Create Your Serenity 🌈",description:"Discover soothing and vibrant color palettes for your bathroom. Transform your space into a serene oasis with the right hues! 🎨🌿",slug:"color-palettes-for-bathrooms",children:null},smallBathroomSolutions:{title:"Small Bathroom Solutions: Maximize Your Space Efficiently 🚪",description:"Unlock smart design solutions for small bathrooms. Learn tips to optimize space without compromising on style and comfort. 🛠️✨",slug:"small-bathroom-solutions",children:null},other:{title:"Explore Other Bathroom Design Ideas & Tips 🔍",description:"Delve into a variety of other bathroom design concepts and practical tips to enhance your bathing experience. Find what inspires you! 🧼💭",slug:"other-bathroom-design",children:null}}},bedroomInspiration:{title:"Inspire Your Bedroom: Cozy Ideas, Luxury Designs & More 🛏️✨",description:"Explore the captivating world of bedroom inspiration with cozy designs, luxury bedding options, seasonal decor ideas, and minimalist concepts. 🛌🌟",slug:"bedroom-inspiration",children:{cozyBedroomIdeas:{title:"Cozy Bedroom Ideas: Create a Warm Retreat 🕯️💤",description:"Transform your space with cozy bedroom ideas that invite warmth and comfort. Discover tips to curate an inviting and relaxing atmosphere. 🌙🏡",slug:"cozy-bedroom-ideas",children:null},minimalistBedroomDesign:{title:"Minimalist Bedroom Design: Simplicity Meets Style 🌿🛌",description:"Embrace simplicity with minimalist bedroom design ideas that promote tranquility and elegance. Discover how to create a serene sleeping space. ✨🏠",slug:"minimalist-bedroom-design",children:null},luxuryBeddingOptions:{title:"Luxury Bedding Options: Elevate Your Sleep Experience 🌜💖",description:"Indulge in luxury bedding options to enhance comfort and style in your bedroom. Experience the ultimate in sleep quality and design. 💤🌈",slug:"luxury-bedding-options",children:null},seasonalBedroomDecor:{title:"Seasonal Bedroom Decor: Refresh Your Space for Every Season 🍂🏵️",description:"Revitalize your bedroom with seasonal decor ideas that showcase your style throughout the year. Discover how to keep your space inviting! 🌸❄️",slug:"seasonal-bedroom-decor",children:null},other:{title:"Other Bedroom Inspirations: Unique Ideas & Trends 🌈💡",description:"Explore a variety of other bedroom inspirations, featuring unique design ideas and trending styles to personalize your sleeping space. 🛌✨",slug:"other-bedroom-inspirations",children:null}}},bathroomProducts:{title:"Explore Top Bathroom Products for a Luxurious Experience 🛁",description:"Discover the finest bathroom products that elevate your bath and bedroom aesthetics. Find reviews, tips, and trends for luxury spaces! ✨",slug:"luxurious-bathroom-products",children:{topRatedShowers:{title:"Top Rated Showers for Your Ultimate Bathing Experience 🚿",description:"Explore our top-rated showers with superior designs and features. Transform your shower routine into a luxurious experience. 🛀✨",slug:"top-rated-showers",children:null},bathtubReviews:{title:"In-Depth Bathtub Reviews for Your Dream Bathroom 🛁",description:"Read our expert bathtub reviews to find the perfect soaking tub for your bathroom. Create that serene sanctuary you deserve. 🧖‍♀️💖",slug:"bathtub-reviews",children:null},ecoFriendlyProducts:{title:"Eco-Friendly Bathroom Products for Sustainable Living 🌿",description:"Discover eco-friendly bathroom products that combine luxury with sustainability. Transform your space while caring for the planet! 🌎✨",slug:"eco-friendly-bathroom-products",children:null},accessoriesAndGadgets:{title:"Must-Have Bathroom Accessories and Gadgets for Efficiency 💡",description:"Upgrade your bathroom with essential accessories and innovative gadgets designed for comfort and luxury. Maximize your space effectively! 🚽🌟",slug:"bathroom-accessories-and-gadgets",children:null},other:{title:"Miscellaneous Bathroom Products and Tips for Perfection 🛠️",description:"Explore a variety of miscellaneous bathroom products and tips for achieving perfection in your bath space. Discover the unexpected! ✨🧼",slug:"other-bathroom-products",children:null}}},renovationTips:{title:"Essential Renovation Tips for Stunning Bathrooms and Bedrooms 🛁🛌",description:"Explore expert renovation tips to elevate your bathroom and bedroom spaces into luxury havens. Transform your home with practical advice and inspiration!",slug:"essential-renovation-tips",children:{budgetFriendlyRenovations:{title:"Budget-Friendly Renovations for Your Bath and Bedroom 💰",description:"Discover how to create a luxurious bath and bedroom on a budget! Explore cost-effective tips, tricks, and ideas that deliver amazing results.",slug:"budget-friendly-renovations",children:null},planningYourBathroomRemodel:{title:"Planning Your Bathroom Remodel: Expert Insights & Tips 📐",description:"Planning a bathroom remodel? Get expert insights and tips to create your dream bathroom. From layouts to fixtures, we have you covered!",slug:"planning-your-bathroom-remodel",children:null},bedroomMakeoverIdeas:{title:"Inspiring Bedroom Makeover Ideas for a Cozy Retreat 🛏️",description:"Revamp your bedroom with inspiring makeover ideas. Create a cozy retreat with stylish decor, innovative designs, and smart organization tips!",slug:"bedroom-makeover-ideas",children:null},professionalVsDIY:{title:"Professional vs DIY: Choosing the Right Renovation Approach 🔧",description:"Should you hire a professional or go DIY? Explore the pros and cons of each approach for your renovation projects in bath and bedroom spaces.",slug:"professional-vs-diy",children:null},other:{title:"Other Renovation Tips for Unique Bathroom and Bedroom Styles 🌟",description:"Explore additional renovation tips for unique styles in your bath and bedroom. Achieve personalization with innovative ideas and expert guidance!",slug:"other-renovation-tips",children:null}}},wellnessAndSelfCare:{title:"Transform Your Home into a Wellness Sanctuary 🌿",description:"Explore the ultimate guide to enhancing your bath and bedroom spaces with inspiring ideas and wellness tips. Create your personal sanctuary today! 🛁🛌",slug:"wellness-and-self-care",children:{spaAtHomeTechniques:{title:"Spa at Home Techniques: Indulge in Serenity 🌺",description:"Discover effective techniques to create a luxurious spa experience at home that rejuvenates both body and mind. Elevate your self-care routine! 🌊",slug:"spa-at-home-techniques",children:null},relaxationInTheBath:{title:"Relaxation in the Bath: Unwind in Style 🛁",description:"Learn how to transform your bath into a tranquil oasis with relaxation techniques, products, and ambiance tips. Your personal retreat awaits! 🕯️",slug:"relaxation-in-the-bath",children:null},bedtimeRitualsForBetterSleep:{title:"Bedtime Rituals for Better Sleep: Sweet Dreams Await 🌙",description:"Explore effective bedtime rituals that promote better sleep quality and enhance your nightly routine. Sleep soundly with these tips! 💤",slug:"bedtime-rituals-for-better-sleep",children:null},aromatherapyInYourSpace:{title:"Aromatherapy in Your Space: Scents for Serenity 🌸",description:"Discover how to incorporate aromatherapy into your home to create a calming atmosphere and enhance your wellness journey. Breathe in relaxation! 🌼",slug:"aromatherapy-in-your-space",children:null},other:{title:"Other Wellness & Self-Care Tips: Embrace Relaxation 🌈",description:"Explore additional wellness tips and self-care practices that foster relaxation and rejuvenation in your living environment. Find your peace! 🌟",slug:"other-wellness tips",children:null}}},maintenanceAndCare:{title:"Essential Bath and Bedroom Maintenance Tips for Luxury Homes 🛁🛏️",description:"Explore expert tips for cleaning, caring for the bath and bedroom, and keeping your spaces luxurious. Discover effortless maintenance advice now! ✨",slug:"bath-bedroom-maintenance-tips",children:{cleaningTipsForBathroom:{title:"Ultimate Cleaning Tips for a Sparkling Bathroom 🧼✨",description:"Transform your bathroom with our essential cleaning tips! Enjoy a spotless oasis with effective strategies to maintain a fresh and luxurious environment! 🛁",slug:"cleaning-tips-bathroom",children:null},bedroomCareAndMaintenance:{title:"Comprehensive Bedroom Care and Maintenance Guide 🛏️💖",description:"Ensure your bedroom remains a relaxing sanctuary! Discover tips for care and maintenance to enhance comfort without sacrificing luxury! 🌟",slug:"bedroom-care-maintenance",children:null},preventingMoistureInBathrooms:{title:"How to Prevent Moisture in Bathrooms: Essential Tips 🌊❌",description:"Worried about moisture in your bathroom? Learn valuable prevention tips to maintain a dry, healthy, and luxurious space. Stay moisture-free today! 🧴",slug:"prevent-moisture-bathroom",children:null},updatingAgedFixtures:{title:"Updating Aged Fixtures for a Modern Bathroom Look 🛁🔧",description:"Revitalize your bathroom by updating aged fixtures! Discover expert advice on choosing modern alternatives that enhance elegance and functionality. ✨",slug:"updating-aged-fixtures",children:null},other:{title:"Additional Maintenance Tips for a Luxurious Home 📚💡",description:"Explore more maintenance tips to elevate your home ambiance. From décor advice to upkeep strategies, create your perfect sanctuary with ease! 🏡",slug:"other-maintenance-tips",children:null}}}},t=e.AUTHORS_INFO.reduce(((e,o)=>Object.assign(Object.assign({},e),{[o.name]:[o.description]})),{}),r=e.AUTHORS_INFO.map((e=>e.name)),i="🛁 🛏️ 🕯️ 🧴",n=Object.keys(o),a=[],s=[];for(const e of n){const t=o[e];if(null==t?void 0:t.children){a.push(...Object.keys(t.children));for(const e of a){const o=t.children[e];(null==o?void 0:o.children)&&s.push(...Object.keys(o.children))}}}const l="2024-10-22T00:00:00Z",d="luxebathe",u=`idn-${d}-dev`,c=`idn-${d}`;exports.DEFAULT_DESCRIPTION_EMOJIS=i,exports.authors=t,exports.authorsNames=r,exports.categories=n,exports.dataStructure=o,exports.devBucketName=u,exports.prodBucketName=c,exports.startDate=l,exports.subcategories=a,exports.subsubcategories=s;
@@ -0,0 +1,28 @@
1
+ export declare enum FiltersNames {
2
+ LuxuryLevels = "Luxury Levels",
3
+ DesignStyles = "Design Styles",
4
+ RoomFeatures = "Room Features",
5
+ DIYComplexity = "DIY Complexity",
6
+ SeasonalInspirations = "Seasonal Inspirations"
7
+ }
8
+ type LuxuryLevelsValues = 'Ultra-Luxurious' | 'Mid-Range Oasis' | 'Budget-Friendly Splurges' | 'Minimalist Chic' | 'Eco-Friendly Elegance';
9
+ type DesignStylesValues = 'Modern Elegance' | 'Rustic Retreat' | 'Bohemian Bliss' | 'Classic Sophistication' | 'Scandinavian Simplicity';
10
+ type RoomFeaturesValues = 'Spa-inspired Baths' | 'Smart Technology Integration' | 'Statement Lighting' | 'Relaxation Zones' | 'Custom Storage Solutions';
11
+ type DIYComplexityValues = 'Beginner-Friendly Projects' | 'Intermediate Makeovers' | 'Expert-Level Renovations' | 'Quick Fix Hacks' | 'Sustainable Upgrades';
12
+ type SeasonalInspirationsValues = 'Spring Refresh' | 'Summer Serenity' | 'Autumn Warmth' | 'Winter Wonderland' | 'Year-Round Comfort';
13
+ export type ArticleFilters = {
14
+ [FiltersNames.LuxuryLevels]: LuxuryLevelsValues[];
15
+ [FiltersNames.DesignStyles]: DesignStylesValues[];
16
+ [FiltersNames.RoomFeatures]: RoomFeaturesValues[];
17
+ [FiltersNames.DIYComplexity]: DIYComplexityValues[];
18
+ [FiltersNames.SeasonalInspirations]: SeasonalInspirationsValues[];
19
+ };
20
+ export declare const luxuryLevelsValues: LuxuryLevelsValues[];
21
+ export declare const designStylesValues: DesignStylesValues[];
22
+ export declare const roomFeaturesValues: RoomFeaturesValues[];
23
+ export declare const diyComplexityValues: DIYComplexityValues[];
24
+ export declare const seasonalInspirationsValues: SeasonalInspirationsValues[];
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={})).LuxuryLevels="Luxury Levels",e.DesignStyles="Design Styles",e.RoomFeatures="Room Features",e.DIYComplexity="DIY Complexity",e.SeasonalInspirations="Seasonal Inspirations";const s=["Ultra-Luxurious","Mid-Range Oasis","Budget-Friendly Splurges","Minimalist Chic","Eco-Friendly Elegance"],t=["Modern Elegance","Rustic Retreat","Bohemian Bliss","Classic Sophistication","Scandinavian Simplicity"],r=["Spa-inspired Baths","Smart Technology Integration","Statement Lighting","Relaxation Zones","Custom Storage Solutions"],i=["Beginner-Friendly Projects","Intermediate Makeovers","Expert-Level Renovations","Quick Fix Hacks","Sustainable Upgrades"],a=["Spring Refresh","Summer Serenity","Autumn Warmth","Winter Wonderland","Year-Round Comfort"],o={[exports.FiltersNames.LuxuryLevels]:[],[exports.FiltersNames.DesignStyles]:[],[exports.FiltersNames.RoomFeatures]:[],[exports.FiltersNames.DIYComplexity]:[],[exports.FiltersNames.SeasonalInspirations]:[]},l={[exports.FiltersNames.LuxuryLevels]:s,[exports.FiltersNames.DesignStyles]:t,[exports.FiltersNames.RoomFeatures]:r,[exports.FiltersNames.DIYComplexity]:i,[exports.FiltersNames.SeasonalInspirations]:a},n=()=>JSON.stringify(l,null,2);exports.designStylesValues=t,exports.diyComplexityValues=i,exports.fullFilters=l,exports.getFiltersTypesJSON=n,exports.initialFilters=o,exports.luxuryLevelsValues=s,exports.roomFeaturesValues=r,exports.seasonalInspirationsValues=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"),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.designStylesValues=t.designStylesValues,exports.diyComplexityValues=t.diyComplexityValues,exports.fullFilters=t.fullFilters,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.initialFilters=t.initialFilters,exports.luxuryLevelsValues=t.luxuryLevelsValues,exports.roomFeaturesValues=t.roomFeaturesValues,exports.seasonalInspirationsValues=t.seasonalInspirationsValues,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: LuxeBathe is an infotainment portal dedicated to the captivating world of bath and bedroom aesthetics. It offers a unique blend of inspirational ideas, tips, and trends for creating luxurious and relaxing spaces in your home.\n - Detailed description: LuxeBathe is your ultimate guide to transforming your bath and bedroom into serene sanctuaries of luxury and comfort. This portal features a wealth of articles that cover a wide range of topics including design inspirations, product reviews, DIY tips, and maintenance advice. From selecting the perfect bathtub and shower fixtures to creating a cozy bedroom oasis, LuxeBathe provides expert insight and innovative ideas to elevate your daily living. Our team of passionate writers and designers curate content that not only informs but also inspires, helping you make the most of your bath and bedroom spaces. Whether you're looking to renovate, decorate, or simply seek new ways to indulge in self-care, LuxeBathe is the go-to resource for all things bath and bedroom.\n - Target audience: The target audience for LuxeBathe includes homeowners, interior design enthusiasts, and individuals seeking to enhance their living spaces. This portal appeals to a diverse demographic that ranges from young professionals to families and retirees, all keen on improving their home environment. Specifically, it attracts those interested in luxury lifestyle, home improvement, and wellness, looking for practical guidance as well as creative inspiration to create their dream bath and bedroom.\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## Design Inspirations\n- Modern vs. Traditional Bath and Bedroom Styles\n- Color Palettes and Textures\n\n## Product Reviews\n- Bathtubs and Showers\n- Vanity and Sink Options\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 - Design Inspirations, 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 = "housewives and house owners";
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: LuxeBathe is an infotainment portal dedicated to the captivating world of bath and bedroom aesthetics. It offers a unique blend of inspirational ideas, tips, and trends for creating luxurious and relaxing spaces in your home.\n - Detailed description: LuxeBathe is your ultimate guide to transforming your bath and bedroom into serene sanctuaries of luxury and comfort. This portal features a wealth of articles that cover a wide range of topics including design inspirations, product reviews, DIY tips, and maintenance advice. From selecting the perfect bathtub and shower fixtures to creating a cozy bedroom oasis, LuxeBathe provides expert insight and innovative ideas to elevate your daily living. Our team of passionate writers and designers curate content that not only informs but also inspires, helping you make the most of your bath and bedroom spaces. Whether you're looking to renovate, decorate, or simply seek new ways to indulge in self-care, LuxeBathe is the go-to resource for all things bath and bedroom.\n - Target audience: The target audience for LuxeBathe includes homeowners, interior design enthusiasts, and individuals seeking to enhance their living spaces. This portal appeals to a diverse demographic that ranges from young professionals to families and retirees, all keen on improving their home environment. Specifically, it attracts those interested in luxury lifestyle, home improvement, and wellness, looking for practical guidance as well as creative inspiration to create their dream bath and bedroom.\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## Design Inspirations\n- Modern vs. Traditional Bath and Bedroom Styles\n- Color Palettes and Textures\n\n## Product Reviews\n- Bathtubs and Showers\n- Vanity and Sink Options\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 - Design Inspirations, 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="housewives and house owners",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 interior photograph for a glossy interior magazine, Interior photography, glossy Interior magazine, photorealistic, ultra realistic, maximum detail, highly detailed, commercial photography, sharp focus, epicurious, instagram, 4K, 8K, volumetric light, cinematic, octane render, uplight, no blur, depth of field, dof, film, bokeh, 85mm, f1.8, portrait, photo realistic, hyperrealistic, ornate, super detailed, intricate, dramatic, sunlight lighting, shadows, high dynamic range, masterpiece, best quality, (8k, RAW photo:1.2), vivid colour, masterpiece`,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 LuxeBathe Team | Passionate About Bath & Bedroom Design",description:"Get to know the creative minds behind LuxeBathe! 🛀✨ Our expert team is dedicated to inspiring your bath and bedroom transformations."},[exports.PageNames.Home]:{title:"LuxeBathe - Your Ultimate Bath & Bedroom Resource",description:"Discover luxurious bath and bedroom designs at LuxeBathe! 🛁💖 Explore tips, trends, and inspiration for your dream space."},[exports.PageNames.NotFound]:{title:"Page Not Found | LuxeBathe",description:"Oops! 😔 The page you're looking for doesn't exist. Explore LuxeBathe for inspiring bath and bedroom content!"},[exports.PageNames.AboutUs]:{title:"About LuxeBathe | Where Style Meets Comfort",description:"Learn about LuxeBathe's mission to transform your bath and bedroom into stylish sanctuaries. 🌟🛏️ Discover our passion for design!"},[exports.PageNames.PrivacyPolicy]:{title:"Privacy Policy | LuxeBathe",description:"Your privacy matters! 🔒🌐 Read LuxeBathe's privacy policy to understand how we protect your information while you explore fantastic designs."},[exports.PageNames.Terms]:{title:"Terms and Conditions | LuxeBathe",description:"Stay informed with LuxeBathe's terms and conditions! 📜✨ Understand your rights while enjoying our bath and bedroom insights."},[exports.PageNames.Sitemap]:{title:"Sitemap | LuxeBathe",description:"Navigate LuxeBathe with ease! 🗺️🛁 Find all our articles, tips, and resources for a stylish bath and bedroom experience."}},a=[{name:"Ananya Singh",description:"Ananya Singh is a seasoned interior designer and lifestyle writer based in Mumbai. With over a decade of experience in creating luxurious bath and bedroom spaces, she blends aesthetics with functionality in her articles. Ananya is passionate about sustainable design and shares tips on eco-friendly materials and products.",meta_title:"Ananya Singh - Interior Designer & Lifestyle Writer",meta_description:"Discover luxury and sustainability in bath and bedroom design with Ananya Singh, an experienced interior designer sharing her insights and tips."},{name:"Ravi Desai",description:"Ravi Desai is a freelance writer and home improvement expert from Bengaluru. He specializes in writing detailed articles on home renovation projects, particularly focusing on bathrooms and bedrooms. With a background in architectural design, Ravi provides unique perspectives on modern trends and classic styles.",meta_title:"Ravi Desai - Home Renovation Expert & Writer",meta_description:"Explore home improvement insights with Ravi Desai, a freelance writer and architectural designer specializing in bath and bedroom renovations."},{name:"Priya Iyer",description:"Priya Iyer is an award-winning home décor author and influencer based in New Delhi. With a flair for blending traditional Indian styles with contemporary designs, she enriches her articles with cultural references and practical tips for creating inviting spaces.",meta_title:"Priya Iyer - Home Décor Author & Influencer",meta_description:"Enhance your home with Priya Iyer's articles on bath and bedroom décor, offering a unique blend of Indian tradition and modern trends."},{name:"Arjun Sethi",description:"Arjun Sethi is a professional contractor and DIY enthusiast located in Pune. He shares practical insights and how-to guides based on his extensive experience in home construction and improvement. His articles focus on step-by-step processes for transforming bathrooms and bedrooms.",meta_title:"Arjun Sethi - DIY Expert & Contractor",meta_description:"Transform your spaces with Arjun Sethi's DIY guides and contractor tips for bath and bedroom enhancements, perfect for any homeowner."},{name:"Neha Kapoor",description:"Neha Kapoor is a lifestyle blogger and wellness advocate based in Chennai. Her writings often explore the intersection of wellness and home aesthetics, emphasizing how bathroom and bedroom designs can enhance mental well-being. She has a background in psychology and design.",meta_title:"Neha Kapoor - Wellness Advocate & Lifestyle Blogger",meta_description:"Discover the art of wellness in home design with Neha Kapoor, exploring how bath and bedroom environments can support mental health."},{name:"Vikram Anand",description:"Vikram Anand is a veteran journalist and author with over 15 years of experience in home and lifestyle writing. Based in Kolkata, he covers a wide range of topics related to bath and bedroom design, trends, and innovations, making his writings insightful and informative.",meta_title:"Vikram Anand - Journalist & Home Design Writer",meta_description:"Stay updated with the latest trends in bath and bedroom design with Vikram Anand, an experienced journalist sharing his insights and expertise."},{name:"Sanya Mehra",description:"Sanya Mehra is a luxury home textiles expert and writer from Hyderabad. Specializing in fabrics and materials for bedrooms and bathrooms, she provides readers with unique perspectives on how to choose the right textiles to enhance comfort and aesthetic appeal.",meta_title:"Sanya Mehra - Luxury Textiles Expert & Writer",meta_description:"Explore luxury textiles with Sanya Mehra, an expert writer sharing tips on selecting the perfect materials for a stylish bath and bedroom."},{name:"Karan Joshi",description:"Karan Joshi is an architect and lifestyle writer hailing from Ahmedabad. With a focus on innovative architecture and interior design, his articles emphasize smart designs for small spaces, particularly in bathrooms and bedrooms, appealing to urban dwellers.",meta_title:"Karan Joshi - Architect & Lifestyle Writer",meta_description:"Discover innovative design solutions for small spaces with Karan Joshi, an architect offering insights into effective bath and bedroom layouts."},{name:"Tina Rao",description:"Tina Rao is a renowned home staging expert and writer from Chandigarh. With extensive knowledge in making spaces look their best, her articles offer tips on staging bedrooms and bathrooms for a harmonious and inviting feel, perfect for homeowners and sellers alike.",meta_title:"Tina Rao - Home Staging Expert & Writer",meta_description:"Elevate your home aesthetic with Tina Rao's staging advice for bathrooms and bedrooms, designed to create inviting and harmonious spaces."},{name:"Rahul Choudhury",description:"Rahul Choudhury is an eco-friendly living advocate and writer based in Lucknow. He focuses on sustainable practices in home design, offering readers innovative solutions for creating environmentally friendly bathrooms and bedrooms without compromising style or comfort.",meta_title:"Rahul Choudhury - Eco-Friendly Living Advocate & Writer",meta_description:"Embrace sustainability in home design with Rahul Choudhury, sharing expert insights on eco-friendly bath and bedroom solutions."},{name:"Anaya Kapoor",description:"Anaya Kapoor is a noted home decor writer and designer based in Mumbai. With over 10 years of experience in the interior design industry, she specializes in creating luxurious spaces that reflect both style and functionality. Her keen eye for detail and passion for aesthetics have earned her numerous accolades, making her a sought-after expert in bath and bedroom design.",meta_title:"Anaya Kapoor - LuxeBathe Author",meta_description:"Explore the elegant insights of Anaya Kapoor, a seasoned home decor expert dedicated to transforming bath and bedroom spaces with luxury."},{name:"Rahul Mehta",description:"Rahul Mehta is an innovative interior designer and lifestyle blogger from Delhi. He has spent over 12 years exploring the intersection of luxury and sustainability in home design. Rahul’s articles provide practical tips on creating luxurious yet eco-friendly bath and bedroom environments.",meta_title:"Rahul Mehta - LuxeBathe Author",meta_description:"Discover Rahul Mehta's expert advice on sustainable luxury in bath and bedroom design, backed by over a decade of experience."},{name:"Priya Sharma",description:"Priya Sharma is a DIY and home improvement expert hailing from Bangalore. With a background in architecture and a love for interior design, she has been writing about transforming spaces for more than 8 years. Priya's focus on affordability and creativity makes her an inspiring voice for those looking to elevate their bath and bedroom areas.",meta_title:"Priya Sharma - LuxeBathe Author",meta_description:"Get inspired by Priya Sharma, a DIY home improvement expert who shares innovative ideas for stylish and affordable bath and bedroom transformations."},{name:"Siddharth Nair",description:"Siddharth Nair is a freelance writer and interior stylist from Chennai, specializing in creating upscale environments in living spaces. With a decade-long career, his articles emphasize design trends, personal anecdotes, and practical advice to enrich the luxury of bath and bedroom spaces.",meta_title:"Siddharth Nair - LuxeBathe Author",meta_description:"Immerse yourself in the upscale design insights of Siddharth Nair, a seasoned writer and stylist dedicated to enhancing bath and bedroom luxury."},{name:"Neha Verma",description:"Neha Verma is a home decor enthusiast and writer from Hyderabad. With five years of experience in lifestyle journalism, she explores modern trends in bath and bedroom design. Neha’s unique approach combines traditional Indian elements with contemporary style, providing readers with a diverse perspective.",meta_title:"Neha Verma - LuxeBathe Author",meta_description:"Enjoy Neha Verma’s creative insights blending traditional and contemporary styles in bath and bedroom design, with a focus on modern trends."},{name:"Meera Reddy",description:"Meera Reddy is an award-winning interior designer and writer based in Kolkata. She specializes in luxurious, personalized designs for residential projects, focusing on bath and bedroom aesthetics. With over 20 years in the industry, her insightful articles showcase her expertise in crafting serene spaces.",meta_title:"Meera Reddy - LuxeBathe Author",meta_description:"Dive into the expertise of Meera Reddy, an award-winning designer with 20 years of experience in creating breathtaking bath and bedroom spaces."},{name:"Amit Singh",description:"Amit Singh is a bath and bedroom product reviewer and designer from Pune. With a strong background in consumer research, he brings a unique perspective to product selection for luxury spaces. Amit’s articles help readers make informed choices while curating their bath and bedroom collections.",meta_title:"Amit Singh - LuxeBathe Author",meta_description:"Navigate the world of luxury bath and bedroom products with Amit Singh, a dedicated reviewer with a keen eye for quality and design."},{name:"Isha Desai",description:"Isha Desai is a creative content writer and home stylist from Jaipur, focusing on bath and bedroom trends that blend craftsmanship with luxury. With her passion for storytelling, Isha crafts articles that explore the art of design, enhancing readers' understanding of elegant living spaces.",meta_title:"Isha Desai - LuxeBathe Author",meta_description:"Explore the elegant writing of Isha Desai, a home stylist passionate about blending craftsmanship and luxury in bath and bedroom design."},{name:"Divya Anand",description:"Divya Anand is an established lifestyle influencer and interior designer from Chandigarh. With her extensive experience in creating chic bath and bedroom spaces, she shares practical advice and stylish design ideas that resonate with readers looking to elevate their homes.",meta_title:"Divya Anand - LuxeBathe Author",meta_description:"Unlock the stylish insights of Divya Anand, a lifestyle influencer and designer, as she shares tips for creating chic bath and bedroom spaces."},{name:"Shreya Kapoor",description:"Shreya Kapoor is a seasoned interior design expert with over 10 years of experience in creating luxurious and functional bathing spaces. Her passion for home aesthetics led her to specialize in baths and bedrooms, where she combines modern design with traditional Indian elements. Shreya holds a degree in Interior Design from NIFT and has a keen eye for detail that brings elegance to every project.",meta_title:"Shreya Kapoor - LuxeBathe Author",meta_description:"Discover articles by Shreya Kapoor, an expert interior designer specializing in luxurious bathing and bedroom spaces. Insights on design trends, tips, and more."},{name:"Arjun Mehta",description:"Arjun Mehta is a creative designer and home decor enthusiast from Delhi, India, with over 8 years of experience in sustainable home design. He focuses on creating eco-friendly spaces that don’t compromise on style, offering readers innovative solutions for their baths and bedrooms. His work has been featured in various design magazines and online platforms.",meta_title:"Arjun Mehta - LuxeBathe Author",meta_description:"Explore articles by Arjun Mehta, a designer passionate about sustainable home decor. Learn tips for eco-friendly baths and bedrooms at LuxeBathe."},{name:"Ananya Chatterjee",description:"Ananya Chatterjee is a lifestyle writer and bath product developer based in Mumbai. With a background in marketing and a love for personal care, she brings fresh and engaging content to LuxeBathe. Ananya focuses on product reviews, DIY tutorials, and wellness tips to elevate your bathing experience.",meta_title:"Ananya Chatterjee - LuxeBathe Author",meta_description:"Read insightful articles by Ananya Chatterjee, a lifestyle writer & bath product developer. Discover DIY tips and wellness insights at LuxeBathe."},{name:"Rahul Singh",description:"Rahul Singh is a renowned architect and urban planner from Bengaluru, specializing in spatial design. With over 12 years of experience, he contributes articles focused on optimizing space in bathrooms and bedrooms. Rahul believes in marrying functionality with aesthetics, making him a prominent voice in modern design.",meta_title:"Rahul Singh - LuxeBathe Author",meta_description:"Uncover expert insights from Rahul Singh, an architect specializing in spatial design for baths and bedrooms. Enhance your space at LuxeBathe."},{name:"Pooja Varma",description:"Pooja Varma is a wellness advocate and bath enthusiast who writes about the importance of relaxation spaces in homes. Based in Goa, she combines her passion for wellness with her knowledge of home decor, offering insights into creating calming bedroom and bath experiences. Pooja's work emphasizes the mental and physical benefits of a serene environment.",meta_title:"Pooja Varma - LuxeBathe Author",meta_description:"Discover wellness-focused articles by Pooja Varma, advocating for serene baths and bedrooms. Tips for enhancing relaxation at LuxeBathe."},{name:"Vikram Desai",description:"Vikram Desai is a freelance writer and home improvement expert with a special focus on bathroom renovations. With 15 years in the industry, he shares his expertise through practical tips and how-to guides. Vikram is passionate about helping readers transform their spaces into luxurious escapes.",meta_title:"Vikram Desai - LuxeBathe Author",meta_description:"Explore practical renovation tips from Vikram Desai, a home improvement expert. Transform your bathing spaces with expert advice at LuxeBathe."},{name:"Neha Iyer",description:"Neha Iyer is an established lifestyle blogger who focuses on home and decor topics. With an eye for style and a love for creative writing, she shares her unique perspective on bath and bedroom decoration. Neha’s articles often explore trends, DIY projects, and budget-friendly ideas.",meta_title:"Neha Iyer - LuxeBathe Author",meta_description:"Immerse yourself in stylish decor insights by Neha Iyer, a lifestyle blogger. Creative tips and trends for baths and bedrooms at LuxeBathe."},{name:"Tarun Joshi",description:"Tarun Joshi is a product designer and researcher based in Kolkata, specializing in bathroom fixtures and accessories. With a master's degree in product design, he writes in-depth articles that guide readers on choosing the right fixtures and enhancing their bath experience. His research informs environmentally sustainable options.",meta_title:"Tarun Joshi - LuxeBathe Author",meta_description:"Find expert product insights from Tarun Joshi, a product designer specializing in bath fixtures. Elevate your bathroom experience at LuxeBathe."},{name:"Sonia Roy",description:"Sonia Roy is a fashion and lifestyle journalist with a keen eye for trends in home design. With a career spanning over a decade, she combines her love of fashion with home decor, creating engaging articles that resonate with readers looking to infuse their baths and bedrooms with style and flair.",meta_title:"Sonia Roy - LuxeBathe Author",meta_description:"Discover stylish insights from Sonia Roy, a fashion and lifestyle journalist. Transform your bath and bedroom with trends at LuxeBathe."},{name:"Deepak Kumar",description:"Deepak Kumar is an expert in home automation and smart home technology. Based in Hyderabad, he writes about integrating technology into everyday living spaces, especially in baths and bedrooms. His articles help readers create smart, efficient, and luxurious environments.",meta_title:"Deepak Kumar - LuxeBathe Author",meta_description:"Explore innovative home technology solutions with Deepak Kumar, specializing in smart baths and bedrooms. Enhance your comfort at LuxeBathe."},{name:"Aditi Rao",description:"Aditi Rao is an interior designer and lifestyle writer with over 10 years of experience in home décor and furnishings. Based in Mumbai, she has worked with numerous high-end clients, creating luxurious and functional spaces. Aditi is passionate about sustainability and often integrates eco-friendly elements into her designs.",meta_title:"Aditi Rao - Interior Designer & Home Décor Writer | LuxeBathe",meta_description:"Explore the insights of Aditi Rao, an experienced interior designer and lifestyle writer, as she shares her expertise in creating luxurious and sustainable bath and bedroom spaces."},{name:"Vikram Singh",description:"Vikram Singh is a seasoned architect and design consultant from Delhi. With over 15 years in the industry, he specializes in creating serene and harmonious bathroom and bedroom spaces. Vikram combines traditional Indian aesthetics with modern functionality in his designs, making him a sought-after expert.",meta_title:"Vikram Singh - Architect & Design Consultant | LuxeBathe",meta_description:"Dive into the world of Vikram Singh, a skilled architect and design consultant who focuses on curating tranquil and efficient bath and bedroom designs that blend tradition with modernity."},{name:"Neha Mehta",description:"Neha Mehta is a content creator and home improvement expert with a passion for creating inspiring lifestyle content. With a background in journalism, she has collaborated with leading home and lifestyle brands, bringing her unique perspective to bath and bedroom design.",meta_title:"Neha Mehta - Lifestyle Writer & Home Improvement Expert | LuxeBathe",meta_description:"Discover Neha Mehta's inspiring articles on home improvement and lifestyle, focusing on innovative and stylish ideas for your bath and bedroom renovations."},{name:"Rahul Chatterjee",description:"Rahul Chatterjee is an award-winning wellness and lifestyle blogger based in Bengaluru. With a focus on holistic living, he shares tips and tricks for creating calming bath and bedroom environments that promote relaxation and wellness.",meta_title:"Rahul Chatterjee - Wellness Blogger & Lifestyle Expert | LuxeBathe",meta_description:"Join Rahul Chatterjee as he guides you on creating serene sanctuaries in your home, enhancing relaxation and wellness in your bath and bedroom spaces."},{name:"Sonal Gupta",description:"Sonal Gupta is a fashion-forward interior stylist and editor from Chennai, specializing in contemporary designs. With a keen eye for detail, she curates stylish décor ideas for baths and bedrooms that resonate with modern sensibilities.",meta_title:"Sonal Gupta - Interior Stylist & Editor | LuxeBathe",meta_description:"Explore Sonal Gupta's chic and contemporary design ideas for your bath and bedroom, where style meets practicality in modern home décor."},{name:"Pooja Bansal",description:"Pooja Bansal is a home organization specialist and lifestyle writer from Hyderabad. With a focus on decluttering and practical storage solutions, she helps individuals create peaceful and organized bath and bedroom environments.",meta_title:"Pooja Bansal - Home Organization Specialist | LuxeBathe",meta_description:"Get expert tips from Pooja Bansal on organizing your bath and bedroom spaces for maximum tranquility and efficiency, turning chaos into calm."},{name:"Anil Kumar",description:"Anil Kumar is a Feng Shui consultant and home interior expert with two decades of experience. He brings a unique perspective to bath and bedroom design by harmonizing energy flow, ensuring these spaces promote relaxation and well-being.",meta_title:"Anil Kumar - Feng Shui Consultant & Interior Expert | LuxeBathe",meta_description:"Enhance your bath and bedroom spaces with Anil Kumar's insights on Feng Shui principles, creating harmonious environments that foster relaxation and peace."},{name:"Riya Sharma",description:"Riya Sharma is a creative graphic designer and home décor influencer from Kolkata. With a passion for aesthetics and color theory, she shares visually stunning ideas for decorating baths and bedrooms that mirror personal style.",meta_title:"Riya Sharma - Graphic Designer & Home Décor Influencer | LuxeBathe",meta_description:"Follow Riya Sharma's artistic journey as she shares visually captivating ideas for transforming your bath and bedroom with unique décor elements."},{name:"Siddharth Mehta",description:"Siddharth Mehta is a luxury travel and lifestyle writer, blending his passion for travel with home design. His articles reflect high-end bath and bedroom designs inspired by global trends and luxury experiences.",meta_title:"Siddharth Mehta - Luxury Travel & Lifestyle Writer | LuxeBathe",meta_description:"Explore Siddharth Mehta's luxurious insights into bath and bedroom design, inspired by his global travels and high-end lifestyle experiences."},{name:"Emily Carter",description:"Emily Carter is a seasoned interior designer with over a decade of experience in creating luxurious bathroom and bedroom spaces. Based in London, she believes in marrying aesthetics with functionality and has worked with numerous high-profile clients. Her passion for transforming everyday environments into lavish retreats shines through in her writing.",meta_title:"Emily Carter - LuxeBathe Expert Author",meta_description:"Discover the insights and expertise of Emily Carter, a professional interior designer specializing in luxury bathroom and bedroom design."},{name:"Raj Patel",description:"Raj Patel is a home improvement enthusiast and freelance writer from Mumbai, India. With years of hands-on experience in renovation projects, Raj shares his unique perspective on maximizing space and enhancing comfort in bathrooms and bedrooms. He aims to inspire readers to create their dream environments on a budget.",meta_title:"Raj Patel - LuxeBathe Contributor",meta_description:"Explore creative home improvement ideas from Raj Patel, an expert in budget-friendly renovations for luxury bathrooms and bedrooms."},{name:"Sofia Garcia",description:"Sofia Garcia, a San Francisco-based lifestyle blogger, specializes in eco-friendly and sustainable design. Her extensive background in architecture allows her to craft well-informed articles about creating luxurious yet environmentally conscious bath and bedroom spaces. Sofia is an advocate for green living and often collaborates with sustainable brands.",meta_title:"Sofia Garcia - LuxeBathe Sustainable Living Expert",meta_description:"Join Sofia Garcia as she shares her expertise on creating eco-friendly luxury bath and bedroom spaces with sustainable practices."},{name:"Liam Johnson",description:"Based in Sydney, Liam Johnson is an award-winning home decor journalist with over 15 years of experience. He provides readers with the latest trends, products, and tips for creating stunning bathrooms and bedrooms. Liam's keen eye for detail and in-depth research make him a trusted voice in the home lifestyle industry.",meta_title:"Liam Johnson - LuxeBathe Design Innovator",meta_description:"Stay ahead of the trends with Liam Johnson, an award-winning journalist offering expert advice on luxury bathroom and bedroom design."},{name:"Chloe Wang",description:"Chloe Wang is a home staging expert and writer based in Toronto, Canada. With a focus on enhancing the aesthetic appeal of spaces, her work encompasses everything from bathrooms to bedrooms. Chloe has a knack for storytelling, drawing readers in with her captivating insights and vivid illustrations of design concepts.",meta_title:"Chloe Wang - LuxeBathe Home Staging Specialist",meta_description:"Enhance your living space with tips from Chloe Wang, a home staging expert providing insights on luxurious bath and bedroom decor."},{name:"Michael Thompson",description:"Michael Thompson is a professional contractor and DIY expert from Chicago, USA. Combining his expertise in construction with a flair for design, he shares invaluable tips on how to remodel bathrooms and bedrooms effectively. His articles empower readers to take charge of their own home projects with confidence.",meta_title:"Michael Thompson - LuxeBathe DIY Authority",meta_description:"Empower your next home project with insights from Michael Thompson, a DIY expert specializing in bathroom and bedroom renovations."},{name:"Ava Dubois",description:"Ava Dubois is a luxury lifestyle influencer and writer based in Paris. With a profound love for aesthetics, she writes about the latest high-end trends in bath and bedroom design. Ava’s articles often blend her personal experiences with practical advice, offering readers a glimpse into opulent living.",meta_title:"Ava Dubois - LuxeBathe Luxury Lifestyle Writer",meta_description:"Discover luxury living insights from Ava Dubois, a Paris-based influencer specializing in opulent bathroom and bedroom designs."},{name:"Samuel Kim",description:"Samuel Kim, located in Seoul, South Korea, is a journalist specializing in smart home technology and design. His background in IT and fascination with modern living allow him to explore the intersection of technology and luxury in bath and bedroom spaces, providing readers with innovative ideas and solutions.",meta_title:"Samuel Kim - LuxeBathe Smart Home Expert",meta_description:"Explore technological advancements in bath and bedroom design with Samuel Kim, a journalist covering the latest smart home trends."},{name:"Olivia Schmidt",description:"Olivia Schmidt is an acclaimed wellness expert and holistic living advocate from Berlin, Germany. She focuses on creating calming and rejuvenating spaces within the home, especially bathrooms and bedrooms, that promote overall well-being. Her writing encourages readers to integrate mindfulness into their design choices.",meta_title:"Olivia Schmidt - LuxeBathe Wellness Advocate",meta_description:"Create a sanctuary for wellness with insight from Olivia Schmidt, an expert on designing serene bath and bedroom spaces."},{name:"Nicolette van der Meer",description:"Nicolette van der Meer, based in Amsterdam, is an internationally recognized interior stylist known for her minimalistic approach. With years of experience in both commercial and residential design, she shares her unique blend of style tips and practical solutions for creating elegant bathroom and bedroom spaces.",meta_title:"Nicolette van der Meer - LuxeBathe Design Stylist",meta_description:"Achieve simplicity and elegance in your home with styling tips from Nicolette van der Meer, a professional interior stylist."},{name:"Emma Stone",description:"Emma Stone is an interior design expert with over 10 years of experience specializing in luxury bathrooms and bedrooms. She has worked with high-profile clients in creating serene spaces that blend aesthetics with functionality. Emma shares her expertise on design trends, renovations, and decor inspiration, making her a valuable voice in the LuxeBathe community.",meta_title:"Emma Stone - LuxeBathe Interior Design Expert",meta_description:"Discover the latest trends and expert tips from Emma Stone, LuxeBathe's interior design specialist focusing on luxury bathrooms and bedrooms."},{name:"Michael Chen",description:"Michael Chen is an internationally recognized architect and home design blogger. With a passion for sustainable living, he integrates eco-friendly materials into luxurious bathroom and bedroom designs. His innovative ideas and solutions cater to modern lifestyle needs, ensuring functionality meets style in every living space.",meta_title:"Michael Chen - LuxeBathe Eco-Friendly Design Advocate",meta_description:"Explore eco-conscious design insights with Michael Chen, LuxeBathe's architect specializing in luxurious yet sustainable bathroom and bedroom solutions."},{name:"Sophia Rodriguez",description:"Sophia Rodriguez is a travel and lifestyle writer who blends her experiences from around the globe into her writing about bath and bedroom aesthetics. With a keen eye for detail and a love for cultural elements, she explores how different cultures influence decor styles, helping readers find inspiration for their own homes.",meta_title:"Sophia Rodriguez - LuxeBathe Global Lifestyle Writer",meta_description:"Join Sophia Rodriguez in exploring global decor influences and travel-inspired designs for luxurious bathrooms and bedrooms at LuxeBathe."},{name:"James Carter",description:"James Carter is a professional contractor and home renovation expert with over 15 years of hands-on experience. His practical advice covers not only construction tips but also innovative design ideas for bath and bedroom makeovers, aiming to guide homeowners through every step of their renovation journey.",meta_title:"James Carter - LuxeBathe Renovation Expert",meta_description:"Get practical renovation tips from James Carter, LuxeBathe's home improvement expert specializing in luxurious bathroom and bedroom transformations."},{name:"Ava Johnson",description:"Ava Johnson is a home decor stylist and social media influencer known for her chic and personalized approach to interior spaces. Her expertise in color trends and textile selection helps readers make informed choices to curate their perfect bath and bedroom environments, emphasizing the importance of personal style.",meta_title:"Ava Johnson - LuxeBathe Home Decor Stylist",meta_description:"Discover chic decor tips from Ava Johnson, LuxeBathe's home stylist dedicated to helping you personalize your dream bathroom and bedroom."},{name:"Liam Thompson",description:"Liam Thompson is a wellness advocate with a focus on creating calm spaces in the home. His writings delve into the intersection of design and well-being, offering tips on how to create a relaxing atmosphere in bathrooms and bedrooms. Liam emphasizes mindfulness in design, promoting total relaxation.",meta_title:"Liam Thompson - LuxeBathe Wellness and Design Advocate",meta_description:"Transform your home into a sanctuary with insights from Liam Thompson, LuxeBathe's wellness expert on creating relaxing bath and bedroom spaces."},{name:"Olivia Wilson",description:"Olivia Wilson is a seasoned home improvement blogger with a focus on innovative storage solutions for bathrooms and bedrooms. She helps homeowners maximize their space while maintaining an elegant aesthetic, sharing smart organization hacks and product recommendations to simplify everyday living.",meta_title:"Olivia Wilson - LuxeBathe Storage and Organization Specialist",meta_description:"Simplify your home with Olivia Wilson, LuxeBathe’s expert in elegant storage solutions for bathrooms and bedrooms, featuring organization hacks and tips."},{name:"Ethan Patel",description:"Ethan Patel is a luxury product reviewer and lifestyle blogger with a taste for high-end home accessories. He provides insightful critiques and recommendations on premium bath and bedroom products, guiding readers toward creating indulgent experiences in their personal spaces.",meta_title:"Ethan Patel - LuxeBathe Luxury Product Reviewer",meta_description:"Elevate your bath and bedroom experience with Ethan Patel's expert reviews on luxury home products at LuxeBathe, the ultimate guide to indulgence."},{name:"Mia Davis",description:"Mia Davis is a DIY enthusiast and self-taught design aficionado with a flair for transforming ordinary spaces into extraordinary retreats. Her blog features creative projects and step-by-step tutorials that empower homeowners to embark on their own bath and bedroom transformations with confidence.",meta_title:"Mia Davis - LuxeBathe DIY Home Transformation Expert",meta_description:"Get inspired with Mia Davis, LuxeBathe’s DIY expert sharing creative and easy projects to transform your bathroom and bedroom into a luxurious retreat."},{name:"Noah Wright",description:"Noah Wright is an award-winning journalist and writer who has dedicated his career to exploring trends in home design and architecture. His analytical approach brings depth to his articles, focusing on how design impacts lifestyle and comfort in bath and bedroom spaces worldwide.",meta_title:"Noah Wright - LuxeBathe Design Trends Journalist",meta_description:"Stay ahead of the curve with Noah Wright, LuxeBathe’s design trends journalist exploring how bathroom and bedroom design shapes your lifestyle."}],t=a.reduce(((e,i)=>Object.assign(Object.assign({},e),{[i.name]:{title:i.meta_title,description:i.meta_description}})),{});exports.AUTHORS_INFO=a,exports.AUTHORS_META=t,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:#0a0a0a;--theme-color-8:#2f2f2f;--theme-color-7:#5c5c5c;--theme-color-6:#8c8c8c;--theme-color-5:#b8b8b8;--theme-color-4:#eaeaea;--theme-color-3:#ebd79a;--theme-color-2:#f8e4b1;--theme-color-1:#f9ebaf;--color-bg-layout:#f1e9d0;--color-bg-hover:#e6c4a8;--article-border-radius:25px;--btn-border-radius:8px;--category-border-radius:30px;}
@@ -0,0 +1 @@
1
+ @import "sizing.css";@import "colors.css";@import "fonts.css";@import "theme.css";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tedo-publisher",
3
- "version": "1.3.381",
3
+ "version": "1.3.383",
4
4
  "description": "Package for config files and reusable code/components between projects",
5
5
  "main": "dist/index.js",
6
6
  "files": [