Spaces:
Running
Running
Manual changes saved
Browse files- value-mapper.html +135 -23
value-mapper.html
CHANGED
|
@@ -88,7 +88,7 @@
|
|
| 88 |
</div>
|
| 89 |
</div>
|
| 90 |
<div class="max-w-md mx-auto">
|
| 91 |
-
<select id="industry-selector" onchange="updateContent()" class="block w-full py-3 px-4 pr-10 border border-gray-300 dark:border-gray-600 rounded-xl text-base font-semibold text-gray-800 dark:text-gray-200 bg-white dark:bg-gray-700 focus:ring-2 focus:ring-purple-500 focus:outline-none transition duration-200 shadow-lg">
|
| 92 |
<option value="placeholder" disabled selected class="text-gray-500">- Choose Industry to Map -</option>
|
| 93 |
<option value="Financial Services and Insurance">Financial Services and Insurance</option>
|
| 94 |
<option value="Healthcare and Biotechnology">Healthcare and Biotechnology</option>
|
|
@@ -113,7 +113,12 @@
|
|
| 113 |
</div>
|
| 114 |
|
| 115 |
<div id="dynamic-area" class="hidden space-y-8">
|
| 116 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 117 |
|
| 118 |
<div class="bg-white dark:bg-gray-800 p-6 sm:p-8 rounded-xl shadow-lg">
|
| 119 |
<h3 class="text-xl font-heading font-bold mb-6 text-gray-800 dark:text-white">Recommended Value Proposition & Suggested Product Focus</h3>
|
|
@@ -169,32 +174,129 @@
|
|
| 169 |
});
|
| 170 |
|
| 171 |
// --- DYNAMIC CONTENT LOGIC ---
|
|
|
|
| 172 |
const INDUSTRY_DATA = {
|
| 173 |
-
"Financial Services and Insurance": {
|
| 174 |
-
|
| 175 |
-
|
| 176 |
-
|
| 177 |
-
|
| 178 |
-
|
| 179 |
-
|
| 180 |
-
"
|
| 181 |
-
|
| 182 |
-
|
| 183 |
-
|
| 184 |
-
|
| 185 |
-
|
| 186 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 187 |
};
|
| 188 |
|
| 189 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 190 |
const selector = document.getElementById('industry-selector');
|
| 191 |
const industry = selector.value;
|
| 192 |
const dynamicArea = document.getElementById('dynamic-area');
|
| 193 |
const initialMessage = document.getElementById('initial-message');
|
|
|
|
| 194 |
|
| 195 |
if (!industry || industry === 'placeholder') {
|
| 196 |
dynamicArea.classList.add('hidden');
|
| 197 |
initialMessage.classList.remove('hidden');
|
|
|
|
| 198 |
return;
|
| 199 |
}
|
| 200 |
|
|
@@ -208,16 +310,26 @@
|
|
| 208 |
<p class="font-semibold text-lg mb-2 text-purple-600 dark:text-purple-400">Product Focus:</p>
|
| 209 |
<p>${'$2'}</p>`);
|
| 210 |
|
| 211 |
-
|
| 212 |
-
|
| 213 |
-
|
| 214 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 215 |
|
| 216 |
initialMessage.classList.add('hidden');
|
| 217 |
dynamicArea.classList.remove('hidden');
|
| 218 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 219 |
}
|
| 220 |
-
window.onload = updateContent;
|
| 221 |
</script>
|
| 222 |
|
| 223 |
</body>
|
|
|
|
| 88 |
</div>
|
| 89 |
</div>
|
| 90 |
<div class="max-w-md mx-auto">
|
| 91 |
+
<select id="industry-selector" onchange="updateContent(true)" class="block w-full py-3 px-4 pr-10 border border-gray-300 dark:border-gray-600 rounded-xl text-base font-semibold text-gray-800 dark:text-gray-200 bg-white dark:bg-gray-700 focus:ring-2 focus:ring-purple-500 focus:outline-none transition duration-200 shadow-lg">
|
| 92 |
<option value="placeholder" disabled selected class="text-gray-500">- Choose Industry to Map -</option>
|
| 93 |
<option value="Financial Services and Insurance">Financial Services and Insurance</option>
|
| 94 |
<option value="Healthcare and Biotechnology">Healthcare and Biotechnology</option>
|
|
|
|
| 113 |
</div>
|
| 114 |
|
| 115 |
<div id="dynamic-area" class="hidden space-y-8">
|
| 116 |
+
<div class="flex justify-between items-center pt-4">
|
| 117 |
+
<h2 id="industry-title" class="text-3xl font-heading font-bold text-white text-center flex-grow"></h2>
|
| 118 |
+
<button id="refresh-button" class="hidden ml-4 p-2 bg-white/20 hover:bg-white/30 rounded-full text-white transition">
|
| 119 |
+
<i data-feather="refresh-cw" class="w-5 h-5"></i>
|
| 120 |
+
</button>
|
| 121 |
+
</div>
|
| 122 |
|
| 123 |
<div class="bg-white dark:bg-gray-800 p-6 sm:p-8 rounded-xl shadow-lg">
|
| 124 |
<h3 class="text-xl font-heading font-bold mb-6 text-gray-800 dark:text-white">Recommended Value Proposition & Suggested Product Focus</h3>
|
|
|
|
| 174 |
});
|
| 175 |
|
| 176 |
// --- DYNAMIC CONTENT LOGIC ---
|
| 177 |
+
let currentSetIndex = 0;
|
| 178 |
const INDUSTRY_DATA = {
|
| 179 |
+
"Financial Services and Insurance": {
|
| 180 |
+
valueDrivers: "Value Drivers: Data Sovereignty, Security, Compliance (GDPR, PCI-DSS), Low-Latency. Product Focus: Private Cloud, Elastic Metal, SecNumCloud-ready options.",
|
| 181 |
+
dq1: "How are you currently addressing the rising costs and complexity of maintaining GDPR and PCI-DSS compliance across your cloud infrastructure?", pbo1: "I noticed you operate in the financial sector. Many of our clients are focused on data sovereignty. Can I share how our EU-based infrastructure helps with that?",
|
| 182 |
+
dq2: "To what extent are your current cloud choices impacting your ability to meet strict regulatory requirements like GDPR, especially around data sovereignty and low-latency access?", pbo2: "Would you be open to a quick discussion on how our Private Cloud and SecNumCloud-ready solutions are designed to meet strict GDPR/PCI-DSS needs?",
|
| 183 |
+
dq3: "When running risk analysis or high-frequency trading models, where do you see the biggest performance bottlenecks related to compute and network latency?", pbo3: "We help fintechs achieve sub-millisecond latency for their trading platforms. Is reducing latency a priority for your team right now?",
|
| 184 |
+
dq4: "How are you preparing your infrastructure for future regulations, such as DORA, to ensure operational resilience and data security?", pbo4: "Preparing for new regulations like DORA is a significant challenge. Can I show you how our resilient, sovereign cloud helps our financial clients simplify that process?"
|
| 185 |
+
},
|
| 186 |
+
"Healthcare and Biotechnology": {
|
| 187 |
+
valueDrivers: "Value Drivers: Secure & Compliant Infrastructure (HDS), AI/ML for Research, High-Performance Compute (HPC). Product Focus: Object Storage, GPU Instances, AI Inference Servers.",
|
| 188 |
+
dq1: "What infrastructure challenges are currently slowing down your R&D teams when running large-scale AI models on sensitive patient data?", pbo1: "We see many healthcare firms leveraging AI for research. Can I show you how our GPU instances and AI tools simplify the deployment of those models securely?",
|
| 189 |
+
dq2: "When scaling your AI/ML research or HPC workloads, what are the biggest challenges you face in ensuring both HDS compliance and performant access to massive datasets?", pbo2: "Could I share how our GPU instances and secure Object Storage are helping accelerate research while maintaining compliance?",
|
| 190 |
+
dq3: "How is your organization managing the storage and processing of large genomic or medical imaging datasets in a way that is both cost-effective and HDS-compliant?", pbo3: "I understand that managing large, sensitive datasets is a key challenge in biotech. Would you be interested in how our HDS-certified Object Storage offers a cost-effective solution?",
|
| 191 |
+
dq4: "What is your strategy for providing researchers with on-demand access to high-performance computing resources without compromising patient data security?", pbo4: "We help research institutions provide secure, self-service HPC resources to their teams. Is empowering your researchers with better tools something you're focused on?"
|
| 192 |
+
},
|
| 193 |
+
"E-commerce and Retail": {
|
| 194 |
+
valueDrivers: "Value Drivers: Scalability, Performance (Peak Loads), Edge Computing, Real-time Analytics. Product Focus: Load Balancers, Edge Services, Managed Kubernetes (Kapsule), CDN.",
|
| 195 |
+
dq1: "How quickly and cost-effectively can you scale your infrastructure to handle Black Friday-level traffic spikes without over-provisioning for the rest of the year?", pbo1: "Your success depends on handling peak traffic seamlessly. Can I show you our transparent pricing for scalable infrastructure compared to the major US hyperscalers?",
|
| 196 |
+
dq2: "How is your current infrastructure handling unexpected peak loads and the demands of real-time analytics, particularly as you expand your footprint into Edge environments?", pbo2: "Handling traffic spikes is crucial. Would you be interested in seeing how our Load Balancers and Managed Kubernetes can manage that automatically?",
|
| 197 |
+
dq3: "What impact does page load time have on your cart abandonment rate, and what are the main technical hurdles to improving it?", pbo3: "We've helped e-commerce sites boost conversion rates by improving performance. Would a brief overview of how our CDN and Edge Services achieve this be valuable?",
|
| 198 |
+
dq4: "How are you leveraging customer data for real-time personalization, and what are the infrastructure costs associated with that?", pbo4: "Real-time personalization can be costly. May I share how our clients use our managed databases and scalable compute to do this cost-effectively?"
|
| 199 |
+
},
|
| 200 |
+
"Media and Entertainment": {
|
| 201 |
+
valueDrivers: "Value Drivers: Massive Object Storage, High-Bandwidth, Cost-Effective GPU Rendering, Open-Source Tools. Product Focus: Object Storage, Elastic Metal servers, Content Delivery Network (CDN).",
|
| 202 |
+
dq1: "Are you facing constraints or unexpected costs when archiving massive volumes of high-resolution content or delivering media globally at high quality?", pbo1: "We help media companies avoid vendor lock-in with our S3-compatible, open ecosystem. Is that something you'd be open to discussing?",
|
| 203 |
+
dq2: "When you look at your overall rendering and distribution pipeline, where are you seeing the biggest bottlenecks in terms of high-bandwidth data transfer and cost-effective GPU access?", pbo2: "Many studios are looking to cut rendering costs. Can I show you how our Object Storage and powerful GPU instances achieve that?",
|
| 204 |
+
dq3: "How do you manage collaborative workflows between remote creative teams, especially when dealing with terabytes of raw footage?", pbo3: "We specialize in helping remote creative teams collaborate on massive files. Would you be open to hearing how our high-speed Object Storage facilitates this?",
|
| 205 |
+
dq4: "What is your strategy for live-streaming events to a global audience while minimizing latency and ensuring high availability?", pbo4: "Latency is the enemy of live streaming. Can I briefly explain how our global CDN and bare metal servers provide a low-latency, high-availability solution?"
|
| 206 |
+
},
|
| 207 |
+
"Gaming": {
|
| 208 |
+
valueDrivers: "Value Drivers: Low-Latency, High-Availability, Cost-Effective GPU Instances, Developer-Centric Tools. Product Focus: Load Balancers, Elastic Metal, GPU Instances.",
|
| 209 |
+
dq1: "What are the key technical barriers your players are reporting around in-game latency or server downtime that directly impact retention rates?", pbo1: "Our customers often mention they appreciate a seamless, developer-centric experience. Are you open to a quick overview of how our tools simplify deployment and management?",
|
| 210 |
+
dq2: "For your performance-critical applications, what is the key trade-off you are currently making between achieving low-latency and maintaining a cost-effective environment for your GPU workloads?", pbo2: "We find many studios want to balance cost and performance. Can I share how our Elastic Metal servers are designed for exactly that?",
|
| 211 |
+
dq3: "How does your infrastructure support rapid scaling for a new game launch or a major content update to avoid frustrating your players?", pbo3: "A smooth launch is critical for a new game's success. May I show you how our auto-scaling Kubernetes and Load Balancers ensure a seamless experience for players?",
|
| 212 |
+
dq4: "What is your current approach to anti-cheat measures, and how does your infrastructure support the real-time data processing required?", pbo4: "We understand that protecting the player experience is paramount. Would it be useful to discuss how our low-latency bare metal is used for effective anti-cheat systems?"
|
| 213 |
+
},
|
| 214 |
+
"Education and Research": {
|
| 215 |
+
valueDrivers: "Value Drivers: Cost-Effective HPC/GPU, Secure & Scalable, Open-Source for Collaboration. Product Focus: GPU Instances, Managed Kubernetes (Kapsule), Identity and Access Management (IAM).",
|
| 216 |
+
dq1: "If budget weren't a constraint, what scientific or research challenges would your team tackle if they had access to significantly more computational (GPU) power?", pbo1: "Many institutions are concerned about long-term vendor lock-in and rising data costs. Would it be helpful to discuss how our open-source ecosystem helps avoid those challenges?",
|
| 217 |
+
dq2: "Regarding your HPC and GPU projects, how effectively is your current Kubernetes environment balancing the need for cost-effective scaling with the security required for collaborative work?", pbo2: "We can help make powerful tools more accessible. Can I briefly explain how our GPU instances are used in secure HPC environments?",
|
| 218 |
+
dq3: "How do you provide students and researchers with access to modern data science tools and environments while managing costs and security?", pbo3: "Empowering students and researchers is key. Would you be interested to see how universities use our Managed Kubernetes to provide secure, sandboxed learning environments?",
|
| 219 |
+
dq4: "What is your strategy for long-term storage and archival of critical research data in a way that is both affordable and easily accessible for future projects?", pbo4: "Research data is invaluable. Can I show you how our Object Storage provides a highly durable and cost-effective solution for long-term data archival?"
|
| 220 |
+
},
|
| 221 |
+
"Government and Public Sector": {
|
| 222 |
+
valueDrivers: "Value Drivers: Strict Data Sovereignty (European Cloud), SecNumCloud Readiness, Compliance. Product Focus: Private Cloud, Elastic Metal, SecNumCloud options.",
|
| 223 |
+
dq1: "In your digital transformation roadmap, what are the primary risks associated with relying on non-European cloud providers for sensitive citizen data?", pbo1: "When we speak with European leaders, data sovereignty is often a top priority. Do you mind if I share how Scaleway addresses those requirements with our certified, local infrastructure?",
|
| 224 |
+
dq2: "How challenging is it for your organization to maintain strict European data sovereignty and pursue certifications like SecNumCloud while managing your core infrastructure needs?", pbo2: "Meeting public sector standards is non-negotiable. Can I show you how our SecNumCloud-ready Private Cloud is designed for this?",
|
| 225 |
+
dq3: "When developing new digital public services, what are the main obstacles you face in terms of agility and speed of deployment?", pbo3: "We help public sector agencies build and deploy services faster while maintaining security. Is improving development agility a goal for your team?",
|
| 226 |
+
dq4: "How do you ensure the operational resilience of your critical services against outages or cyber threats, in line with directives like NIS2?", pbo4: "Ensuring resilience for critical public services is paramount. Would you be open to a discussion about how our high-availability architectures help meet NIS2 requirements?"
|
| 227 |
+
},
|
| 228 |
+
"Cyber": {
|
| 229 |
+
valueDrivers: "Value Drivers: Data Sovereignty as Defense, Private Networking, AI/ML for Threat Detection, Transparent Billing. Product Focus: Private Network (VPC), Elastic Metal, AI Inference Servers.",
|
| 230 |
+
dq1: "How is your team utilizing (or planning to utilize) AI and European-local data processing to enhance your real-time threat detection capabilities?", pbo1: "I often hear that predictable billing is a key concern when scaling security operations. May I share how Scaleway ensures cost transparency compared to US hyperscalers?",
|
| 231 |
+
dq2: "What is your current level of confidence in your existing private networking setup to leverage AI/ML for threat detection while upholding data sovereignty principles?", pbo2: "A secure foundation is key. Would you be open to seeing how our Elastic Metal servers combined with a Private Network (VPC) can enhance your security posture?",
|
| 232 |
+
dq3: "As you scale your security platform, what are the biggest challenges in ingesting and analyzing massive volumes of log data without incurring unpredictable costs?", pbo3: "Many security firms struggle with the cost of data ingestion at scale. Can I show you how our transparent bandwidth and storage pricing helps solve that?",
|
| 233 |
+
dq4: "How do you provide secure, isolated environments for malware analysis or security research without risking your core infrastructure?", pbo4: "We can provide on-demand, fully isolated bare metal servers for sandboxing and research. Is having access to secure research environments a need for your team?"
|
| 234 |
+
},
|
| 235 |
+
"Manufacturing": {
|
| 236 |
+
valueDrivers: "Value Drivers: Edge Computing (IoT Data), AI/ML for Predictive Maintenance, Open-Source Integration. Product Focus: Edge Services, AI Inference Servers, Object Storage.",
|
| 237 |
+
dq1: "What percentage of unscheduled downtime could be saved if you could process IoT sensor data at the edge for instant, localized predictive maintenance?", pbo1: "Many companies are concerned about long-term vendor lock-in. Would it be helpful to discuss how our open-source ecosystem helps customers avoid those challenges?",
|
| 238 |
+
dq2: "When deploying AI/ML for predictive maintenance using IoT data, what is the biggest technical roadblock you encounter regarding data storage, processing, or integration?", pbo2: "Processing data at the source is the future. Can I show you our Edge solutions designed specifically for predictive maintenance?",
|
| 239 |
+
dq3: "How are you leveraging 'digital twin' simulations to optimize production lines, and what are the computational challenges involved?", pbo3: "We see many manufacturers adopting digital twins. Would you be interested to hear how they use our HPC and GPU instances to run these complex simulations cost-effectively?",
|
| 240 |
+
dq4: "What is your strategy for securing your operational technology (OT) environment as it becomes more connected with your IT infrastructure?", pbo4: "Securing the convergence of IT and OT is a major challenge. Can I share how our private networking and isolated compute help create a more secure factory floor?"
|
| 241 |
+
},
|
| 242 |
+
"Energy": {
|
| 243 |
+
valueDrivers: "Value Drivers: Sustainability, AI/ML for Grid Optimization, Data Sovereignty. Product Focus: AI Inference Servers, Managed Databases.",
|
| 244 |
+
dq1: "Given the move toward renewables, what is the biggest infrastructure challenge you face when trying to predict supply and demand volatility for grid optimization?", pbo1: "When we speak with European leaders, data sovereignty is often a top priority. Do you mind if I share how Scaleway addresses those requirements with our certified, local infrastructure?",
|
| 245 |
+
dq2: "As you pursue sustainability goals, how are you deploying AI/ML tools for initiatives like grid optimization while also adhering to strict data sovereignty mandates?", pbo2: "Optimizing energy grids is a complex AI challenge. Can I share how our AI tools and managed databases are being used for this?",
|
| 246 |
+
dq3: "How are you managing and processing the vast amounts of data coming from smart grid sensors and IoT devices in real-time?", pbo3: "The volume of smart grid data can be overwhelming. May I show you how our clients use our managed time-series databases to handle this data efficiently?",
|
| 247 |
+
dq4: "What is your strategy for creating resilient and secure infrastructure for managing distributed energy resources (DERs) like solar and wind?", pbo4: "Managing distributed energy resources requires a new level of resilience. Would a discussion on how our high-availability solutions support modern grids be useful?"
|
| 248 |
+
},
|
| 249 |
+
"Logistics": {
|
| 250 |
+
valueDrivers: "Value Drivers: Edge Computing (Real-time Tracking), AI/ML for Optimization, Transparent Billing. Product Focus: Edge Services, Managed Databases, AI Inference Servers.",
|
| 251 |
+
dq1: "If you could achieve a 5% improvement in route efficiency through real-time AI analysis, how quickly would that translate into measurable cost savings?", pbo1: "I often hear that predictable billing is a key concern when scaling. May I share how Scaleway ensures complete cost transparency compared to the major hyperscalers?",
|
| 252 |
+
dq2: "In your real-time tracking projects, how are you ensuring both fast data processing at the edge and clear billing when leveraging AI/ML for optimization?", pbo2: "We can help you connect real-time data to real-world savings. Can I show you our Edge and AI solution that comes with clear, predictable pricing?",
|
| 253 |
+
dq3: "How are you optimizing warehouse operations with automation and robotics, and what are the connectivity and data processing challenges?", pbo3: "Warehouse automation is a hot topic. Would you be interested to hear how companies are using our edge computing to reduce latency for their robotic systems?",
|
| 254 |
+
dq4: "What are the biggest hurdles in providing your customers with real-time visibility into their supply chain from end to end?", pbo4: "End-to-end supply chain visibility is the goal for many. Can I share how our scalable databases and real-time data processing help our logistics clients achieve this?"
|
| 255 |
+
},
|
| 256 |
+
"Transport": {
|
| 257 |
+
valueDrivers: "Value Drivers: Low-Latency, HPC for Simulation, Developer-Centric Tools. Product Focus: Edge Services, GPU Instances, High-Performance Compute (HPC) options.",
|
| 258 |
+
dq1: "How satisfied are your engineering teams with the current cost and turnaround time of running large-scale simulations for new vehicle development?", pbo1: "Our customers appreciate a seamless, developer-centric experience. Are you open to a quick overview of how our tools simplify deployment and management for complex workloads?",
|
| 259 |
+
dq2: "For your high-stakes HPC simulations, where are you currently seeing the most significant constraints on achieving optimal low-latency performance?", pbo2: "Simulation speed can be a real competitive advantage. Can I share how our GPU instances are used for low-latency, high-performance simulation?",
|
| 260 |
+
dq3: "As you develop connected vehicle platforms, how are you planning to manage the massive influx of telemetry data securely and cost-effectively?", pbo3: "Connected vehicle platforms generate enormous amounts of data. May I show you how our clients are using our Object Storage and databases to manage this at scale?",
|
| 261 |
+
dq4: "What infrastructure is needed to support real-time passenger information systems or in-transit services, especially in areas with intermittent connectivity?", pbo4: "Providing reliable in-transit services is tough. Would you be open to hearing how our edge computing solutions are designed to work in low-connectivity environments?"
|
| 262 |
+
},
|
| 263 |
+
"Technology/SaaS": {
|
| 264 |
+
valueDrivers: "Value Drivers: Developer-Centric Tools, Cost-Effectiveness, Open-Source Agility, Transparent Billing. Product Focus: Managed Kubernetes (Kapsule), Managed Databases, GPU Instances.",
|
| 265 |
+
dq1: "What is the highest friction point your development teams experience when trying to deploy, scale, or manage your core application?", pbo1: "Many SaaS companies are concerned about long-term vendor lock-in and rising egress fees. Would it be helpful to discuss how our open-source ecosystem helps avoid those challenges?",
|
| 266 |
+
dq2: "As you scale, how are you balancing the need for rapid, open-source agility with the challenge of maintaining cost-effectiveness and transparent billing?", pbo2: "We specialize in helping scale-ups grow efficiently. Can I show you how our cost-effective Kubernetes (Kapsule) and managed databases can support your roadmap?",
|
| 267 |
+
dq3: "How much of your engineering time is spent on maintaining infrastructure versus building new product features for your customers?", pbo3: "We help SaaS companies refocus their engineers on product development, not infrastructure. Is reducing the burden of infrastructure management a priority for you?",
|
| 268 |
+
dq4: "What is your strategy for managing a multi-tenant architecture to ensure customer data is isolated and your application remains performant for everyone?", pbo4: "Multi-tenancy at scale is complex. Would you be interested to see how our clients use our managed Kubernetes and private networking to build secure, performant SaaS platforms?"
|
| 269 |
+
},
|
| 270 |
+
"Startup": {
|
| 271 |
+
valueDrivers: "Value Drivers: Cost-Effectiveness, Developer-Centric Tools, Agility/Time-to-Market, Open-Source Ecosystem. Product Focus: Managed Kubernetes (Kapsule), Managed Databases, Free Tier options, GPU Instances.",
|
| 272 |
+
dq1: "As you scale rapidly, what are your biggest concerns regarding unpredictable cloud costs, especially related to data egress and vendor lock-in?", pbo1: "I know that predictable billing and cost efficiency are key for startups. May I share how Scaleway ensures cost transparency compared to the big US providers?",
|
| 273 |
+
dq2: "What friction points are your developers currently facing when deploying new features, and how important is using open-source tools to maintain agility?", pbo2: "We're passionate about helping startups avoid vendor lock-in. Can we discuss how our open ecosystem and developer-friendly tools can support your growth?",
|
| 274 |
+
dq3: "How are you balancing the need to ship features quickly with the need to build a scalable, long-term architecture that won't require a total rewrite later?", pbo3: "We see many startups face the 'build fast vs. build right' dilemma. Can I show you how our managed services help you do both without compromise?",
|
| 275 |
+
dq4: "What is your plan for managing infrastructure costs as your user base grows from hundreds to millions, and how do you avoid surprise bills?", pbo4: "Scaling shouldn't mean unpredictable costs. Would you be open to a quick look at our pricing model, which is designed to be transparent and predictable for startups?"
|
| 276 |
+
}
|
| 277 |
};
|
| 278 |
|
| 279 |
+
const refreshButton = document.getElementById('refresh-button');
|
| 280 |
+
refreshButton.addEventListener('click', () => {
|
| 281 |
+
currentSetIndex = (currentSetIndex + 1) % 2; // Cycle between 0 and 1
|
| 282 |
+
updateContent();
|
| 283 |
+
});
|
| 284 |
+
|
| 285 |
+
function updateContent(resetIndex = false) {
|
| 286 |
+
if (resetIndex) {
|
| 287 |
+
currentSetIndex = 0;
|
| 288 |
+
}
|
| 289 |
+
|
| 290 |
const selector = document.getElementById('industry-selector');
|
| 291 |
const industry = selector.value;
|
| 292 |
const dynamicArea = document.getElementById('dynamic-area');
|
| 293 |
const initialMessage = document.getElementById('initial-message');
|
| 294 |
+
const refreshBtn = document.getElementById('refresh-button');
|
| 295 |
|
| 296 |
if (!industry || industry === 'placeholder') {
|
| 297 |
dynamicArea.classList.add('hidden');
|
| 298 |
initialMessage.classList.remove('hidden');
|
| 299 |
+
refreshBtn.classList.add('hidden');
|
| 300 |
return;
|
| 301 |
}
|
| 302 |
|
|
|
|
| 310 |
<p class="font-semibold text-lg mb-2 text-purple-600 dark:text-purple-400">Product Focus:</p>
|
| 311 |
<p>${'$2'}</p>`);
|
| 312 |
|
| 313 |
+
const pbo1Key = currentSetIndex === 0 ? 'pbo1' : 'pbo3';
|
| 314 |
+
const dq1Key = currentSetIndex === 0 ? 'dq1' : 'dq3';
|
| 315 |
+
const pbo2Key = currentSetIndex === 0 ? 'pbo2' : 'pbo4';
|
| 316 |
+
const dq2Key = currentSetIndex === 0 ? 'dq2' : 'dq4';
|
| 317 |
+
|
| 318 |
+
document.getElementById('pbo1').textContent = data[pbo1Key];
|
| 319 |
+
document.getElementById('dq1').textContent = data[dq1Key];
|
| 320 |
+
document.getElementById('pbo2').textContent = data[pbo2Key];
|
| 321 |
+
document.getElementById('dq2').textContent = data[dq2Key];
|
| 322 |
|
| 323 |
initialMessage.classList.add('hidden');
|
| 324 |
dynamicArea.classList.remove('hidden');
|
| 325 |
+
refreshBtn.classList.remove('hidden');
|
| 326 |
+
feather.replace();
|
| 327 |
+
|
| 328 |
+
if (resetIndex) {
|
| 329 |
+
dynamicArea.scrollIntoView({ behavior: 'smooth', block: 'start' });
|
| 330 |
+
}
|
| 331 |
}
|
| 332 |
+
window.onload = () => updateContent(true);
|
| 333 |
</script>
|
| 334 |
|
| 335 |
</body>
|