Spaces:
Running
Running
| <html lang="en" class="scroll-smooth"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta name="description" content="McGPT - Your strategic sales companion"> | |
| <title>Pod Value Mapper | Home</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script> | |
| tailwind.config = { | |
| darkMode: 'class', | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#6366f1', | |
| secondary: '#8b5cf6', | |
| dark: '#1e293b' | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <style> | |
| /* --- UNIFIED HEADER STYLES --- */ | |
| .nav-link.active { | |
| @apply text-primary font-medium border-b-2 border-primary; | |
| } | |
| .hamburger-line { | |
| @apply w-6 h-0.5 bg-white transition-all duration-300; | |
| } | |
| #mobileMenuButton.open .hamburger-line:nth-child(1) { | |
| transform: rotate(45deg) translate(5px, 6px); | |
| } | |
| #mobileMenuButton.open .hamburger-line:nth-child(2) { | |
| opacity: 0; | |
| } | |
| #mobileMenuButton.open .hamburger-line:nth-child(3) { | |
| transform: rotate(-45deg) translate(5px, -6px); | |
| } | |
| /* --- PAGE-SPECIFIC STYLES --- */ | |
| select { | |
| -webkit-appearance: none; -moz-appearance: none; appearance: none; | |
| background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); | |
| background-repeat: no-repeat; | |
| background-position: right 0.75rem center; | |
| background-size: 1.25rem; | |
| } | |
| .dark select { | |
| background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-100 dark:bg-gray-900 text-gray-800 dark:text-gray-200 min-h-screen flex flex-col"> | |
| <header class="sticky top-0 z-50 bg-white/80 dark:bg-gray-900/80 backdrop-blur-md shadow-sm"> | |
| <div class="container mx-auto px-4 py-3"> | |
| <div class="flex justify-between items-center"> | |
| <a href="index.html" class="flex items-center space-x-2"> | |
| <img src="https://huggingface.co/spaces/DjayChucko/EnablingSales/resolve/main/images/Scaleway-Logomark-White.png" alt="Logo" class="h-8 mr-2"> | |
| <span class="text-xl font-bold text-gray-800 dark:text-white font-heading">McGPT</span> | |
| </a> | |
| <nav class="hidden md:flex space-x-8"> | |
| <a href="value-mapper.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300 hover:text-primary transition-colors">Mapper</a> | |
| <a href="intel.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300 hover:text-primary transition-colors">Products</a> | |
| <a href="scorecard.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300 hover:text-primary transition-colors">Scorecard</a> | |
| <a href="strategy.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300 hover:text-primary transition-colors">Method</a> | |
| <a href="academy.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300 hover:text-primary transition-colors">Academy</a> | |
| </nav> | |
| <div class="flex items-center space-x-4"> | |
| <button id="themeToggle" class="p-2 rounded-full text-gray-500 dark:text-gray-400 hover:bg-gray-200 dark:hover:bg-gray-700"> | |
| <i data-feather="moon" class="hidden dark:block"></i> | |
| <i data-feather="sun" class="block dark:hidden"></i> | |
| </button> | |
| <button id="mobileMenuButton" class="md:hidden flex flex-col space-y-1.5 p-2 z-50 bg-purple-600 rounded-lg"> | |
| <span class="hamburger-line"></span> | |
| <span class="hamburger-line"></span> | |
| <span class="hamburger-line"></span> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </header> | |
| <div id="mobileMenu" class="hidden fixed inset-0 z-40 bg-gray-900 bg-opacity-95 backdrop-blur-sm"> | |
| <div class="flex flex-col items-center justify-center h-full space-y-8"> | |
| <a href="index.html" class="nav-link text-3xl text-white">Home</a> | |
| <a href="value-mapper.html" class="nav-link text-3xl text-white">Mapper</a> | |
| <a href="intel.html" class="nav-link text-3xl text-white">Products</a> | |
| <a href="scorecard.html" class="nav-link text-3xl text-white">Scorecard</a> | |
| <a href="strategy.html" class="nav-link text-3xl text-white">Method</a> | |
| <a href="academy.html" class="nav-link text-3xl text-white">Academy</a> | |
| </div> | |
| </div> | |
| <main class="flex-grow bg-gradient-to-br from-purple-600 to-indigo-700"> | |
| <div class="container mx-auto px-4 py-12"> | |
| <div class="bg-white dark:bg-gray-800 p-6 sm:p-8 rounded-2xl shadow-2xl mb-8"> | |
| <div class="text-center"> | |
| <h1 class="text-3xl sm:text-4xl font-heading font-extrabold text-gray-800 dark:text-white mb-3 leading-tight">Pod Value Mapper</h1> | |
| <div class="flex justify-center mb-6"> | |
| <img src="https://huggingface.co/spaces/DjayChucko/EnablingSales/resolve/main/images/PublicEducationPod-Illustration-transparent.png" alt="Pod Value Mapper" class="h-48 w-auto"> | |
| </div> | |
| </div> | |
| <div class="max-w-md mx-auto"> | |
| <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"> | |
| <option value="placeholder" disabled selected class="text-gray-500">- Choose Industry to Map -</option> | |
| <option value="Artificial Intelligence & Machine Learning">Artificial Intelligence & Machine Learning</option> | |
| <option value="Automotive & Robotics">Automotive & Robotics</option> | |
| <option value="Blockchain & Crypto">Blockchain & Crypto</option> | |
| <option value="Cloud & DevOps Providers">Cloud & DevOps Providers</option> | |
| <option value="Cybersecurity">Cybersecurity</option> | |
| <option value="E-commerce & Retail">E-commerce & Retail</option> | |
| <option value="Education & EdTech">Education & EdTech</option> | |
| <option value="Energy, Logistics & Transport">Energy, Logistics & Transport</option> | |
| <option value="Financial Services & Insurance">Financial Services & Insurance</option> | |
| <option value="Gaming">Gaming</option> | |
| <option value="Government & Public Sector">Government & Public Sector</option> | |
| <option value="Healthcare & Life Sciences">Healthcare & Life Sciences</option> | |
| <option value="High-Performance Computing (HPC)">High-Performance Computing (HPC)</option> | |
| <option value="Manufacturing">Manufacturing</option> | |
| <option value="Media & Entertainment">Media & Entertainment</option> | |
| <option value="Startups & Scale-ups">Startups & Scale-ups</option> | |
| <option value="Technology/SaaS">Technology/SaaS</option> | |
| </select> | |
| </div> | |
| </div> | |
| <div id="initial-message" class="text-center p-12 rounded-xl bg-white/80 dark:bg-gray-800/80 text-gray-600 dark:text-gray-300 border-2 border-dashed border-gray-400 dark:border-gray-600 backdrop-blur-sm"> | |
| <p class="text-lg font-medium">Please select an industry from the dropdown above to reveal targeted value mapping, discovery questions, and permission-based openers.</p> | |
| </div> | |
| <div id="dynamic-area" class="hidden space-y-8"> | |
| <h2 id="industry-title" class="text-3xl font-heading font-bold text-white text-center pt-4"></h2> | |
| <div class="bg-white dark:bg-gray-800 p-6 sm:p-8 rounded-xl shadow-lg"> | |
| <h3 class="text-xl font-heading font-bold mb-6 text-gray-800 dark:text-white">Recommended Value Proposition & Suggested Product Focus</h3> | |
| <div id="value-drivers" class="space-y-4 text-gray-700 dark:text-gray-300 text-base"></div> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8"> | |
| <div class="bg-white dark:bg-gray-800 p-6 rounded-xl shadow-lg"> | |
| <h3 class="text-lg font-heading font-bold mb-4 text-gray-800 dark:text-white">Permission-Based Opener</h3> | |
| <p id="pbo1" class="text-gray-800 dark:text-white font-medium mb-6 text-base"></p> | |
| <h4 class="font-bold text-sm uppercase text-gray-500 dark:text-gray-400 mb-2">Discovery Question</h4> | |
| <p id="dq1" class="text-gray-600 dark:text-gray-400 italic text-base"></p> | |
| </div> | |
| <div class="bg-white dark:bg-gray-800 p-6 rounded-xl shadow-lg"> | |
| <h3 class="text-lg font-heading font-bold mb-4 text-gray-800 dark:text-white">Permission-Based Opener</h3> | |
| <p id="pbo2" class="text-gray-800 dark:text-white font-medium mb-6 text-base"></p> | |
| <h4 class="font-bold text-sm uppercase text-gray-500 dark:text-gray-400 mb-2">Discovery Question</h4> | |
| <p id="dq2" class="text-gray-600 dark:text-gray-400 italic text-base"></p> | |
| </div> | |
| </div> | |
| <div class="flex justify-center pt-4"> | |
| <button id="refresh-button" class="hidden items-center px-6 py-3 bg-white/20 hover:bg-white/30 rounded-lg text-white font-semibold transition flex space-x-2 shadow-lg"> | |
| <i data-feather="refresh-cw" class="w-5 h-5"></i> | |
| <span>Cycle Questions</span> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </main> | |
| <footer class="bg-purple-800/80 dark:bg-purple-800/80 backdrop-blur-sm border-t border-gray-700"> | |
| <div class="container mx-auto px-4 py-8"> | |
| <div class="flex flex-col md:flex-row justify-between items-center"> | |
| <div class="mb-6 md:mb-0"> | |
| <p class="text-gray-600 dark:text-gray-300 mt-2 text-sm"> | |
| Strategic Tools Enabling Elite Sales | |
| </p> | |
| </div> | |
| <div class="mt-8 pt-8 border-t border-gray-200 dark:border-gray-700 text-center text-sm text-gray-500 dark:text-gray-400"> | |
| <p>© 2025 McGPT. Always Be Connecting.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // --- Mobile Menu Toggle --- | |
| const mobileMenuButton = document.getElementById('mobileMenuButton'); | |
| const mobileMenu = document.getElementById('mobileMenu'); | |
| mobileMenuButton.addEventListener('click', () => { | |
| mobileMenu.classList.toggle('hidden'); | |
| mobileMenuButton.classList.toggle('open'); | |
| document.body.classList.toggle('overflow-hidden'); | |
| }); | |
| // --- Theme Toggle --- | |
| const themeToggle = document.getElementById('themeToggle'); | |
| const html = document.documentElement; | |
| themeToggle.addEventListener('click', () => { | |
| html.classList.toggle('dark'); | |
| localStorage.theme = html.classList.contains('dark') ? 'dark' : 'light'; | |
| feather.replace(); | |
| }); | |
| if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) { | |
| html.classList.add('dark'); | |
| } else { | |
| html.classList.remove('dark'); | |
| } | |
| // --- Set Active Nav Link --- | |
| const currentPage = window.location.pathname.split('/').pop() || 'index.html'; | |
| document.querySelectorAll('.nav-link').forEach(link => { | |
| const linkHref = link.getAttribute('href'); | |
| if (linkHref === currentPage) { | |
| link.classList.add('active'); | |
| } else { | |
| link.classList.remove('active'); | |
| } | |
| }); | |
| feather.replace(); | |
| </script> | |
| <script> | |
| const INDUSTRY_DATA = { | |
| "Artificial Intelligence & Machine Learning": { | |
| valueDrivers: "Value Drivers: This sector is defined by its need for massive, on-demand computational power to train complex models. Speed of iteration, access to the latest hardware, and scalable infrastructure are critical for innovation and competitive advantage. Product Focus: GPU Instances (Clusters), AI Suite, Managed Inference, Object Storage, Container Registry.", | |
| questions: [ | |
| { pbo: "Would it be helpful to explore how access to scalable GPU resources could speed up your model training?", dq: "What challenges are you currently facing in scaling your AI/ML workloads?" }, | |
| { pbo: "Could we discuss how your lab manages compute-heavy AI training workloads?", dq: "How do you currently handle demand spikes for GPU capacity during large model training?" }, | |
| { pbo: "Would you be open to exploring how faster GPU infrastructure could improve your project delivery timelines?", dq: "How do your current infrastructure constraints impact client project turnaround?" }, | |
| { pbo: "Is accelerating your teamโs model development cycle something you're actively exploring?", dq: "What would faster model iteration mean for your business outcomes?" } | |
| ] | |
| }, | |
| "High-Performance Computing (HPC)": { | |
| valueDrivers: "Value Drivers: HPC users run large-scale simulations and complex calculations that are bottlenecked by compute performance. They require maximum processing power, high-speed networking, and large memory capacity to reduce time-to-result for research and engineering. Product Focus: GPU Instances (Clusters), Bare Metal, High-Memory Instances, Private Network.", | |
| questions: [ | |
| { pbo: "Could faster compute resources help accelerate your research simulations?", dq: "What simulation workloads are currently bottlenecked by compute availability?" }, | |
| { pbo: "Would reducing simulation run times help improve your product development cycle?", dq: "Which stages of your design process are most limited by computational power?" }, | |
| { pbo: "Would accelerating seismic data analysis bring value to your exploration timelines?", dq: "How long do your typical reservoir simulations take, and what would faster results enable?" }, | |
| { pbo: "Could lower-latency, high-performance computing enhance your trading or risk models?", dq: "Where in your quant pipeline are you hitting performance bottlenecks?" } | |
| ] | |
| }, | |
| "Media & Entertainment": { | |
| valueDrivers: "Value Drivers: Characterized by massive file sizes (video, graphics), global content distribution, and intensive processing workloads like rendering and transcoding. They need powerful GPUs to accelerate creative workflows and meet tight production deadlines. Product Focus: GPU Instances, Object Storage, Bare Metal, Edge Computing, Private Network.", | |
| questions: [ | |
| { pbo: "Would faster rendering times help you meet tighter production deadlines?", dq: "How do render times currently affect your project delivery and team productivity?" }, | |
| { pbo: "Could improved GPU acceleration reduce your video processing and delivery times?", dq: "What challenges do you face with real-time editing or large-scale video transcoding?" }, | |
| { pbo: "Would faster iteration on game assets or AI testing help your development cycle?", dq: "Where in your game development pipeline are you constrained by compute resources?" }, | |
| { pbo: "How do you manage collaborative workflows between remote creative teams, especially when dealing with terabytes of raw footage?", dq: "We specialize in helping remote creative teams collaborate on massive files. Would you be open to hearing how our high-speed Private Network securely connects their workstations to your central storage?" } | |
| ] | |
| }, | |
| "Healthcare & Life Sciences": { | |
| valueDrivers: "Value Drivers: Driven by regulatory compliance (HIPAA, HDS), massive data sets (genomics, medical imaging), and the need for high-performance computing for research, drug discovery, and AI-powered diagnostics. Product Focus: GPU Instances, AI Suite, Managed Inference, Object Storage, High-Memory Instances, Compliance Tools.", | |
| questions: [ | |
| { pbo: "Could faster processing of genomic data accelerate your discovery timelines?", dq: "Which bioinformatics workflows take the longest, and what would speeding them up enable?" }, | |
| { pbo: "Would faster AI inference on medical imaging data improve diagnostic throughput?", dq: "How are you currently handling the computational load of AI-based image analysis?" }, | |
| { pbo: "Could scalable GPU infrastructure support your clinical validation or deployment goals?", dq: "What infrastructure challenges are you facing as you scale your AI models in production?" }, | |
| { pbo: "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?", dq: "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 archival solution?" } | |
| ] | |
| }, | |
| "Automotive & Robotics": { | |
| valueDrivers: "Value Drivers: This sector relies on intensive simulation for testing and vast amounts of data for training autonomous systems. High-performance GPU clusters are essential for accelerating development cycles and improving the accuracy of AI models. Product Focus: GPU Instances (Clusters), AI Suite, Object Storage, Edge Computing.", | |
| questions: [ | |
| { pbo: "Would faster training cycles help you iterate more quickly on autonomous driving models?", dq: "How much time do you currently spend on model retraining, and what could that time enable?" }, | |
| { pbo: "Could high-performance simulation environments improve your robotics testing efficiency?", dq: "What proportion of your development time is spent waiting for simulations to complete?" }, | |
| { pbo: "Would real-time AI inference on production data help improve system uptime?", dq: "Where in your industrial operations could AI-driven insights make the biggest impact?" } | |
| ] | |
| }, | |
| "E-commerce & Retail": { | |
| valueDrivers: "Value Drivers: This industry requires high availability, scalability for traffic spikes, and increasingly uses AI for personalization and operational efficiency. GPUs accelerate recommendation model training and computer vision for inventory management. Product Focus: Kubernetes Kapsule, Serverless Containers, Managed Databases, GPU Instances, AI Suite.", | |
| questions: [ | |
| { pbo: "Could faster model training improve the relevance and timing of your recommendations?", dq: "How often do you retrain your recommendation models, and what limits more frequent updates?" }, | |
| { pbo: "Would improved image processing speed enhance your customer experience or operations?", dq: "What computer vision applications are you exploring, and what compute demands do they have?" }, | |
| { pbo: "How quickly can you scale your infrastructure to handle Black Friday-level traffic spikes without over-provisioning for the rest of the year?", dq: "Your success depends on handling peak traffic seamlessly. Would it be helpful to see how our clients use Kubernetes Kapsule and Load Balancers to auto-scale for these events?" } | |
| ] | |
| }, | |
| "Cybersecurity": { | |
| valueDrivers: "Value Drivers: This industry leverages AI for real-time threat detection and fraud prevention. They need high-performance GPUs for rapid analysis of vast datasets and bare metal for secure, isolated research environments. Product Focus: GPU Instances, Bare Metal, VPC, Private Network, Logs & Metrics.", | |
| questions: [ | |
| { pbo: "Could real-time AI analysis of network behavior improve your threat detection accuracy?", dq: "How do you currently handle large-scale log analysis, and where are the delays?" }, | |
| { pbo: "Would lower-latency fraud detection reduce false positives or losses?", dq: "What kind of transaction volumes are you analyzing, and what response time is required?" }, | |
| { pbo: "How do you provide your analysts with secure, isolated environments for malware analysis without risking your core infrastructure?", dq: "We can provide on-demand, fully isolated Bare Metal servers for sandboxing. Is having access to ephemeral, secure research environments a need for your team?" } | |
| ] | |
| }, | |
| "Education & EdTech": { | |
| valueDrivers: "Value Drivers: This sector needs access to on-demand high-performance computing for research and scalable platforms for AI-powered learning applications. Cost-effective GPU access empowers both faculty research and student projects. Product Focus: GPU Instances, AI Suite, Managed Notebooks, Marketplace.", | |
| questions: [ | |
| { pbo: "Could AI infrastructure support help you scale personalized learning experiences?", dq: "What AI/ML features are you planning to roll out, and what compute will they require?" }, | |
| { pbo: "Would on-demand GPU access help support student or faculty research initiatives?", dq: "What types of research projects are compute-constrained, and how is that affecting outcomes?" } | |
| ] | |
| }, | |
| "Government & Public Sector": { | |
| valueDrivers: "Value Drivers: Prioritizes data sovereignty, security, and increasingly uses HPC for simulations (e.g., smart cities, defense) and AI for operational efficiency, all within a secure, compliant European cloud. Product Focus: GPU Instances, Bare Metal, VPC, Private Network, Compliance Tools.", | |
| questions: [ | |
| { pbo: "Could accelerated computing help improve real-time decision-making in city operations?", dq: "What urban challenges are you modeling, and how long do simulations currently take?" }, | |
| { pbo: "Would secure, high-performance computing support your simulation and testing requirements?", dq: "What kinds of simulations or AI applications are you developing, and what are their compute needs?" }, | |
| { pbo: "In your digital transformation roadmap, what are the primary risks associated with relying on non-European cloud providers for sensitive citizen data?", dq: "As a European provider, data sovereignty is central to our mission. Do you mind if I share how we address those requirements with our certified, local infrastructure?" } | |
| ] | |
| }, | |
| "Blockchain & Crypto": { | |
| valueDrivers: "Value Drivers: This sector requires high-performance compute for transaction processing and AI-driven analytics to detect fraud and patterns on-chain. GPU acceleration is key for performance in these areas. Product Focus: GPU Instances, Bare Metal, VPC.", | |
| questions: [ | |
| { pbo: "Are you exploring alternative compute solutions for blockchain workloads?", dq: "What are your primary blockchain compute needs, and how are you addressing scalability?" }, | |
| { pbo: "Could GPU-accelerated analysis improve your ability to detect suspicious blockchain activity?", dq: "How are you currently analyzing large blockchain datasets, and what are the limitations?" } | |
| ] | |
| }, | |
| "Startups & Scale-ups": { | |
| valueDrivers: "Value Drivers: Startups need to move fast, stay lean, and build for scale. They favor managed services and on-demand GPU access to build innovative, AI-powered products without large upfront capital investment. Product Focus: GPU Instances, Kubernetes Kapsule, Serverless Containers, Managed Databases, AI Suite.", | |
| questions: [ | |
| { pbo: "Would scalable GPU infrastructure help you bring your product to market faster?", dq: "What are the biggest infrastructure challenges as you scale your startup?" }, | |
| { pbo: "Could providing GPU resources to your startups give them a competitive edge?", dq: "How do you currently support startups with high-performance computing needs?" } | |
| ] | |
| }, | |
| "Cloud & DevOps Providers": { | |
| valueDrivers: "Value Drivers: These companies need to offer competitive services to their own customers. Adding GPU capabilities meets growing market demand for AI/ML workloads. They also use GPUs internally to accelerate CI/CD pipelines. Product Focus: GPU Instances, Bare Metal, API & CLI, Terraform Provider.", | |
| questions: [ | |
| { pbo: "Would adding GPU instances to your cloud offerings meet growing customer demand?", dq: "What types of customers are asking for GPU capabilities, and what use cases are they running?" }, | |
| { pbo: "Could GPU-accelerated testing reduce your CI/CD pipeline times?", dq: "Which parts of your deployment pipeline would benefit most from GPU acceleration?" } | |
| ] | |
| }, | |
| "Financial Services & Insurance": { | |
| valueDrivers: "Value Drivers: This sector needs high-performance computing for risk modeling and algorithmic trading, alongside stringent security and compliance. GPUs accelerate complex quantitative analysis, reducing time-to-insight for critical financial decisions. Product Focus: GPU Instances, Bare Metal, VPC, Private Network, Compliance Tools.", | |
| questions: [ | |
| { pbo: "Could lower-latency, high-performance computing enhance your trading or risk models?", dq: "Where in your quant pipeline are you hitting performance bottlenecks?" }, | |
| { pbo: "How are you addressing the complexities of maintaining PCI DSS and GDPR compliance, especially when connecting to legacy on-premise systems?", dq: "Many of our financial clients use our Private Network and VPC to build secure hybrid environments that simplify compliance. Is that a challenge you're currently facing?" }, | |
| { pbo: "As you prepare for new regulations like DORA, what is your strategy for ensuring the operational resilience of your critical infrastructure?", dq: "Preparing for DORA is a significant task. Would it be helpful to see how our sovereign cloud helps clients meet these upcoming resilience requirements?" } | |
| ] | |
| }, | |
| "Gaming": { | |
| valueDrivers: "Value Drivers: Success in this industry hinges on low latency, robust protection against attacks, and increasingly, powerful server-side compute for physics, AI, and graphics. GPUs can accelerate game asset development and power next-gen AI for NPCs. Product Focus: Bare Metal, Elastic Metal, GPU Instances, DDoS Protection, Load Balancers.", | |
| questions: [ | |
| { pbo: "Would faster iteration on game assets or AI testing help your development cycle?", dq: "Where in your game development pipeline are you constrained by compute resources?" }, | |
| { pbo: "How are you protecting your game servers from DDoS attacks that can ruin the player experience and cause churn?", dq: "DDoS protection is non-negotiable for online games. Would a quick overview of how our included protection ensures high availability be useful for your team?" }, | |
| { pbo: "For your game servers, what is the key trade-off you are currently making between achieving consistent, low-latency performance and managing costs?", dq: "We find many studios want to balance cost and performance. Can I share how our Bare Metal and Elastic Metal servers are designed for exactly that?" } | |
| ] | |
| }, | |
| "Manufacturing": { | |
| valueDrivers: "Value Drivers: This sector is adopting cloud for Industrial IoT (IIoT), data analytics, and supply chain optimization. GPUs are critical for running 'digital twin' simulations and deploying computer vision for quality control on the factory floor. Product Focus: GPU Instances, IoT Hub, Edge Computing, AI Suite, Private Network, Object Storage.", | |
| questions: [ | |
| { pbo: "How are you leveraging 'digital twin' simulations to optimize production lines, and what are the computational challenges of processing that sensor data?", dq: "We see many manufacturers adopting digital twins. Would you be interested to hear how they use our AI Suite and HPC instances to run these complex simulations cost-effectively?"}, | |
| { pbo: "What percentage of unscheduled downtime could be saved if you could process IoT sensor data on the factory floor for instant, predictive maintenance?", dq: "Processing data at the source is the future. Can I show you how our IoT and Edge Computing solutions are designed for real-time action on the factory floor?"}, | |
| { pbo: "How are you using computer vision for quality control on the production line, and what are the challenges in deploying those AI models?", dq: "AI-powered quality control is a powerful tool. Are you interested in how our AI Suite can help you build and deploy computer vision models right on the factory floor?" } | |
| ] | |
| }, | |
| "Energy, Logistics & Transport": { | |
| valueDrivers: "Value Drivers: These sectors manage vast, distributed assets and rely on data for optimization and predictive maintenance. GPUs accelerate complex simulations for grid modeling and logistics, and power AI for predictive analytics. Product Focus: GPU Instances, IoT Hub, Edge Computing, AI Suite, Object Storage.", | |
| questions: [ | |
| { pbo: "How satisfied are your teams with the speed and cost of running large-scale simulations, whether for grid modeling, logistics optimization, or route planning?", dq: "Simulation speed is a real competitive advantage. Can I share how our on-demand GPU instances are used for these high-performance workloads without a large upfront investment?" }, | |
| { pbo: "For critical assets like turbines or your vehicle fleet, how are you using data to move from reactive repairs to predictive maintenance?", dq: "Predictive maintenance can dramatically reduce operational costs. May I share how our AI Suite is used to build models that predict equipment failure before it happens?" }, | |
| { pbo: "As you manage distributed assets like vehicles or grid components, what are the biggest challenges in collecting and analyzing real-time telemetry data to optimize performance?", dq: "We help companies in your sector turn massive streams of telemetry data into measurable cost savings. Would you be interested in how our IoT and database solutions make that possible?" } | |
| ] | |
| }, | |
| "Technology/SaaS": { | |
| valueDrivers: "Value Drivers: These cloud-native companies prioritize developer productivity, scalability, and cost-efficiency. They leverage GPUs to build next-generation AI features into their platforms and accelerate their own internal CI/CD testing pipelines. Product Focus: GPU Instances, Kubernetes Kapsule, Serverless Containers, Managed Databases, API & CLI, Terraform Provider.", | |
| questions: [ | |
| { pbo: "Could GPU-accelerated testing reduce your CI/CD pipeline times?", dq: "Which parts of your deployment pipeline would benefit most from GPU acceleration?" }, | |
| { pbo: "How much of your engineering time is spent on maintaining infrastructure versus building new product features for your customers?", dq: "We help SaaS companies refocus their engineers on product development. Is reducing the burden of infrastructure management with services like Kubernetes Kapsule a priority for you?" }, | |
| { pbo: "How are you providing your developers with the tools they need to build, test, and deploy code in an automated and repeatable way?", dq: "I see developer tools are a major focus for you. We are committed to a fully automatable cloud via our Terraform provider and robust API. Is improving your CI/CD pipeline a current goal?" } | |
| ] | |
| } | |
| }; | |
| const refreshButton = document.getElementById('refresh-button'); | |
| refreshButton.addEventListener('click', () => { | |
| updateContent(false); // Pass false to not reset the scroll | |
| }); | |
| // Helper function to shuffle an array and pick the first N items | |
| function shuffleAndPick(arr, numPicks) { | |
| if (!arr || arr.length === 0) { | |
| return []; | |
| } | |
| const shuffled = [...arr].sort(() => 0.5 - Math.random()); | |
| return shuffled.slice(0, numPicks); | |
| } | |
| function updateContent(shouldScroll = false) { | |
| const selector = document.getElementById('industry-selector'); | |
| const industry = selector.value; | |
| const dynamicArea = document.getElementById('dynamic-area'); | |
| const initialMessage = document.getElementById('initial-message'); | |
| const refreshBtn = document.getElementById('refresh-button'); | |
| if (!industry || industry === 'placeholder') { | |
| dynamicArea.classList.add('hidden'); | |
| initialMessage.classList.remove('hidden'); | |
| refreshBtn.classList.add('hidden'); | |
| return; | |
| } | |
| const data = INDUSTRY_DATA[industry]; | |
| document.getElementById('industry-title').textContent = industry; | |
| const valueDriversElement = document.getElementById('value-drivers'); | |
| valueDriversElement.innerHTML = data.valueDrivers.replace(/Value Drivers: (.*?)\. Product Focus: (.*?)\./s, | |
| `<p class="font-semibold text-lg mb-2 text-purple-600 dark:text-purple-400">Value Drivers:</p> | |
| <p class="mb-4">${'$1'}</p> | |
| <p class="font-semibold text-lg mb-2 text-purple-600 dark:text-purple-400">Product Focus:</p> | |
| <p>${'$2'}</p>`); | |
| const questionPairs = shuffleAndPick(data.questions, 2); | |
| document.getElementById('pbo1').textContent = questionPairs[0] ? questionPairs[0].pbo : "No opener available."; | |
| document.getElementById('dq1').textContent = questionPairs[0] ? questionPairs[0].dq : "No question available."; | |
| document.getElementById('pbo2').textContent = questionPairs[1] ? questionPairs[1].pbo : "No opener available."; | |
| document.getElementById('dq2').textContent = questionPairs[1] ? questionPairs[1].dq : "No question available."; | |
| initialMessage.classList.add('hidden'); | |
| dynamicArea.classList.remove('hidden'); | |
| refreshBtn.classList.remove('hidden'); | |
| feather.replace(); | |
| if (shouldScroll) { | |
| dynamicArea.scrollIntoView({ behavior: 'smooth', block: 'start' }); | |
| } | |
| } | |
| window.onload = () => updateContent(true); | |
| </script> | |
| </body> | |
| </html> |