tedo-publisher 1.3.332 → 1.3.334

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,231 @@
1
+ export declare const dataStructure: {
2
+ productReviews: {
3
+ title: string;
4
+ description: string;
5
+ slug: string;
6
+ children: {
7
+ smartphones: {
8
+ title: string;
9
+ description: string;
10
+ slug: string;
11
+ children: null;
12
+ };
13
+ laptops: {
14
+ title: string;
15
+ description: string;
16
+ slug: string;
17
+ children: null;
18
+ };
19
+ smartHomeDevices: {
20
+ title: string;
21
+ description: string;
22
+ slug: string;
23
+ children: null;
24
+ };
25
+ other: {
26
+ title: string;
27
+ description: string;
28
+ slug: string;
29
+ children: null;
30
+ };
31
+ };
32
+ };
33
+ buyingGuides: {
34
+ title: string;
35
+ description: string;
36
+ slug: string;
37
+ children: {
38
+ bestHeadphones: {
39
+ title: string;
40
+ description: string;
41
+ slug: string;
42
+ children: null;
43
+ };
44
+ gamingLaptops: {
45
+ title: string;
46
+ description: string;
47
+ slug: string;
48
+ children: null;
49
+ };
50
+ homeAutomationSystems: {
51
+ title: string;
52
+ description: string;
53
+ slug: string;
54
+ children: null;
55
+ };
56
+ other: {
57
+ title: string;
58
+ description: string;
59
+ slug: string;
60
+ children: null;
61
+ };
62
+ };
63
+ };
64
+ howToTips: {
65
+ title: string;
66
+ description: string;
67
+ slug: string;
68
+ children: {
69
+ setUpSmartDevices: {
70
+ title: string;
71
+ description: string;
72
+ slug: string;
73
+ children: null;
74
+ };
75
+ installingSoftware: {
76
+ title: string;
77
+ description: string;
78
+ slug: string;
79
+ children: null;
80
+ };
81
+ techTroubleshooting: {
82
+ title: string;
83
+ description: string;
84
+ slug: string;
85
+ children: null;
86
+ };
87
+ other: {
88
+ title: string;
89
+ description: string;
90
+ slug: string;
91
+ children: null;
92
+ };
93
+ };
94
+ };
95
+ techTrends: {
96
+ title: string;
97
+ description: string;
98
+ slug: string;
99
+ children: {
100
+ aiInConsumerTech: {
101
+ title: string;
102
+ description: string;
103
+ slug: string;
104
+ children: null;
105
+ };
106
+ sustainableTechnology: {
107
+ title: string;
108
+ description: string;
109
+ slug: string;
110
+ children: null;
111
+ };
112
+ wearableDevices: {
113
+ title: string;
114
+ description: string;
115
+ slug: string;
116
+ children: null;
117
+ };
118
+ other: {
119
+ title: string;
120
+ description: string;
121
+ slug: string;
122
+ children: null;
123
+ };
124
+ };
125
+ };
126
+ softwareReviews: {
127
+ title: string;
128
+ description: string;
129
+ slug: string;
130
+ children: {
131
+ productivityApps: {
132
+ title: string;
133
+ description: string;
134
+ slug: string;
135
+ children: null;
136
+ };
137
+ securitySoftware: {
138
+ title: string;
139
+ description: string;
140
+ slug: string;
141
+ children: null;
142
+ };
143
+ gamingSoftware: {
144
+ title: string;
145
+ description: string;
146
+ slug: string;
147
+ children: null;
148
+ };
149
+ other: {
150
+ title: string;
151
+ description: string;
152
+ slug: string;
153
+ children: null;
154
+ };
155
+ };
156
+ };
157
+ hardwareInsights: {
158
+ title: string;
159
+ description: string;
160
+ slug: string;
161
+ children: {
162
+ cpuVsGpu: {
163
+ title: string;
164
+ description: string;
165
+ slug: string;
166
+ children: null;
167
+ };
168
+ upgradeOptions: {
169
+ title: string;
170
+ description: string;
171
+ slug: string;
172
+ children: null;
173
+ };
174
+ pcBuildingGuides: {
175
+ title: string;
176
+ description: string;
177
+ slug: string;
178
+ children: null;
179
+ };
180
+ other: {
181
+ title: string;
182
+ description: string;
183
+ slug: string;
184
+ children: null;
185
+ };
186
+ };
187
+ };
188
+ gadgetComparisons: {
189
+ title: string;
190
+ description: string;
191
+ slug: string;
192
+ children: {
193
+ smartphonesVsTablets: {
194
+ title: string;
195
+ description: string;
196
+ slug: string;
197
+ children: null;
198
+ };
199
+ laptopsVsDesktops: {
200
+ title: string;
201
+ description: string;
202
+ slug: string;
203
+ children: null;
204
+ };
205
+ smartSpeakersVsSmartDisplays: {
206
+ title: string;
207
+ description: string;
208
+ slug: string;
209
+ children: null;
210
+ };
211
+ other: {
212
+ title: string;
213
+ description: string;
214
+ slug: string;
215
+ children: null;
216
+ };
217
+ };
218
+ };
219
+ };
220
+ export declare const authors: Record<string, string>;
221
+ export declare const authorsNames: string[];
222
+ export declare const DEFAULT_DESCRIPTION_EMOJIS = "\uD83D\uDCBB\uD83D\uDCF1\uD83D\uDCF0\u2728";
223
+ export declare const categories: ("productReviews" | "buyingGuides" | "techTrends" | "softwareReviews" | "howToTips" | "hardwareInsights" | "gadgetComparisons")[];
224
+ export declare const subcategories: string[];
225
+ export declare const subsubcategories: string[];
226
+ export type Category = keyof typeof dataStructure;
227
+ export type CategoryNode = (typeof dataStructure)[Category];
228
+ export type SubcategoryKeyByCategory<T extends Category> = (typeof dataStructure)[T]['children'];
229
+ export declare const startDate = "2024-10-08T00:00:00Z";
230
+ export declare const devBucketName = "idn-teckora-dev";
231
+ export declare const prodBucketName = "idn-teckora";
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./seo.js");const t={productReviews:{title:"In-Depth Product Reviews for Tech Enthusiasts 📱💻",description:"Explore Teckora's extensive product reviews on smartphones, laptops, smart home devices, and more to make well-informed technology decisions! 🌟",slug:"product-reviews",children:{smartphones:{title:"Comprehensive Smartphone Reviews for Every User 📱",description:"Dive into our detailed smartphone reviews and ratings to find the perfect device that fits your lifestyle and budget. Discover your new phone! 📱✨",slug:"smartphone-reviews",children:null},laptops:{title:"Expert Laptop Reviews for All Your Needs 💻",description:"Find the best laptops with our insightful reviews. Whether for work, gaming, or school, we help simplify your laptop search today! 💻🔍",slug:"laptop-reviews",children:null},smartHomeDevices:{title:"Innovative Smart Home Device Reviews for Modern Living 🏠",description:"Upgrade your living space with our smart home device reviews. Explore gadgets that enhance convenience, security, and energy efficiency! 🚀🔌",slug:"smart-home-device-reviews",children:null},other:{title:"Miscellaneous Product Reviews You Shouldn't Miss 🔍",description:"Discover a variety of product reviews ranging from accessories to unique tech gadgets. Uncover hidden gems that complement your tech journey! 🌈✨",slug:"other-product-reviews",children:null}}},buyingGuides:{title:"Your Ultimate Buying Guides for Consumer Tech Products",description:"Explore essential buying guides on technology products like headphones, gaming laptops, and home automation systems. 📚💻",slug:"buying-guides",children:{bestHeadphones:{title:"Discover the Best Headphones for Every Need | Buying Guide",description:"Find the perfect headphones for music, gaming, or travel. Our guide covers top picks, expert reviews, and buying tips! 🎧✨",slug:"best-headphones",children:null},gamingLaptops:{title:"Ultimate Guide to Gaming Laptops: Power & Performance",description:"Unleash your gaming potential with the best gaming laptops! We review specs, performance, and value for gamers like you. 🎮💻",slug:"gaming-laptops",children:null},homeAutomationSystems:{title:"Transform Your Home with the Best Home Automation Systems",description:"Explore top home automation systems that enhance convenience, security, and energy efficiency in your smart home. 🏡🔌",slug:"home-automation-systems",children:null},other:{title:"Explore Other Essential Tech Buying Guides | Teckora",description:"Discover insightful guides on various tech products, from smartwatches to accessories, tailored for the savvy consumer. 🛍️📱",slug:"other-tech",children:null}}},howToTips:{title:"Expert How-To Tips for Consumer Technology Enthusiasts",description:"Discover essential how-to tips on setting up devices, installing software, and troubleshooting tech issues. 💡 Empower your tech skills with Teckora!",slug:"how-to-tips",children:{setUpSmartDevices:{title:"How to Set Up Smart Devices: A Comprehensive Guide",description:"Learn the best practices for setting up your smart devices effortlessly. 📲 Enhance your home technology experience today!",slug:"set-up-smart-devices",children:null},installingSoftware:{title:"Installing Software: Step-by-Step Instructions for Beginners",description:"Follow our detailed guide to install software smoothly on your devices. 💻 Simplifying tech installation for everyone!",slug:"installing-software",children:null},techTroubleshooting:{title:"Tech Troubleshooting: Solve Common Issues Like a Pro",description:"Master the art of troubleshooting with our expert tips for resolving tech problems effectively. ⚙️ Get back on track in no time!",slug:"tech-troubleshooting",children:null},other:{title:"Other Essential Tech Tips and Tricks You Should Know",description:"Explore additional tech tips and tricks to enhance your digital lifestyle. 📚 Dive into a world of technical know-how!",slug:"other-tech-tips",children:null}}},techTrends:{title:"Discover the Latest in Tech Trends - AI, Sustainability & More!",description:"Explore cutting-edge technology trends that shape our world today. Discover AI, sustainable tech, wearable devices, and more! 🌐🔥",slug:"tech-trends-discover-latest-tech",children:{aiInConsumerTech:{title:"AI in Consumer Technology - Revolutionizing Your Digital Life! 🤖",description:"Uncover how AI is transforming consumer technology. Learn about innovations, applications, and impact on our daily lives! 🌍✨",slug:"ai-in-consumer-technology",children:null},sustainableTechnology:{title:"Sustainable Technology - Paving the Way for a Greener Future! 🌱",description:"Dive into sustainable tech solutions that are reshaping industries. Explore eco-friendly innovations designed for a better planet! 🌎💡",slug:"sustainable-technology",children:null},wearableDevices:{title:"Wearable Devices - Enhancing Health and Connectivity! ⌚",description:"Discover the latest in wearable tech. From fitness trackers to smartwatches, learn how these devices are revolutionizing our lives! 🏃‍♀️📱",slug:"wearable-devices",children:null},other:{title:"Other Tech Trends - Uncover the Unseen Innovations! 💡",description:"Explore various tech trends beyond the mainstream. From niche gadgets to unique innovations, find out what's next! 🌌🚀",slug:"other-tech-trends",children:null}}},softwareReviews:{title:"Software Reviews: Explore the Latest in Consumer Technology",description:"Delve into expert reviews of the latest software solutions across various categories to make informed choices in the tech landscape! 🚀",slug:"software-reviews",children:{productivityApps:{title:"Productivity Apps: Boost Your Efficiency with Top Software",description:"Discover essential productivity apps that enhance work performance and streamline daily tasks—your ultimate guide to staying organized! 📈",slug:"productivity-apps",children:null},securitySoftware:{title:"Security Software: Safeguard Your Digital Life with Robust Solutions",description:"Explore the best security software options to protect your devices and personal data from cyber threats—ensuring your online safety! 🔒",slug:"security-software",children:null},gamingSoftware:{title:"Gaming Software: Elevate Your Gaming Experience with Top Titles",description:"Uncover the latest gaming software that enhances playability and enjoyment—you deserve the best gaming experience! 🎮",slug:"gaming-software",children:null},other:{title:"Other Software: Discover Unique Solutions for Every Need",description:"Dive into a variety of other software categories covering unique and niche applications that cater to diverse tech needs! 🌐",slug:"other-software",children:null}}},hardwareInsights:{title:"Explore Hardware Insights: CPU vs GPU, Upgrades & Build Guides 💻",description:"Discover expert insights on CPUs, GPUs, and computer building guides. Upgrade your tech knowledge with our in-depth articles and engaging content! 🔍",slug:"hardware-insights",children:{cpuVsGpu:{title:"CPU vs GPU: Detailed Comparisons for Smart Choices 💡",description:"Navigate the complexities of CPU vs GPU with our comprehensive comparisons. Learn which component suits your needs best in today’s tech landscape! ⚡",slug:"cpu-vs-gpu",children:null},upgradeOptions:{title:"Best Upgrade Options: Enhance Your Computer's Performance 🚀",description:"Explore the best upgrade options to boost your PC’s performance. From RAM to SSDs, find out what upgrades make the most impact! 🖥️",slug:"upgrade-options",children:null},pcBuildingGuides:{title:"PC Building Guides: Step-by-Step Instructions for Enthusiasts 🛠️",description:"Access detailed PC building guides to help you construct a powerful and efficient system. Perfect for first-timers and seasoned builders alike! 🔧",slug:"pc-building-guides",children:null},other:{title:"Other Hardware Insights: Explore a Variety of Topics 📚",description:"Delve into various hardware topics with our extensive collection of insights. Perfect for tech enthusiasts seeking diverse information! 🧠",slug:"other-hardware-insights",children:null}}},gadgetComparisons:{title:"Gadget Comparisons: Smartphones, Laptops, and More",description:"Explore insightful comparisons of gadgets at Teckora, helping tech enthusiasts make informed choices on smartphones, laptops, and more! 📱💻",slug:"gadget-comparisons",children:{smartphonesVsTablets:{title:"Smartphones vs Tablets: Which is Better for You?",description:"Discover the differences between smartphones and tablets. Get insights on functionality, usability, and choose what's best for your lifestyle! 📱📊",slug:"smartphones-vs-tablets",children:null},laptopsVsDesktops:{title:"Laptops vs Desktops: Finding Your Ideal Computer",description:"Compare laptops and desktops in terms of performance, versatility, and value. Make an informed decision for your computing needs! 💻🏠",slug:"laptops-vs-desktops",children:null},smartSpeakersVsSmartDisplays:{title:"Smart Speakers vs Smart Displays: What Should You Choose?",description:"Uncover the key differences between smart speakers and smart displays. Understand their features to choose the perfect device for your home! 🗣️🖥️",slug:"smart-speakers-vs-smart-displays",children:null},other:{title:"Other Gadget Comparisons and Insights",description:"Explore other gadget comparisons and unique insights on various tech products. Enhance your technology knowledge with our comprehensive articles! 📦🔍",slug:"other-gadget-comparisons",children:null}}}},s=e.AUTHORS_INFO.reduce(((e,t)=>Object.assign(Object.assign({},e),{[t.name]:[t.description]})),{}),i=e.AUTHORS_INFO.map((e=>e.name)),o="💻📱📰✨",r=Object.keys(t),n=[],a=[];for(const e of r){const s=t[e];if(null==s?void 0:s.children){n.push(...Object.keys(s.children));for(const e of n){const t=s.children[e];(null==t?void 0:t.children)&&a.push(...Object.keys(t.children))}}}const l="2024-10-08T00:00:00Z",c="teckora",u=`idn-${c}-dev`,h=`idn-${c}`;exports.DEFAULT_DESCRIPTION_EMOJIS=o,exports.authors=s,exports.authorsNames=i,exports.categories=r,exports.dataStructure=t,exports.devBucketName=u,exports.prodBucketName=h,exports.startDate=l,exports.subcategories=n,exports.subsubcategories=a;
@@ -0,0 +1,28 @@
1
+ export declare enum FiltersNames {
2
+ TechType = "Tech Type",
3
+ ExpertiseLevel = "Expertise Level",
4
+ ContentFormat = "Content Format",
5
+ TrendingTopics = "Trending Topics",
6
+ BuyingIntent = "Buying Intent"
7
+ }
8
+ type TechTypeValues = 'Gadgets' | 'Software' | 'Home Tech' | 'Wearables' | 'Accessories';
9
+ type ExpertiseLevelValues = 'Beginner' | 'Intermediate' | 'Advanced' | 'Pro';
10
+ type ContentFormatValues = 'Article' | 'Guide' | 'Review';
11
+ type TrendingTopicsValues = 'AI Innovations' | 'Smart Home Devices' | 'Mobile Technology' | 'Gaming Gadgets' | 'Sustainable Tech';
12
+ type BuyingIntentValues = 'Researching' | 'Comparative Shopping' | 'Ready to Buy' | 'Looking for Deals';
13
+ export type ArticleFilters = {
14
+ [FiltersNames.TechType]: TechTypeValues[];
15
+ [FiltersNames.ExpertiseLevel]: ExpertiseLevelValues[];
16
+ [FiltersNames.ContentFormat]: ContentFormatValues[];
17
+ [FiltersNames.TrendingTopics]: TrendingTopicsValues[];
18
+ [FiltersNames.BuyingIntent]: BuyingIntentValues[];
19
+ };
20
+ export declare const techTypeValues: TechTypeValues[];
21
+ export declare const expertiseLevelValues: ExpertiseLevelValues[];
22
+ export declare const contentFormatValues: ContentFormatValues[];
23
+ export declare const trendingTopicsValues: TrendingTopicsValues[];
24
+ export declare const buyingIntentValues: BuyingIntentValues[];
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={})).TechType="Tech Type",e.ExpertiseLevel="Expertise Level",e.ContentFormat="Content Format",e.TrendingTopics="Trending Topics",e.BuyingIntent="Buying Intent";const t=["Gadgets","Software","Home Tech","Wearables","Accessories"],s=["Beginner","Intermediate","Advanced","Pro"],r=["Article","Guide","Review"],i=["AI Innovations","Smart Home Devices","Mobile Technology","Gaming Gadgets","Sustainable Tech"],o=["Researching","Comparative Shopping","Ready to Buy","Looking for Deals"],n={[exports.FiltersNames.TechType]:[],[exports.FiltersNames.ExpertiseLevel]:[],[exports.FiltersNames.ContentFormat]:[],[exports.FiltersNames.TrendingTopics]:[],[exports.FiltersNames.BuyingIntent]:[]},a={[exports.FiltersNames.TechType]:t,[exports.FiltersNames.ExpertiseLevel]:s,[exports.FiltersNames.ContentFormat]:r,[exports.FiltersNames.TrendingTopics]:i,[exports.FiltersNames.BuyingIntent]:o},p=()=>JSON.stringify(a,null,2);exports.buyingIntentValues=o,exports.contentFormatValues=r,exports.expertiseLevelValues=s,exports.fullFilters=a,exports.getFiltersTypesJSON=p,exports.initialFilters=n,exports.techTypeValues=t,exports.trendingTopicsValues=i;
@@ -0,0 +1,3 @@
1
+ import { GetDefaultImagesFrontmatter } from 'src/common/types';
2
+ export declare const getDefaultImagesFrontmatter: GetDefaultImagesFrontmatter;
3
+ export declare const prohibitedWordsInAltTitle: RegExp;
@@ -0,0 +1 @@
1
+ "use strict";const e=(e,n)=>{const t=n(e),i=undefined,a=undefined,l=undefined,o=undefined;return[{alt:`${e} Introduction`,filename:`${t}-introduction.png`,title:`${e} Introduction`},{alt:`Magnificent ${e}`,filename:`Magnificent-${t}.png`,title:`Magnificent ${e}`},{alt:`Notable ${e}`,filename:`${t}-notable.png`,title:`Notable ${e}`},{alt:`${e} Summary`,filename:`${t}-summary.png`,title:`${e} Summary`}]},n=/\b(?:hands|men|women|human|people|chief|family|mixing|serving|tasting|rolling)\b/i;exports.getDefaultImagesFrontmatter=e,exports.prohibitedWordsInAltTitle=n;
@@ -0,0 +1,15 @@
1
+ export * from './data';
2
+ export * from './filters';
3
+ export * from './helpers';
4
+ export * from './prompts/images';
5
+ export * from './seo';
6
+ import './styles/colors.css';
7
+ import './styles/fonts.css';
8
+ import './styles/global.css';
9
+ import './styles/sizing.css';
10
+ import './styles/vars.css';
11
+ import './styles/theme.css';
12
+ import * as gpt35Articles from './prompts/gpt35turbo/articles';
13
+ import * as gpt4oMiniArticles from './prompts/gpt4oMini/articles';
14
+ export { gpt35Articles, gpt4oMiniArticles };
15
+ export * from './prompts/data';
@@ -0,0 +1 @@
1
+ "use strict";var e=require("./data.js"),t=require("./filters.js"),r=require("./helpers.js"),s=require("./prompts/images.js"),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.buyingIntentValues=t.buyingIntentValues,exports.contentFormatValues=t.contentFormatValues,exports.expertiseLevelValues=t.expertiseLevelValues,exports.fullFilters=t.fullFilters,exports.getFiltersTypesJSON=t.getFiltersTypesJSON,exports.initialFilters=t.initialFilters,exports.techTypeValues=t.techTypeValues,exports.trendingTopicsValues=t.trendingTopicsValues,exports.getDefaultImagesFrontmatter=r.getDefaultImagesFrontmatter,exports.prohibitedWordsInAltTitle=r.prohibitedWordsInAltTitle,exports.getOpenAiBasedImagePrompt=s.getOpenAiBasedImagePrompt,exports.getOpenAiBasedImagePromptDalle2=s.getOpenAiBasedImagePromptDalle2,exports.getStableDiffusionImagePrompt=s.getStableDiffusionImagePrompt,exports.AUTHORS_INFO=o.AUTHORS_INFO,exports.AUTHORS_META=o.AUTHORS_META,exports.PAGES_SEO=o.PAGES_SEO,Object.defineProperty(exports,"PageNames",{enumerable:!0,get:function(){return o.PageNames}}),exports.gpt35Articles=a,exports.gpt4oMiniArticles=p,exports.END_STEP=i.END_STEP,exports.FILTERS_INFO=i.FILTERS_INFO,exports.IMAGES_PROHIBITED_WORDS=i.IMAGES_PROHIBITED_WORDS,exports.START_STEP=i.START_STEP,exports.TARGET_AUDIENCE=i.TARGET_AUDIENCE,exports.ZERO_SECTION=i.ZERO_SECTION,exports.portalInfo=i.portalInfo;
@@ -0,0 +1,7 @@
1
+ export declare const portalInfo = "The article is written for the web portal.I will give you important information regarding the web portal:\n - Brief description: Teckora is a leading infotainment portal dedicated to consumer technology, offering insightful articles, guides, and reviews aimed at helping tech enthusiasts make informed choices in today's fast-paced digital landscape.\n - Detailed description: Teckora serves as a comprehensive resource for all things consumer technology. Featuring a wide array of articles that cover product reviews, buying guides, how-to tips, and in-depth analyses of the latest trends in technology, Teckora is designed to empower readers with the knowledge they need to navigate an ever-evolving tech world. The portal boasts a user-friendly interface, making it easy for visitors to find relevant information on gadgets, software, home tech, and more. With an emphasis on clear, accessible language and expert insights, Teckora aims to bridge the gap between complex tech concepts and everyday users, ensuring that even the most novice tech consumers can find value in its content.\n - Target audience: The target audience for Teckora includes tech-savvy individuals, consumers looking for guidance on technology purchases, gadget enthusiasts, and anyone interested in understanding the latest developments in consumer technology. This audience ranges from young adults in college or early careers to middle-aged professionals seeking to enhance their tech knowledge and skills.\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## Features and Specifications\n- Overview of Key Features\n- Technical Specifications\n\n## Performance and User Experience\n- Real-World Performance\n- Ease of Use\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 - Features and Specifications, 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 = "tech-savvy individuals, gadget lovers, early adopters of technology";
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: Teckora is a leading infotainment portal dedicated to consumer technology, offering insightful articles, guides, and reviews aimed at helping tech enthusiasts make informed choices in today's fast-paced digital landscape.\n - Detailed description: Teckora serves as a comprehensive resource for all things consumer technology. Featuring a wide array of articles that cover product reviews, buying guides, how-to tips, and in-depth analyses of the latest trends in technology, Teckora is designed to empower readers with the knowledge they need to navigate an ever-evolving tech world. The portal boasts a user-friendly interface, making it easy for visitors to find relevant information on gadgets, software, home tech, and more. With an emphasis on clear, accessible language and expert insights, Teckora aims to bridge the gap between complex tech concepts and everyday users, ensuring that even the most novice tech consumers can find value in its content.\n - Target audience: The target audience for Teckora includes tech-savvy individuals, consumers looking for guidance on technology purchases, gadget enthusiasts, and anyone interested in understanding the latest developments in consumer technology. This audience ranges from young adults in college or early careers to middle-aged professionals seeking to enhance their tech knowledge and skills.\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## Features and Specifications\n- Overview of Key Features\n- Technical Specifications\n\n## Performance and User Experience\n- Real-World Performance\n- Ease of Use\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 - Features and Specifications, IF it's applicable to the theme of the article.\n",a="highlighting the key points that will be discussed and the relevance of the topic",i="synthesizing the information presented throughout",o="tech-savvy individuals, gadget lovers, early adopters of technology",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=i,exports.FILTERS_INFO=s,exports.IMAGES_PROHIBITED_WORDS=r,exports.START_STEP=a,exports.TARGET_AUDIENCE=o,exports.ZERO_SECTION=n,exports.portalInfo=t;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt35turbo/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),p=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),i=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=i,exports.getFiltersPrompt=p,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,6 @@
1
+ import { GetOutlinePrompt, GetEntitiesPrompt, GetFiltersPrompt, GetImagesMetaPrompt, GetSectionPrompt } from 'src/common/types';
2
+ export declare const getBasePrompt: GetOutlinePrompt;
3
+ export declare const getSectionPrompt: GetSectionPrompt;
4
+ export declare const getImagesMetaPrompt: GetImagesMetaPrompt;
5
+ export declare const getFiltersPrompt: GetFiltersPrompt;
6
+ export declare const getEntitiesPrompt: GetEntitiesPrompt;
@@ -0,0 +1 @@
1
+ "use strict";var t=require("../data.js"),e=require("../../../common/prompts/gpt4oMini/articles.js"),o=require("../../../common/data.js"),r=require("../../data.js");const m=(o,r=e.DEFAULT_HEADINGS_NUM,m)=>e.getOutlineCommonPrompt({keyword:o,headingsNum:r,additionalInfo:t.portalInfo,locale:m}),s=o=>e.getSectionCommonPrompt(o,{zeroSectionPrompt:t.ZERO_SECTION,startStep:t.START_STEP,endStep:t.END_STEP,targetAudience:t.TARGET_AUDIENCE}),a=o=>e.getImagesMetaCommonPrompt(o,t.IMAGES_PROHIBITED_WORDS),i=o=>e.getFiltersCommonPrompt(o,t.FILTERS_INFO),p=t=>e.getEntitiesCommonPrompt(t,o.getCategoriesTypesJSON(r.dataStructure));exports.getBasePrompt=m,exports.getEntitiesPrompt=p,exports.getFiltersPrompt=i,exports.getImagesMetaPrompt=a,exports.getSectionPrompt=s;
@@ -0,0 +1,4 @@
1
+ import { GetOpenAiBasedImagePrompt, GetStableDiffusionImagePrompt } from 'src/common/types';
2
+ export declare const getStableDiffusionImagePrompt: GetStableDiffusionImagePrompt;
3
+ export declare const getOpenAiBasedImagePrompt: GetOpenAiBasedImagePrompt;
4
+ export declare const getOpenAiBasedImagePromptDalle2: GetOpenAiBasedImagePrompt;
@@ -0,0 +1 @@
1
+ "use strict";var e=require("../../common/prompts/images.js");const a=({title:a,alt:o,articleTitle:t})=>({prompt:`Highly detailed illustration of ${a}, ${o}, for an article ${t} in a leading technology publication, showcasing software interfaces, and technological innovation, clean and modern tech magazine style, accurate representation of software, user interfaces, development tools, and tech gadgets, 4K, 8K resolution, minimalistic design, clear visuals, no blur, depth of field, modern digital art, precise and informative, tech-focused imagery,`,negativePrompt:e.SD_NEGATIVE_PROMPT,options:{steps:7,cfg_scale:3}}),o=({title:e,alt:a,articleTitle:o})=>`I NEED a hyper-real illustration of a ${e} at food style photography, ${a}, for an article ${o} for a glossy recipe magazine, photorealistic, ultra realistic, maximum detail, highly detailed, food style, food style photography, professional food photography, commercial photography, foreground focus, recipes.com, delish.com, epicurious, instagram, 4K, 8K, volumetric light, octane render, uplight, no blur, depth of field, dof, bokeh, foreground focus. Please exclude any: Photocamera, videocamera, Spotlight, soffit, ramp, scanners, strobe, soffit truss, film props, radio, cooking timer, watches, clocks, men, woman, people, hand, nands, leg, legs, font, username, error, words, letters, digits, autograph, trademark, name, easy-negative, cartoon, worst quality, low quality, blind, bad eyes, ugly eyes, dead eyes, greyscale, monochrome, vignette, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, censored, rabs, muscular, rib, blurry, blur, grainy, teeth, low resolution, lowres, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bw, bad photo, bad photography, bad art, morbid, ugly, asymmetrical, mutated malformed, mutilated, poorly lit, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, duplicate, airbrushed,, anime, semi-realistic, cgi, render, 3D, blender, digital art, manga, amateur, 3D, 3D Game, 3D Game Scene, 3D Character, bad hands, , bad body, bad face, bad teeth, bad arms, bad legs, deformities, drawing, deformed iris, deformed pupils, deformed, painting, crayon, sketch, graphite, impressionist, noisy, poorly drawn hands, poorly drawn face, poorly drawn eyes, mutation, bad proportions, cloned face, disfigured, gross proportions, malformed limbs, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck, incoherent from this hyper-real illustration of a ${e}`,t=({title:e})=>`\n\tPhotorealistic highly detailed image of ingredients for ${e}, arranged professionally as if for a food photography shoot. image should showcase maximum detail realism, with a focus on foreground, emulating the style of a high-definition, 8k resolution professional food photograph. lighting should be volumetric and uplit, with a depth of field and bokeh effect, avoiding any blur for clarity. overall aesthetic should be reminiscent of the Kodak Portrait 800 style.\n\tNegative Prompt:\n\teasy-negative, cartoon, worst quality, low quality, text, title, logo, signature ,watermark, extra limbs, extra fingers, mutated hands, bad anatomy, blurry, blur, grainy, teeth, low resolution, low details, oversaturated, undersaturated, overexposed, underexposed, grayscale, bad shadow, draft, cropped, out of frame, cut off, jpeg artefacts, out of focus, glitch, airbrushed, anime, semi-realistic, cgi, render, 3D, blender, manga, amateur, 3D, 3D Game, drawing, sketch\n`;exports.getOpenAiBasedImagePrompt=o,exports.getOpenAiBasedImagePromptDalle2=t,exports.getStableDiffusionImagePrompt=a;
@@ -0,0 +1,23 @@
1
+ export interface PageSeoData {
2
+ title: string;
3
+ description: string;
4
+ }
5
+ export declare enum PageNames {
6
+ Authors = "authors",
7
+ Home = "home",
8
+ NotFound = "not-found",
9
+ AboutUs = "about-us",
10
+ PrivacyPolicy = "privacy-policy",
11
+ Terms = "terms",
12
+ Sitemap = "sitemap"
13
+ }
14
+ export type PagesSeo = Record<PageNames, PageSeoData>;
15
+ export interface AuthorInfo {
16
+ name: string;
17
+ description: string;
18
+ meta_title: string;
19
+ meta_description: string;
20
+ }
21
+ export declare const PAGES_SEO: PagesSeo;
22
+ export declare const AUTHORS_INFO: AuthorInfo[];
23
+ export declare const AUTHORS_META: Record<string, PageSeoData>;
@@ -0,0 +1 @@
1
+ "use strict";var e;exports.PageNames=void 0,(e=exports.PageNames||(exports.PageNames={})).Authors="authors",e.Home="home",e.NotFound="not-found",e.AboutUs="about-us",e.PrivacyPolicy="privacy-policy",e.Terms="terms",e.Sitemap="sitemap";const a={[exports.PageNames.Authors]:{title:"Meet the Minds Behind Teckora",description:"Discover the experts at Teckora who bring you the latest in consumer technology! 🤓 Explore their insights and innovations."},[exports.PageNames.Home]:{title:"Teckora - Your Ultimate Consumer Technology Destination",description:"Dive into the world of consumer tech with Teckora! 🖥️ Stay updated on trends, reviews, and tips that elevate your tech experience."},[exports.PageNames.NotFound]:{title:"404 - Page Not Found | Teckora",description:"Oops! 😅 The page you are looking for doesn't exist. Let’s get you back on track to explore the best in consumer technology!"},[exports.PageNames.AboutUs]:{title:"About Teckora - Passion for Consumer Tech",description:"Learn about Teckora's mission to provide engaging and informative content on consumer technology! 🌟 Your tech journey starts here."},[exports.PageNames.PrivacyPolicy]:{title:"Teckora Privacy Policy - Your Data Matters",description:"Your privacy is paramount at Teckora. 🔒 Read our privacy policy to understand how we protect your information and data."},[exports.PageNames.Terms]:{title:"Teckora Terms of Service - Know Your Rights",description:"Familiarize yourself with Teckora's terms of service for a seamless experience. 📜 Know your rights while exploring consumer technology."},[exports.PageNames.Sitemap]:{title:"Teckora Sitemap - Navigate with Ease",description:"Find your way around Teckora effortlessly! 🗺️ Our sitemap gives you quick access to all our consumer technology articles and resources."}},i=[{name:"Rohit Sharma",description:"Rohit Sharma is an experienced tech journalist with over a decade in the consumer technology space. Having worked with major publications, he specializes in writing product reviews, tech news, and gadget comparisons. His passion for technology and keen insights make him a valuable contributor to Teckora.",meta_title:"Rohit Sharma - Tech Journalist at Teckora",meta_description:"Discover the latest tech insights and in-depth reviews from Rohit Sharma at Teckora, your go-to source for consumer technology."},{name:"Priya Menon",description:"Priya Menon is a technology enthusiast and editor with a background in software engineering. Her analytical skills and love for innovation help her cover the latest trends and developments in consumer tech, providing readers with comprehensive insights at Teckora.",meta_title:"Priya Menon - Tech Editor at Teckora",meta_description:"Join Priya Menon as she explores the latest innovations in consumer technology at Teckora, bringing you expert reviews and insights."},{name:"Amit Gupta",description:"Amit Gupta is a seasoned tech blogger and reviewer who has been covering consumer technology for over 8 years. With a knack for simplifying complex tech concepts, he delivers informative and engaging content at Teckora, focusing on gadgets and software.",meta_title:"Amit Gupta - Tech Blogger at Teckora",meta_description:"Read Amit Gupta's expert articles on the newest gadgets and tech trends at Teckora, where technology is made accessible to everyone."},{name:"Neha Kapoor",description:"Neha Kapoor is a digital content creator and tech enthusiast who specializes in consumer electronics. Her writing combines in-depth research and personal experience, providing Teckora readers with practical tech advice and insights.",meta_title:"Neha Kapoor - Tech Content Creator at Teckora",meta_description:"Explore the world of consumer electronics with Neha Kapoor at Teckora, delivering practical advice and insightful tech content."},{name:"Vikram Singh",description:"Vikram Singh is a product analyst and tech reviewer with a passion for consumer technology. With years of experience testing and analyzing products, he shares his findings and recommendations through detailed reviews on Teckora.",meta_title:"Vikram Singh - Tech Reviewer at Teckora",meta_description:"Get in-depth product reviews and analysis from Vikram Singh at Teckora, guiding you in your consumer technology choices."},{name:"Suman Reddy",description:"Suman Reddy is a tech writer with expertise in mobile technology and gadgets. With extensive experience in the field, she shares her passion for the latest devices and trends, making her articles a must-read on Teckora.",meta_title:"Suman Reddy - Mobile Tech Writer at Teckora",meta_description:"Discover the latest in mobile technology with Suman Reddy at Teckora, where expertise meets passion for gadgets."},{name:"Karan Joshi",description:"Karan Joshi is a technology strategist and freelance writer who covers various aspects of consumer tech, including software and hardware advancements. His content on Teckora focuses on helping users make informed decisions through thorough analysis.",meta_title:"Karan Joshi - Technology Strategist at Teckora",meta_description:"Learn about the latest consumer tech strategies and insights with Karan Joshi at Teckora, your reliable tech partner."},{name:"Anjali Verma",description:"Anjali Verma is a tech journalist dedicated to exploring innovations in consumer technology. With a background in journalism, she excels at producing compelling articles that engage and inform Teckora’s readers.",meta_title:"Anjali Verma - Tech Journalist at Teckora",meta_description:"Follow Anjali Verma for the latest consumer technology news and reviews at Teckora, where tech meets storytelling."},{name:"Rahul Desai",description:"Rahul Desai is a tech enthusiast and software developer who has transitioned into writing. His technical background provides a unique perspective in his articles at Teckora, where he breaks down complex topics into reader-friendly content.",meta_title:"Rahul Desai - Tech Writer and Developer at Teckora",meta_description:"Join Rahul Desai as he simplifies software development and consumer tech trends at Teckora, bridging the gap between tech and users."},{name:"Meera Nair",description:"Meera Nair is an accomplished technology writer focused on emerging technologies and their impacts on consumers. Her work at Teckora emphasizes real-world applications and trends, making technology accessible for all readers.",meta_title:"Meera Nair - Emerging Tech Writer at Teckora",meta_description:"Explore emerging technologies with Meera Nair at Teckora and understand their impact on consumers today."},{name:"Ravi Kumar",description:"Ravi Kumar is a seasoned tech journalist with over 10 years of experience in consumer technology. He has contributed to leading publications and is passionate about reviewing gadgets, software, and emerging tech trends in India.",meta_title:"Ravi Kumar - Expert Technology Journalist",meta_description:"Explore insights from Ravi Kumar, a technology journalist with 10+ years of experience in consumer tech reviews and trends at Teckora."},{name:"Ayesha Desai",description:"Ayesha Desai is a digital marketing strategist and tech enthusiast, specializing in consumer electronics and technology trends. With a background in content marketing, she brings a unique perspective to product reviews.",meta_title:"Ayesha Desai - Digital Marketing Strategist and Tech Enthusiast",meta_description:"Read articles by Ayesha Desai, a digital marketing strategist and tech enthusiast, focusing on trends and reviews in consumer technology on Teckora."},{name:"Neha Iyer",description:"Neha Iyer is a tech journalist and product reviewer with a keen eye for innovation. With over 8 years of experience in the industry, she has a knack for breaking down intricate technology concepts into relatable content.",meta_title:"Neha Iyer - Tech Journalist and Product Reviewer",meta_description:"Follow Neha Iyer, a tech journalist with 8+ years of experience, as she reviews the latest consumer technology on Teckora."},{name:"Arjun Malhotra",description:"Arjun Malhotra is a seasoned IT professional and tech writer with a passion for consumer technology. With a decade of experience, he analyzes innovations and trends influencing the tech market.",meta_title:"Arjun Malhotra - IT Professional and Tech Writer",meta_description:"Explore tech insights from Arjun Malhotra, an IT professional with a decade of experience writing about consumer technology trends on Teckora."},{name:"Pooja Bansal",description:"Pooja Bansal is a technology analyst and writer with a flair for consumer electronics. With over 6 years in the tech industry, she provides readers with hands-on reviews and valuable tech advice.",meta_title:"Pooja Bansal - Technology Analyst and Writer",meta_description:"Engage with Pooja Bansal, a savvy technology analyst and writer, delivering honest consumer electronics reviews and tech advice on Teckora."},{name:"Rahul Verma",description:"Rahul Verma is a tech-savvy writer and influencer known for his engaging content on the latest technology. With a background in journalism, he brings a fresh perspective to tech reviews.",meta_title:"Rahul Verma - Tech Writer and Influencer",meta_description:"Join Rahul Verma as he shares engaging articles and reviews on the latest technology trends and gadgets on Teckora."},{name:"Tanvi Sethi",description:"Tanvi Sethi is an expert content creator focused on consumer technology. With over 5 years of experience, she specializes in writing clear, concise articles about gadgets and tech innovations.",meta_title:"Tanvi Sethi - Expert Content Creator in Consumer Technology",meta_description:"Discover tech articles by Tanvi Sethi, a content creator with a focus on consumer technology trends and gadget reviews on Teckora."},{name:"Simran Kaur",description:"Simran Kaur is a senior tech editor at a renowned technology portal, now writing for Teckora. She has been in the industry for over 12 years, focusing on consumer technology and digital trends.",meta_title:"Simran Kaur - Senior Tech Editor and Digital Trends Expert",meta_description:"Connect with Simran Kaur, a senior tech editor with over 12 years of experience in consumer technology and digital trends at Teckora."},{name:"Rajesh Kumar",description:"Rajesh Kumar is a seasoned technology journalist with over 10 years of experience covering consumer technology trends in India and beyond. His deep understanding of the tech landscape, coupled with a passion for emerging technologies, enables him to bring insightful analyses and engaging content to Teckora. He has previously contributed to major publications and is known for his comprehensive product reviews and in-depth guides.",meta_title:"Rajesh Kumar - Technology Journalist at Teckora",meta_description:"Explore articles by Rajesh Kumar, a veteran technology journalist with 10+ years of experience in consumer tech. Dive into his insights on the latest trends and reviews."},{name:"Suresh Singh",description:"Suresh Singh is a tech analyst with a background in software engineering. With over a decade of experience in the industry, he provides a unique perspective on consumer technology. His analytical articles and expert reviews on Teckora guide readers in making informed purchasing decisions, particularly in the areas of software and app development.",meta_title:"Suresh Singh - Tech Analyst at Teckora",meta_description:"Delve into technology with Suresh Singh, a tech analyst with a decade of software engineering experience. Explore his insights on apps, software, and consumer tech."},{name:"Pooja Mehta",description:"Pooja Mehta is a technology writer and digital marketer with expertise in e-commerce and consumer gadgets. She has been writing professionally for 6 years and has contributed to numerous tech blogs and websites. At Teckora, Pooja focuses on market trends, product comparisons, and helping consumers make savvy tech choices.",meta_title:"Pooja Mehta - Technology Writer at Teckora",meta_description:"Discover articles by Pooja Mehta, a technology writer with a focus on e-commerce and consumer gadgets. Gain insights into market trends and savvy tech choices."},{name:"Arjun Patel",description:"Arjun Patel is a tech blogger and social media strategist who has spent over 5 years covering consumer technology and its impact on daily life. His engaging writing style and thorough research ensure that readers receive the latest news and updates. Arjun's articles on Teckora resonate with tech newbies and enthusiasts alike.",meta_title:"Arjun Patel - Tech Blogger at Teckora",meta_description:"Engage with Arjun Patel, a tech blogger with 5 years of experience. Read his engaging content on consumer technology and its real-world impact at Teckora."},{name:"Sneha Reddy",description:"Sneha Reddy is a freelance writer with a focus on AI, IoT, and futuristic technologies. With a Bachelor's degree in Computer Science and 4 years in tech writing, she brings a technical edge to her articles. At Teckora, Sneha bridges the gap between technology and everyday use, presenting readers with cutting-edge innovations.",meta_title:"Sneha Reddy - Tech Writer at Teckora",meta_description:"Explore innovative articles by Sneha Reddy, a tech writer focusing on AI, IoT, and futuristic technologies. Discover how they shape our everyday lives on Teckora."},{name:"Vikram Sharma",description:"Vikram Sharma is an experienced tech reviewer who specializes in consumer electronics. With a background in electrical engineering and over 7 years in tech journalism, he tests and reviews gadgets thoroughly before writing. His detailed reviews and tutorials at Teckora help consumers understand the best technology for their needs.",meta_title:"Vikram Sharma - Tech Reviewer at Teckora",meta_description:"Read expert reviews from Vikram Sharma, a seasoned tech reviewer specializing in consumer electronics. Find out which gadgets suit your needs on Teckora."},{name:"Neha Joshi",description:"Neha Joshi is a digital journalist passionate about technology and sustainability. With a degree in Environmental Studies and 5 years of writing experience, she explores how consumer technology can promote eco-friendly practices. Her insightful articles at Teckora highlight sustainable innovations in the tech world.",meta_title:"Neha Joshi - Digital Journalist at Teckora",meta_description:"Uncover sustainable tech practices with Neha Joshi, a digital journalist covering eco-friendly innovations. Explore her insights on technology and the environment at Teckora."},{name:"Karan Desai",description:"Karan Desai is a technology and finance writer with a decade of experience in covering fintech innovations and consumer tech. His analytical approach helps readers navigate the complexities of technology investments and tools. At Teckora, Karan shares valuable insights that foster informed decision-making in consumer tech.",meta_title:"Karan Desai - Fintech and Tech Writer at Teckora",meta_description:"Gain financial insights in tech with Karan Desai, a seasoned writer on fintech innovations and consumer technologies. Empower your decisions on Teckora."},{name:"Riya Nair",description:"Riya Nair is a tech enthusiast and content creator, focused on gaming technologies and gamer culture. With 4 years of experience, her articles and guides on Teckora delve into the latest gaming trends, product reviews, and tips for gamers. Riya's infectious enthusiasm for gaming makes her pieces a must-read for anyone in the tech space.",meta_title:"Riya Nair - Gaming Tech Writer at Teckora",meta_description:"Join Riya Nair, a passionate gaming tech writer, as she explores the latest in gaming technologies and trends. Perfect for gamers at Teckora."},{name:"Neha Sharma",description:"Neha Sharma is a tech enthusiast and writer with a particular focus on mobile technology and innovation. With a background in computer science, she blends technical expertise with a passion for tech journalism.",meta_title:"Neha Sharma - Mobile Technology Expert at Teckora",meta_description:"Explore Neha Sharma's articles at Teckora, where she combines her computer science background with deep insights into mobile technology and innovation."},{name:"Arjun Singh",description:"Arjun Singh is a consumer tech blogger and content creator with over 8 years of experience writing about smart home devices, IoT, and consumer electronics. His articles aim to simplify technology for everyday users.",meta_title:"Arjun Singh - Smart Home Technology Specialist at Teckora",meta_description:"Read insightful articles by Arjun Singh on smart home technology at Teckora, where he demystifies IoT and consumer electronics for the average user."},{name:"Sanjana Mehta",description:"Sanjana Mehta is a digital marketing expert turned tech writer specializing in software reviews and technology guides. With 5 years of journalism experience, she provides actionable insights for technology users.",meta_title:"Sanjana Mehta - Software and Technology Guide at Teckora",meta_description:"Join Sanjana Mehta on Teckora as she shares her expertise in software reviews and guides, offering readers practical insights into the world of technology."},{name:"Vikram Bhatia",description:"Vikram Bhatia is a data analyst and a technology writer with insights into cybersecurity and data privacy. With a background in information technology, he aims to educate consumers about keeping their digital lives safe.",meta_title:"Vikram Bhatia - Cybersecurity and Data Privacy Writer at Teckora",meta_description:"Learn about cybersecurity and data privacy from Vikram Bhatia on Teckora, where his analytical background enriches his articles for safeguarding your digital life."},{name:"Pooja Gupta",description:"Pooja Gupta is an emerging technology writer focused on AI and machine learning. She has a background in IT and has contributed to several tech publications while developing her expertise in emerging technologies.",meta_title:"Pooja Gupta - AI & Machine Learning Writer at Teckora",meta_description:"Dive into the world of AI and machine learning with Pooja Gupta at Teckora, where she shares her expertise and insights on the future of technology."},{name:"Aniket Joshi",description:"Aniket Joshi is an experienced tech blogger with a focus on consumer reviews and tech comparisons. With over 7 years of experience in the tech field, he aims to empower readers to make informed choices.",meta_title:"Aniket Joshi - Consumer Tech Reviewer at Teckora",meta_description:"Check out Aniket Joshi's reviews and comparisons on Teckora, where he helps consumers navigate the ever-changing world of technology."},{name:"Maya Reddy",description:"Maya Reddy is a tech content strategist with a passion for wearable technologies and health tech. Her blend of marketing strategy and technical knowledge makes her articles both informative and compelling.",meta_title:"Maya Reddy - Wearable & Health Tech Writer at Teckora",meta_description:"Explore wearable and health tech innovations through Maya Reddy's articles on Teckora, where her strategic insights lead readers to healthy living through technology."},{name:"Karan Verma",description:"Karan Verma is a freelance technology writer with expertise in web technology and e-commerce. He excels in crafting content that educates businesses and consumers about the latest web trends.",meta_title:"Karan Verma - Web Technology and E-commerce Expert at Teckora",meta_description:"Discover Karan Verma's insights on web technology and e-commerce at Teckora, where he untangles the latest trends for businesses and consumers alike."},{name:"Divya Yadav",description:"Divya Yadav is an experienced freelance journalist focusing on social media technology and influencer trends. With a flair for storytelling, she sheds light on the intersection of technology and culture.",meta_title:"Divya Yadav - Social Media & Influencer Technology Writer at Teckora",meta_description:"Follow Divya Yadav at Teckora as she explores the evolving world of social media technology and influencer trends with engaging stories and insights."},{name:"James Carter",description:"James Carter is a technology journalist with over 10 years of experience covering consumer technology and gadgets. His work has appeared in major publications like TechCrunch and Gizmodo. Known for his in-depth reviews and analysis, he aims to empower readers to make informed buying decisions.",meta_title:"James Carter - Consumer Technology Expert & Reviewer | Teckora",meta_description:"Explore articles by James Carter, a seasoned technology journalist with over a decade of experience in consumer technology. Discover expert reviews and insightful analysis on Teckora."},{name:"Sophie Nguyen",description:"Sophie Nguyen is a freelance tech writer and digital nomad. With a Master’s in Information Technology, she specializes in smart home devices and wearable technology. Her innovative approach and rich storytelling engage audiences worldwide.",meta_title:"Sophie Nguyen - Tech Writer & Smart Home Specialist | Teckora",meta_description:"Read articles by Sophie Nguyen, a tech writer specializing in smart home devices and wearables. Discover innovative insights and reviews at Teckora."},{name:"Liam Thompson",description:"Liam Thompson has been writing about consumer technology for over 8 years, focusing on mobile gadgets and software trends. His expertise is complemented by a background in software engineering, offering readers both technical insights and user-friendly information.",meta_title:"Liam Thompson - Mobile Gadgets and Software Expert | Teckora",meta_description:"Learn from Liam Thompson, an expert in mobile technology and software trends. His engaging articles at Teckora provide valuable insights for tech enthusiasts."},{name:"Emily Johnson",description:"Emily Johnson is a content creator and digital marketer with extensive experience in technology journalism. She is passionate about artificial intelligence and its applications in consumer tech, ensuring her readers stay ahead of industry trends.",meta_title:"Emily Johnson - AI & Consumer Tech Journalist | Teckora",meta_description:"Follow Emily Johnson on Teckora as she explores the intersection of AI and consumer technology, providing you with the latest updates and insights."},{name:"Carlos Mendoza",description:"Carlos Mendoza is an international tech writer known for his detailed analysis of emerging technologies and their market implications. With 12 years of experience, he has a keen eye for trends impacting the consumer tech landscape.",meta_title:"Carlos Mendoza - Emerging Tech Analyst | Teckora",meta_description:"Explore tech insights by Carlos Mendoza, a renowned emerging tech analyst with over 12 years in consumer technology journalism. Read more on Teckora."},{name:"Nina Patel",description:"Nina Patel is a technology enthusiast and freelance writer specializing in internet security and privacy issues. With a background in cybersecurity, she brings an authoritative voice to her articles, helping consumers navigate the digital landscape safely.",meta_title:"Nina Patel - Cybersecurity & Privacy Specialist | Teckora",meta_description:"Discover insights from Nina Patel, a cybersecurity expert focusing on privacy issues in technology. Her articles at Teckora guide you on safe digital practices."},{name:"Michael Chen",description:"Michael Chen is a leading technology expert and author with a Bachelor’s degree in Computer Science. His work spans topics like cloud computing and IoT, providing readers with foundational knowledge and up-to-date trends in consumer technology.",meta_title:"Michael Chen - Cloud Computing & IoT Expert | Teckora",meta_description:"Uncover the world of cloud computing and IoT with Michael Chen's articles on Teckora. Benefit from his knowledge and stay current on consumer technology trends."},{name:"Fatima Al-Farsi",description:"Fatima Al-Farsi is a passionate tech blogger and social media strategist, dedicated to highlighting the impact of consumer technology on daily life. Her engaging writing style makes complex technology accessible to a broader audience.",meta_title:"Fatima Al-Farsi - Tech Blogger & Social Media Strategist | Teckora",meta_description:"Read Fatima Al-Farsi's engaging articles on Teckora, where she makes technology accessible and highlights its impact on everyday life."},{name:"Omar El-Sayed",description:"Omar El-Sayed is a technology consultant and writer with over a decade of experience in product reviews and consumer electronics. His analytical approach provides readers with comprehensive insights into the latest gadgets and tech tools.",meta_title:"Omar El-Sayed - Consumer Electronics Reviewer | Teckora",meta_description:"Get expert gadget reviews and insights from Omar El-Sayed on Teckora, a seasoned technology consultant with over 10 years in consumer electronics journalism."},{name:"Laura Ramirez",description:"Laura Ramirez is a consumer technology writer and educator, passionate about bridging the gap between technology and society. She enjoys teaching readers about innovations while emphasizing their real-world applications.",meta_title:"Laura Ramirez - Consumer Tech Educator & Writer | Teckora",meta_description:"Join Laura Ramirez on Teckora as she bridges technology with society, providing insight and education on consumer tech innovations."},{name:"Alice Johnson",description:"Alice Johnson is a seasoned tech journalist with over 10 years of experience in the consumer technology field. She specializes in gadget reviews and emerging tech trends, often providing insightful commentary on the latest smartphones, wearables, and smart home devices.",meta_title:"Alice Johnson - Consumer Technology Expert | Teckora",meta_description:"Discover insightful articles by Alice Johnson, a tech journalist specializing in gadget reviews and consumer technology trends on Teckora."},{name:"Raj Patel",description:"Raj Patel is a technology analyst based in Bangalore, India, with extensive knowledge in software development and consumer electronics. He has contributed to numerous tech magazines and blogs and enjoys demystifying technical jargon for everyday consumers.",meta_title:"Raj Patel - Tech Analyst and Contributor | Teckora",meta_description:"Explore articles by Raj Patel, a tech analyst from India who breaks down complex consumer technology topics for the readers of Teckora."},{name:"Sofia Kim",description:"Sofia Kim is a digital nomad and freelance writer based in Seoul, South Korea. With expertise in app development and user experience design, she writes compelling articles that bridge the gap between technical details and consumer needs.",meta_title:"Sofia Kim - User Experience Specialist | Teckora",meta_description:"Read insightful articles by Sofia Kim, a user experience expert based in South Korea, sharing her perspective on apps and consumer technology at Teckora."},{name:"James Smith",description:"James Smith is a passionate tech enthusiast and professional blogger hailing from San Francisco, USA. With a focus on AI and machine learning technologies, he writes engaging content that informs readers about the impact of these technologies on daily life.",meta_title:"James Smith - AI and Tech Enthusiast | Teckora",meta_description:"Join James Smith on Teckora as he explores artificial intelligence and its effects on consumer technology trends."},{name:"Fatima Al-Mansoori",description:"Fatima Al-Mansoori is a tech marketer and content strategist from Dubai, UAE. With a background in marketing analytics, she writes about the latest consumer technology products focusing on trends that influence purchasing decisions.",meta_title:"Fatima Al-Mansoori - Tech Marketer and Writer | Teckora",meta_description:"Discover Fatima Al-Mansoori's articles on Teckora, where she delves into consumer technology marketing trends and product insights."},{name:"Liam O'Reilly",description:"Liam O'Reilly is a technology educator and YouTube creator from Dublin, Ireland. He has a knack for breaking down complex tech concepts into easy-to-understand articles that appeal to both tech-savvy readers and newcomers alike.",meta_title:"Liam O'Reilly - Tech Educator and Writer | Teckora",meta_description:"Explore the enlightening articles by Liam O'Reilly on Teckora, where tech education meets consumer technology insights."},{name:"Emilia Gonzalez",description:"Emilia Gonzalez is a freelance tech writer and digital strategist based in Barcelona, Spain. With a keen interest in e-commerce and mobile technologies, she creates content that helps consumers make informed decisions.",meta_title:"Emilia Gonzalez - E-commerce and Mobile Tech Writer | Teckora",meta_description:"Read articles by Emilia Gonzalez on Teckora, focusing on e-commerce and mobile technology trends that benefit consumers."},{name:"Tariq Bin Zayed",description:"Tariq Bin Zayed is a data scientist and tech blogger from Cairo, Egypt. His analytical approach helps him provide data-backed reviews and articles about various consumer tech products, ensuring readers receive credible information.",meta_title:"Tariq Bin Zayed - Data Scientist and Tech Blogger | Teckora",meta_description:"Get insights from Tariq Bin Zayed's articles on Teckora, where data meets consumer technology reviews and insights."},{name:"Anya Petrov",description:"Anya Petrov is a consumer technology advocate and writer from Moscow, Russia. With a strong focus on tech's role in society, she explores ethical considerations and advancements in technology that affect consumers globally.",meta_title:"Anya Petrov - Consumer Technology Advocate | Teckora",meta_description:"Join Anya Petrov on Teckora as she discusses ethical implications and advancements in consumer technology that impact our lives."},{name:"Oliver Schmidt",description:"Oliver Schmidt is a veteran technology reviewer and consultant from Berlin, Germany. With a background in engineering, he provides thorough product assessments that help consumers make informed technology choices.",meta_title:"Oliver Schmidt - Tech Reviewer and Consultant | Teckora",meta_description:"Experience comprehensive product reviews by Oliver Schmidt on Teckora, guiding consumers through the complex world of technology."}],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:#0c1b3e;--theme-color-8:#0e2a5c;--theme-color-7:#1c4b88;--theme-color-6:#2d63a2;--theme-color-5:#4c7fb7;--theme-color-3:#a4c8e1;--theme-color-2:#d6e4f0;--color-bg-layout:#fafafa;--color-bg-hover:#e0e0e0;--article-border-radius:15px;--btn-border-radius:5px;--category-border-radius:25px;}
@@ -0,0 +1 @@
1
+ @import "sizing.css";@import "colors.css";@import "fonts.css";@import "theme.css";