DjayChucko commited on
Commit
6f039c0
·
verified ·
1 Parent(s): ee4eb2a

Promote version 249a765 to main

Browse files

Promoted commit 249a765bfbc3b24e81e646572c08ed51736df1d9 to main branch

Files changed (1) hide show
  1. value-mapper.html +329 -168
value-mapper.html CHANGED
@@ -9,8 +9,10 @@
9
  <script src="https://cdn.tailwindcss.com"></script>
10
  <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
  <script src="https://unpkg.com/feather-icons"></script>
 
 
12
  <script>
13
- tailwind.config = {
14
  darkMode: 'class',
15
  theme: {
16
  extend: {
@@ -33,214 +35,373 @@
33
  .hamburger-line {
34
  @apply w-6 h-0.5 bg-white transition-all duration-300;
35
  }
36
- /* Styles for the animated hamburger icon when menu is open */
37
- #mobileMenuButton.open .hamburger-line:nth-child(1) {
38
- transform: rotate(45deg) translate(5px, 6px);
39
- }
40
- #mobileMenuButton.open .hamburger-line:nth-child(2) {
41
- opacity: 0;
42
- }
43
- #mobileMenuButton.open .hamburger-line:nth-child(3) {
44
- transform: rotate(-45deg) translate(5px, -6px);
45
- }
46
- </style>
47
  </head>
48
  <body class="bg-purple-900 dark:bg-purple-900 text-blue-900 dark:text-blue-900 min-h-screen flex flex-col relative" style="background-image: radial-gradient(circle at 25% 25%, rgba(59, 7, 100, 0.4) 0%, rgba(59, 7, 100, 0) 50%), radial-gradient(circle at 75% 75%, rgba(76, 29, 149, 0.4) 0%, rgba(76, 29, 149, 0) 50%);">
49
-
50
  <header class="sticky top-0 z-50 bg-purple-800/80 dark:bg-purple-800/80 backdrop-blur-md shadow-sm">
51
- <div class="container mx-auto px-4 py-3">
52
- <div class="flex justify-between items-center">
53
- <a href="index.html" class="flex items-center space-x-2">
54
- <span class="text-xl font-bold text-white font-heading">McGPT</span>
55
- </a>
56
- <nav class="hidden md:flex space-x-8">
57
- <a href="index.html" class="nav-link active py-2 px-1 text-white">Home</a>
58
- <a href="value-mapper.html" class="nav-link py-2 px-1 text-white hover:text-primary transition-colors">Mapper</a>
59
- <a href="scorecard.html" class="nav-link py-2 px-1 text-white hover:text-primary transition-colors">Scorecard</a>
60
- <a href="strategy.html" class="nav-link py-2 px-1 text-white hover:text-primary transition-colors">Method</a>
61
- </nav>
62
- <div class="flex items-center space-x-4">
63
- <button id="themeToggle" class="p-2 rounded-full text-white hover:bg-gray-200 dark:hover:bg-gray-700">
64
- <i data-feather="moon" class="hidden dark:block"></i>
65
- <i data-feather="sun" class="block dark:hidden"></i>
66
- </button>
67
- <button id="mobileMenuButton" class="md:hidden flex flex-col space-y-1.5 p-2 z-50 bg-[#9B5CEB] rounded-lg">
68
- <span class="hamburger-line"></span>
69
- <span class="hamburger-line"></span>
70
- <span class="hamburger-line"></span>
71
- </button>
72
- </div>
73
- </div>
74
- </div>
75
- </header>
76
-
77
- <div id="mobileMenu" class="hidden fixed inset-0 z-40 bg-purple-900">
78
- <div class="flex flex-col items-center justify-center h-full space-y-8">
79
- <a href="index.html" class="nav-link text-2xl text-white">Home</a>
80
- <a href="value-mapper.html" class="nav-link text-2xl text-white hover:text-primary transition-colors">Mapper</a>
81
- <a href="scorecard.html" class="nav-link text-2xl text-white hover:text-primary transition-colors">Scorecard</a>
82
- <a href="strategy.html" class="nav-link text-2xl text-white hover:text-primary transition-colors">Method</a>
83
- </div>
84
  </div>
 
85
 
86
- <section class="flex-grow bg-purple-800 backdrop-blur-sm">
87
- <div class="container mx-auto px-4 py-16 md:py-24">
88
- <div class="flex flex-col md:flex-row items-center">
89
- <div class="md:w-1/2 mb-12 md:mb-0">
90
- <h1 class="text-4xl md:text-5xl font-bold mb-6 leading-tight text-white">
91
- Raise
92
- <span class="bg-gradient-to-r from-primary to-secondary bg-clip-text text-[#C43BFF]">your</span>
93
- game
94
- </h1>
95
- <p class="text-xl mb-8 text-white dark:text-white font-light">
96
- McGPT offers strategic selling tools wherever you may be.
97
- </p>
98
- <p class="text-xl mb-8 text-white dark:text-white font-light">
99
- Here to help you to <span class="bg-gradient-to-r from-primary to-secondary bg-clip-text text-[#DB87FF]">qualify</span>, <span class="bg-gradient-to-r from-primary to-secondary bg-clip-text text-[#DB87FF]">quantify</span> and more clearly <span class="bg-gradient-to-r from-primary to-secondary bg-clip-text text-[#DB87FF]">justify</span> Scaleway's unique value proposition to prospective and existing customers.
100
- </p>
101
- <div class="flex space-x-4">
102
- <a href="value-mapper.html" class="bg-[#9B5CEB] hover:bg-[#8B5CF6] text-white px-6 py-3 rounded-lg font-medium transition-colors shadow-lg">
103
- Start Mapping
104
- </a>
105
- <a href="scorecard.html" class="bg-secondary hover:bg-[#7B4BEB] text-white px-6 py-3 rounded-lg font-medium transition-colors shadow-lg">
106
- MEDDICC Scorecard
107
- </a>
108
  </div>
109
- </div>
110
-
111
- <div class="md:w-1/2"></div>
112
  </div>
113
- </div>
114
- </section>
115
- <section id="features" class="py-8 bg-purple-800 backdrop-blur-sm">
116
- <div class="container mx-auto px-4">
117
- <h2 class="text-3xl font-bold text-center mb-12 text-white">A Strategic Toolkit For <span class="bg-gradient-to-r from-primary to-secondary bg-clip-text text-[#EC0BC3]">ELITE</span> B2B Sellers</h2>
118
-
119
- <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
120
- <a href="value-mapper.html" class="bg-white/10 dark:bg-gray-700/30 text-white rounded-xl p-6 shadow-md card-hover backdrop-blur-sm border border-white/10">
121
- <div class="w-12 h-12 rounded-lg bg-primary/20 flex items-center justify-center mb-4">
122
- <i data-feather="map" class="text-primary"></i>
123
- </div>
124
- <h3 class="text-xl font-semibold mb-2">Value Mapper</h3>
125
- <p class="text-gray-300 dark:text-gray-300">Qualify leads <span class="bg-gradient-to-r from-primary to-secondary bg-clip-text text-[#DB87FF]">effectively</span> by mapping their values to your solutions.</p>
126
- </a>
127
-
128
- <a href="scorecard.html" class="bg-white/10 dark:bg-gray-700/30 text-white rounded-xl p-6 shadow-md card-hover backdrop-blur-sm border border-white/10">
129
- <div class="w-12 h-12 rounded-lg bg-secondary/20 flex items-center justify-center mb-4">
130
- <i data-feather="check-square" class="text-secondary"></i>
131
- </div>
132
- <h3 class="text-xl font-semibold mb-2">Value Scoring</h3>
133
- <p class="text-gray-300 dark:text-gray-300">Utilise our MEDDICC Scorecard to build <span class="bg-gradient-to-r from-primary to-secondary bg-clip-text text-[#DB87FF]">real urgency</span> and improve forecasting.</p>
134
- </a>
135
-
136
- <a href="strategy.html" class="bg-white/10 dark:bg-gray-700/30 text-white rounded-xl p-6 shadow-md card-hover backdrop-blur-sm border border-white/10">
137
- <div class="w-12 h-12 rounded-lg bg-primary/20 flex items-center justify-center mb-4">
138
- <i data-feather="trending-up" class="text-primary"></i>
139
- </div>
140
- <h3 class="text-xl font-semibold mb-2">Value-Centric</h3>
141
- <p class="text-gray-300 dark:text-gray-300">Stand out from the competition by learning how to execute our proven <span class="bg-gradient-to-r from-primary to-secondary bg-clip-text text-[#DB87FF]">value-centric</span> sales methodology.</p>
142
- </a>
143
-
144
- <a href="https://scaleway.360learning.com/group/66fbe9a4f3281e47975115a2/stats/courses/mine/active" class="bg-white/10 dark:bg-gray-700/30 text-white rounded-xl p-6 shadow-md card-hover backdrop-blur-sm border border-white/10">
145
- <div class="w-12 h-12 rounded-lg bg-secondary/20 flex items-center justify-center mb-4">
146
- <i data-feather="bar-chart-2" class="text-secondary"></i>
147
  </div>
148
- <h3 class="text-xl font-semibold mb-2">Sales Academy</h3>
149
- <p class="text-gray-300 dark:text-gray-300">Enroll in eLearning training courses designed to help you raise your sales game and become an <span class="bg-gradient-to-r from-primary to-secondary bg-clip-text text-[#DB87FF]">ELITE</span> seller.</p>
150
- </a>
151
-
152
- </div>
 
 
 
 
 
 
153
  </div>
154
- </section>
155
-
156
- <section class="py-16 bg-gradient-to-r from-primary/90 to-secondary/90 backdrop-blur-sm bg-opacity-90">
157
- <div class="container mx-auto px-4 text-center">
158
- <h2 class="text-3xl font-bold text-white mb-6">Ready to Transform Your Sales Approach?</h2>
159
- <p class="text-white/90 mb-8 max-w-2xl mx-auto">
160
- Embrace solution selling tailored for B2B sellers looking to stand out in a busy market.
161
- </p>
162
- <div class="flex justify-center">
163
- <a href="strategy.html" class="bg-[#9B5CEB] hover:bg-[#8B5CF6] text-white px-8 py-3 rounded-lg font-medium transition-colors">
164
- Learn More
165
- </a>
166
- </div>
167
  </div>
168
- </section>
169
 
170
- <footer class="bg-purple-800 backdrop-blur-sm border-t border-gray-700">
171
- <div class="container mx-auto px-4 py-8">
172
- <div class="flex flex-col md:flex-row justify-between items-center">
173
- <div class="mb-6 md:mb-0">
174
- <a href="index.html" class="flex items-center space-x-2">
175
- <span class="text-lg font-bold text-white font-heading">McGPT</span>
176
- </a>
177
- <p class="text-gray-400 dark:text-gray-300 mt-2 text-sm">
178
- Navigating your sales success with AI since 2023
179
- </p>
180
  </div>
181
- <div class="col-span-2 md:col-span-1">
182
- <h3 class="text-sm font-semibold text-gray-400 dark:text-gray-400 uppercase tracking-wider mb-4">Connect</h3>
183
- <div class="flex space-x-4">
184
- <a href="#" class="text-gray-300 dark:text-gray-300 hover:text-primary transition-colors">
185
- <i data-feather="twitter"></i>
186
- </a>
187
- <a href="#" class="text-gray-300 dark:text-gray-300 hover:text-primary transition-colors">
188
- <i data-feather="linkedin"></i>
189
- </a>
190
- <a href="#" class="text-gray-300 dark:text-gray-300 hover:text-primary transition-colors">
191
- <i data-feather="github"></i>
192
- </a>
193
- </div>
194
- </div>
195
  </div>
196
- <div class="mt-8 pt-8 border-t border-gray-700 text-center text-sm text-gray-400 dark:text-gray-400">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
197
  <p>&copy; 2023 McGPT Navigator. All rights reserved.</p>
198
- </div>
199
  </div>
200
  </footer>
201
-
202
  <script>
203
  // Mobile Menu Toggle
204
  const mobileMenuButton = document.getElementById('mobileMenuButton');
205
  const mobileMenu = document.getElementById('mobileMenu');
206
 
207
  mobileMenuButton.addEventListener('click', () => {
208
- // Toggle visibility of the menu overlay
209
  mobileMenu.classList.toggle('hidden');
210
- // Toggle the animation class on the button
211
  mobileMenuButton.classList.toggle('open');
212
- // Prevent body from scrolling when menu is open
213
- document.body.classList.toggle('overflow-hidden');
214
  });
215
 
216
- // Theme Toggle - Note: This site is dark by default.
217
  const themeToggle = document.getElementById('themeToggle');
218
  const html = document.documentElement;
219
 
220
- // This function is kept for potential future use if a light mode is added.
221
  themeToggle.addEventListener('click', () => {
222
- // Example: Toggling between dark and a hypothetical light mode
223
- // html.classList.toggle('dark');
224
- // For now, it doesn't do anything as the site is always dark.
225
  });
226
-
227
  // Set initial theme - always dark by default
228
- if (!html.classList.contains('dark')) {
229
- html.classList.add('dark');
230
- }
231
-
232
- // Set active nav link
233
  const currentPage = window.location.pathname.split('/').pop() || 'index.html';
234
  document.querySelectorAll('.nav-link').forEach(link => {
235
- link.classList.remove('active'); // Remove active from all first
236
  const linkHref = link.getAttribute('href');
237
- if (linkHref === currentPage) {
 
238
  link.classList.add('active');
 
 
239
  }
240
  });
241
 
242
  // Feather Icons
243
  feather.replace();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
  </script>
 
245
  </body>
246
  </html>
 
9
  <script src="https://cdn.tailwindcss.com"></script>
10
  <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
  <script src="https://unpkg.com/feather-icons"></script>
12
+ <!-- Add jsPDF library for PDF generation -->
13
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"></script>
14
  <script>
15
+ tailwind.config = {
16
  darkMode: 'class',
17
  theme: {
18
  extend: {
 
35
  .hamburger-line {
36
  @apply w-6 h-0.5 bg-white transition-all duration-300;
37
  }
38
+ </style>
 
 
 
 
 
 
 
 
 
 
39
  </head>
40
  <body class="bg-purple-900 dark:bg-purple-900 text-blue-900 dark:text-blue-900 min-h-screen flex flex-col relative" style="background-image: radial-gradient(circle at 25% 25%, rgba(59, 7, 100, 0.4) 0%, rgba(59, 7, 100, 0) 50%), radial-gradient(circle at 75% 75%, rgba(76, 29, 149, 0.4) 0%, rgba(76, 29, 149, 0) 50%);">
 
41
  <header class="sticky top-0 z-50 bg-purple-800/80 dark:bg-purple-800/80 backdrop-blur-md shadow-sm">
42
+ <div class="container mx-auto px-4 py-3">
43
+ <div class="flex justify-between items-center">
44
+ <a href="index.html" class="flex items-center space-x-2">
45
+ <span class="text-xl font-bold text-white font-heading">McGPT</span>
46
+ </a>
47
+ <nav class="hidden md:flex space-x-8">
48
+ <a href="index.html" class="nav-link active py-2 px-1 text-white">Home</a>
49
+ <a href="value-mapper.html" class="nav-link py-2 px-1 text-white hover:text-primary transition-colors">Mapper</a>
50
+ <a href="scorecard.html" class="nav-link py-2 px-1 text-white hover:text-primary transition-colors">Scorecard</a>
51
+ <a href="strategy.html" class="nav-link py-2 px-1 text-white hover:text-primary transition-colors">Method</a>
52
+ </nav>
53
+ <div class="flex items-center space-x-4">
54
+ <button id="themeToggle" class="p-2 rounded-full hover:bg-gray-200 dark:hover:bg-gray-700">
55
+ <i data-feather="moon" class="hidden dark:block"></i>
56
+ <i data-feather="sun" class="block dark:hidden"></i>
57
+ </button>
58
+ <button id="mobileMenuButton" class="md:hidden flex flex-col space-y-1.5 p-2 bg-[#9B5CEB] rounded-lg">
59
+ <span class="hamburger-line"></span>
60
+ <span class="hamburger-line"></span>
61
+ <span class="hamburger-line"></span>
62
+ </button>
 
 
 
 
 
 
 
 
 
 
 
 
63
  </div>
64
+ </div>
65
 
66
+ <div id="mobileMenu" class="hidden md:hidden py-4 border-t mt-3">
67
+ <div class="flex flex-col space-y-3">
68
+ <a href="index.html" class="nav-link active py-2 px-1 text-white">Home</a>
69
+ <a href="value-mapper.html" class="nav-link py-2 px-1 text-white hover:text-primary transition-colors">Mapper</a>
70
+ <a href="scorecard.html" class="nav-link py-2 px-1 text-white hover:text-primary transition-colors">Scorecard</a>
71
+ <a href="strategy.html" class="nav-link py-2 px-1 text-white hover:text-primary transition-colors">About</a>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  </div>
73
+ </div>
 
 
74
  </div>
75
+ </header>
76
+ <main class="flex-grow bg-gradient-to-b from-[#8B5CF6] to-[#A78BFA] backdrop-blur-sm">
77
+ <div class="container mx-auto px-4 py-16 md:py-24">
78
+ <div class="text-center mb-10 bg-[#F1EEFC] p-8 rounded-2xl shadow-2xl border-t-4 border-primary hover:border-secondary transition-all duration-300 backdrop-blur-sm">
79
+ <h1 class="text-3xl sm:text-4xl font-heading font-extrabold text-purple-900 mb-3 leading-tight">
80
+ Pod Value Mapper
81
+ </h1>
82
+ <div class="mb-10 p-6 bg-gradient-to-tr from-indigo-200 to-purple-200 rounded-xl shadow-xl no-print hover:shadow-2xl transition-shadow duration-300 backdrop-blur-sm hovered-element">
83
+ <div class="relative">
84
+ <select id="industry-selector" onchange="updateContent()" class="block w-full py-3 px-4 pr-10 border-2 border-white rounded-xl text-base font-semibold text-black bg-white/90 focus:ring-4 focus:ring-secondary focus:border-secondary transition duration-200 shadow-lg">
85
+ <option value="placeholder" disabled="" selected="" class="text-gray-600">
86
+ --- Choose an Industry to Map Value ---
87
+ </option>
88
+ <option value="Financial Services and Insurance">Financial Services and Insurance</option>
89
+ <option value="Healthcare and Biotechnology">Healthcare and Biotechnology</option>
90
+ <option value="E-commerce and Retail">E-commerce and Retail</option>
91
+ <option value="Media and Entertainment">Media and Entertainment</option>
92
+ <option value="Gaming">Gaming</option>
93
+ <option value="Education and Research">Public Sector and Education</option>
94
+ <option value="Government and Public Sector">Government and Public Sector</option>
95
+ <option value="Cyber">Cyber</option>
96
+ <option value="Manufacturing">Manufacturing</option>
97
+ <option value="Energy">Energy</option>
98
+ <option value="Logistics">Logistics</option>
99
+ <option value="Transport">Transport</option>
100
+ <option value="Technology/SaaS">Technology/SaaS</option>
101
+ <option value="Startup">Startup</option>
102
+ </select>
 
 
 
 
 
 
103
  </div>
104
+ </div>
105
+ <p class="text-lg text-[#792DD4] font-light text-center">
106
+ <strong>Your essential tool for qualification and value articulation.</strong>
107
+ </p>
108
+ <div class="my-4 h-0.5 w-1/4 mx-auto bg-black"></div>
109
+ <p class="text-base text-gray-600 mb-4">
110
+ Identify pain points and frame conversations around Scaleway's key values:
111
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 max-w-4xl mx-auto">
112
+
113
+ <div class="bg-white/80 p-3 rounded-lg border-l-2 border-primary">
114
+ <p class="text-lg font-bold text-[#792DD4]">European Data Sovereignty</p>
115
  </div>
116
+
117
+ <div class="bg-white/80 p-3 rounded-lg border-l-2 border-indigo-400">
118
+ <p class="text-lg font-bold text-[#792DD4]">Cost-Effective GPU/AI Power</p>
119
+ </div>
120
+
121
+ <div class="bg-white/80 p-3 rounded-lg border-l-2 border-secondary">
122
+ <p class="text-lg font-bold text-[#792DD4]">Full Open-Source Stack</p>
123
+ </div>
124
+
125
+ <div class="bg-white/80 p-3 rounded-lg border-l-2 border-secondary">
126
+ <p class="text-lg font-bold text-[#792DD4]">Scalable & 100% Sustainable</p>
 
 
127
  </div>
 
128
 
129
+ </div>
130
+ </div>
 
 
 
 
 
 
 
 
131
  </div>
132
+ <div id="initial-message" class="text-center p-12 rounded-xl bg-gray-800/80 text-gray-300 border-2 border-dashed border-gray-600 hover:border-primary transition-colors duration-300 backdrop-blur-sm">
133
+ <p class="text-lg font-medium hovered-element">Please select an industry from the dropdown above to reveal targeted value mapping, discovery questions, and permission-based openers.</p>
 
 
 
 
 
 
 
 
 
 
 
 
134
  </div>
135
+ <div id="dynamic-area" class="hidden space-y-8 backdrop-blur-sm">
136
+ <h2 id="industry-title" class="text-2xl font-heading font-bold text-white text-center pt-4">
137
+ <span class="bg-gradient-to-r from-primary to-secondary bg-clip-text text-[#C43BFF]"></span>
138
+ </h2>
139
+ <div class="bg-gray-800/90 p-8 rounded-xl shadow-lg border-l-4 border-secondary backdrop-blur-sm">
140
+ <h3 class="text-xl font-heading font-bold mb-6 text-white">Value Proposition & Suggested Product Focus</h3>
141
+ <div id="value-drivers" class="space-y-4 text-gray-200 text-base">
142
+ </div>
143
+ </div>
144
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-6">
145
+ <div class="bg-gray-800/90 p-6 rounded-xl shadow-lg border-l-4 border-indigo-400 backdrop-blur-sm hover:border-secondary transition-all duration-300">
146
+ <h3 class="text-lg font-heading font-bold mb-4 text-white">Discovery Question 1</h3>
147
+ <p id="dq1" class="text-gray-200 italic mb-6 text-base"></p>
148
+ <h4 class="font-bold text-sm uppercase text-gray-300 mb-2">Permission-Based Opener 1</h4>
149
+ <p id="pbo1" class="text-white font-medium text-base"></p>
150
+ </div>
151
+ <div class="bg-gray-800/90 p-6 rounded-xl shadow-lg border-l-4 border-secondary backdrop-blur-sm hover:border-primary transition-all duration-300">
152
+ <h3 class="text-lg font-heading font-bold mb-4 text-white">Discovery Question 2</h3>
153
+ <p id="dq2" class="text-gray-200 italic mb-6 text-base"></p>
154
+ <h4 class="font-bold text-sm uppercase text-gray-300 mb-2">Permission-Based Opener 2</h4>
155
+ <p id="pbo2" class="text-white font-medium text-base mb-8"></p>
156
+ </div>
157
+
158
+ </div>
159
+
160
+ </div>
161
+ </main>
162
+ <footer class="bg-purple-800/80 dark:bg-purple-800/80 backdrop-blur-sm border-t border-gray-700">
163
+ <div class="container mx-auto px-4 py-8">
164
+ <div class="flex flex-col md:flex-row justify-between items-center">
165
+ <div class="mb-6 md:mb-0">
166
+ <a href="index.html" class="flex items-center space-x-2">
167
+ <span class="text-lg font-bold text-white font-heading">McGPT</span>
168
+ </a>
169
+ <p class="text-gray-600 dark:text-gray-300 mt-2 text-sm">
170
+ Navigating your sales success with AI since 2024
171
+ </p>
172
+
173
+ <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">
174
  <p>&copy; 2023 McGPT Navigator. All rights reserved.</p>
175
+ </div>
176
  </div>
177
  </footer>
 
178
  <script>
179
  // Mobile Menu Toggle
180
  const mobileMenuButton = document.getElementById('mobileMenuButton');
181
  const mobileMenu = document.getElementById('mobileMenu');
182
 
183
  mobileMenuButton.addEventListener('click', () => {
 
184
  mobileMenu.classList.toggle('hidden');
 
185
  mobileMenuButton.classList.toggle('open');
 
 
186
  });
187
 
188
+ // Theme Toggle
189
  const themeToggle = document.getElementById('themeToggle');
190
  const html = document.documentElement;
191
 
 
192
  themeToggle.addEventListener('click', () => {
193
+ html.classList.toggle('dark');
194
+ localStorage.theme = html.classList.contains('dark') ? 'dark' : 'light';
 
195
  });
 
196
  // Set initial theme - always dark by default
197
+ html.classList.add('dark');
198
+ localStorage.theme = 'dark';
199
+ // Set active nav link
 
 
200
  const currentPage = window.location.pathname.split('/').pop() || 'index.html';
201
  document.querySelectorAll('.nav-link').forEach(link => {
 
202
  const linkHref = link.getAttribute('href');
203
+ if ((currentPage === 'index.html' && linkHref === 'index.html') ||
204
+ (currentPage !== 'index.html' && linkHref === currentPage)) {
205
  link.classList.add('active');
206
+ } else {
207
+ link.classList.remove('active');
208
  }
209
  });
210
 
211
  // Feather Icons
212
  feather.replace();
213
+
214
+ // JavaScript for Dynamic Content Loading and PDF
215
+ const INDUSTRY_DATA = {
216
+ "Financial Services and Insurance": {
217
+ valueDrivers: "Value Drivers: Data Sovereignty, Security, Compliance (GDPR, PCI-DSS), Low-Latency. Product Focus: Private Cloud, Bare Metal.",
218
+ dq1: "How are you currently addressing the rising costs and complexity of maintaining GDPR and PCI-DSS compliance across your cloud infrastructure?",
219
+ pbo1: "Can I share how we help with data sovereignty using our EU-based infrastructure?",
220
+ dq2: "To what extent are your current cloud/infrastructure choices impacting your ability to meet strict regulatory requirements like GDPR or PCI-DSS, especially around data sovereignty and low-latency access?",
221
+ pbo2: "Can we quickly discuss how our Private Cloud meets GDPR/PCI-DSS needs?"
222
+ },
223
+ "Healthcare and Biotechnology": {
224
+ valueDrivers: "Value Drivers: Secure & Compliant Infrastructure (HDS), AI/ML for Research, HPC. Product Focus: Object Storage, GPU Instances, AI Tools.",
225
+ dq1: "What infrastructure challenges are currently slowing down your R&D teams when running large-scale AI models on sensitive patient data?",
226
+ pbo1: "Can I show you how our tools simplify deployment?",
227
+ dq2: "When scaling your AI/ML research or HPC workloads, what are the biggest challenges you face today in ensuring both HDS compliance and getting performant access to massive data sets?",
228
+ pbo2: "Can I share how our GPU instances accelerate research securely?"
229
+ },
230
+ "E-commerce and Retail": {
231
+ valueDrivers: "Value Drivers: Scalability, Performance (Peak Loads), Edge Computing, Real-time Analytics. Product Focus: Load Balancers, Edge Computing, Managed Kubernetes (Kapsule).",
232
+ 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?",
233
+ pbo1: "Can I show you our transparent pricing vs US hyperscalers?",
234
+ 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 Computing environments?",
235
+ pbo2: "Can I show you how we handle traffic spikes with Load Balancers?"
236
+ },
237
+ "Media and Entertainment": {
238
+ valueDrivers: "Value Drivers: Massive Object Storage, High-Bandwidth, Cost-Effective GPU Rendering, Open-Source Tools. Product Focus: Object Storage, Dedicated Servers, CDN.",
239
+ dq1: "Are you facing constraints or unexpected costs when archiving massive volumes of high-resolution content or delivering media globally at high quality?",
240
+ pbo1: "Can we discuss avoiding vendor lock-in with our open ecosystem?",
241
+ 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 for large rendering jobs?",
242
+ pbo2: "Can I show you how we cut rendering costs with our storage?"
243
+ },
244
+ "Gaming": {
245
+ valueDrivers: "Value Drivers: Low-Latency, High-Availability, Cost-Effective GPU Instances, Developer-Centric Tools. Product Focus: Load Balancers, Bare Metal, GPU Instances.",
246
+ dq1: "What are the key technical barriers your players are reporting around in-game latency or server downtime that directly impact retention rates?",
247
+ pbo1: "Most of our customers appreciate a seamless, developer-centric experience and easy-to-use console. Are you open to a quick overview of how our tools simplify deployment and management?",
248
+ dq2: "For your performance-critical applications, what is the key trade-off you are currently making between achieving low-latency/high-availability and maintaining a cost-effective environment for your GPU-intensive workloads?",
249
+ pbo2: "Can I share how our Bare Metal balances cost and performance?"
250
+ },
251
+ "Education and Research": {
252
+ valueDrivers: "Value Drivers: Cost-Effective HPC/GPU, Secure & Scalable, Open-Source for Collaboration. Product Focus: GPU Instances, Kubernetes, IAM.",
253
+ 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?",
254
+ pbo1: "Many companies are concerned about long-term vendor lock-in and rising egress costs. Would it be helpful to discuss how our open-source ecosystem helps customers avoid those challenges?",
255
+ dq2: "Regarding your HPC and GPU projects, how effectively is your current Kubernetes environment balancing the need for cost-effective scaling with the security and access control required for collaborative work?",
256
+ pbo2: "Can I explain our GPU instances for secure HPC environments?"
257
+ },
258
+ "Government and Public Sector": {
259
+ valueDrivers: "Value Drivers: Strict Data Sovereignty (European Cloud), SecNumCloud Readiness, Compliance. Product Focus: Private Cloud, Dedicated Servers.",
260
+ dq1: "In your digital transformation roadmap, what are the primary risks or hurdles associated with relying on non-European cloud providers for sensitive citizen data?",
261
+ 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?",
262
+ dq2: "How challenging is it for your organization to maintain strict European data sovereignty and pursue certifications like SecNumCloud while trying to manage your core infrastructure needs?",
263
+ pbo2: "Can I show you our SecNumCloud-ready Private Cloud?"
264
+ },
265
+ "Cyber": {
266
+ valueDrivers: "Value Drivers: Data Sovereignty as Defense, Private Networking, AI/ML for Threat Detection, Transparent Billing. Product Focus: Private Network (VPC), Bare Metal, AI Tools.",
267
+ dq1: "How is your team utilizing (or planning to utilize) AI and European-local data processing to enhance your real-time threat detection and response capabilities?",
268
+ pbo1: "I often hear that predictable billing and cost efficiency are key concerns when scaling. May I share a few ways Scaleway ensures complete cost transparency compared to US hyperscalers?",
269
+ dq2: "What is the current level of confidence in your existing private networking setup regarding its ability to leverage AI/ML for threat detection while firmly upholding your data sovereignty principles?",
270
+ pbo2: "Can I share how Bare Metal + VPC enhances security?"
271
+ },
272
+ "Manufacturing": {
273
+ valueDrivers: "Value Drivers: Edge Computing (IoT Data), AI/ML for Predictive Maintenance, Open-Source Integration. Product Focus: Edge Computing, AI Tools, Object Storage.",
274
+ dq1: "What percentage of unscheduled downtime could be saved if you could process IoT sensor data at the edge for instant, localized predictive maintenance?",
275
+ pbo1: "Many companies are concerned about long-term vendor lock-in and rising egress costs. Would it be helpful to discuss how our open-source ecosystem helps customers avoid those challenges?",
276
+ dq2: "When deploying AI/ML for predictive maintenance using IoT data at the edge, what is the biggest technical roadblock you encounter regarding data storage, processing, or open-source integration?",
277
+ pbo2: "Can I show you our Edge solutions for predictive maintenance?"
278
+ },
279
+ "Energy": {
280
+ valueDrivers: "Value Drivers: Sustainability, AI/ML for Grid Optimization, Data Sovereignty. Product Focus: AI Tools, Managed Databases.",
281
+ 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?",
282
+ 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?",
283
+ dq2: "As you pursue sustainability goals, how successful has your team been in deploying AI/ML tools for initiatives like grid optimization while also adhering to strict data sovereignty mandates?",
284
+ pbo2: "Can I share how our AI tools optimize energy grids?"
285
+ },
286
+ "Logistics": {
287
+ valueDrivers: "Value Drivers: Edge Computing (Real-time Tracking), AI/ML for Optimization, Transparent Billing. Product Focus: Edge Computing, Managed Databases, AI Tools.",
288
+ dq1: "If you could achieve a 5% improvement in route efficiency through real-time AI analysis, how quickly would that translate into measurable fuel and labor cost savings?",
289
+ pbo1: "I often hear that predictable billing and cost efficiency are key concerns when scaling. May I share a few ways Scaleway ensures complete cost transparency compared to US hyperscalers?",
290
+ dq2: "In your real-time tracking and Edge Computing projects, how are you ensuring both fast, reliable data processing and clear, transparent billing when leveraging AI/ML for optimization?",
291
+ pbo2: "Can I show our Edge + AI solution with clear pricing?"
292
+ },
293
+ "Transport": {
294
+ valueDrivers: "Value Drivers: Low-Latency, HPC for Simulation, Developer-Centric Tools. Product Focus: Edge Computing, GPU Instances, HPC.",
295
+ dq1: "How satisfied are your engineering teams with the current cost and turnaround time of running large-scale simulations for new vehicle development or autonomous systems?",
296
+ pbo1: "Most of our customers appreciate a seamless, developer-centric experience and easy-to-use console. Are you open to a quick overview of how our tools simplify deployment and management?",
297
+ dq2: "For your high-stakes HPC simulations, where are you currently seeing the most significant constraints on achieving optimal low-latency performance and providing your developers with the best tools?",
298
+ pbo2: "Can I share our GPU instances for low-latency simulation?"
299
+ },
300
+ "Technology/SaaS": {
301
+ valueDrivers: "Value Drivers: Developer-Centric Tools, Cost-Effectiveness for Scale-ups, Open-Source Agility, Transparent Billing. Product Focus: Kubernetes (Kapsule), Managed Databases, GPU Instances.",
302
+ dq1: "What is the highest friction point your development teams experience when trying to deploy, scale, or manage your core application across different environments?",
303
+ pbo1: "Many companies are concerned about long-term vendor lock-in and rising egress costs. Would it be helpful to discuss how our open-source ecosystem helps customers avoid those challenges?",
304
+ dq2: "As a scale-up, how are you balancing the need for rapid open-source agility and developer-centric tools with the challenge of maintaining long-term cost-effectiveness and transparent billing across your infrastructure?",
305
+ pbo2: "Can I show you our cost-effective Kubernetes for scale-ups?"
306
+ },
307
+ // NEW CATEGORY ADDED: Startup
308
+ "Startup": {
309
+ valueDrivers: "Value Drivers: Cost-Effectiveness, Developer-Centric Tools, Agility/Time-to-Market, Open-Source Ecosystem. Product Focus: Managed Kubernetes (Kapsule), Managed Databases, Free Tier, GPU Instances (for early AI development).",
310
+ dq1: "As you scale rapidly, what are your biggest concerns regarding unpredictable cloud costs, especially related to data egress and vendor lock-in?",
311
+ pbo1: "I often hear that predictable billing and cost efficiency are key concerns when scaling. May I share a few ways Scaleway ensures complete cost transparency compared to US hyperscalers?",
312
+ dq2: "What friction points are your developers currently facing when deploying new features, and how important is using open-source tools to maintain agility?",
313
+ pbo2: "Can we discuss avoiding lock-in with our open ecosystem?"
314
+ }
315
+ };
316
+
317
+ function updateContent() {
318
+ const selector = document.getElementById('industry-selector');
319
+ const industry = selector.value;
320
+
321
+ // Check if the default placeholder is selected
322
+ if (!industry || industry === 'placeholder') {
323
+ document.getElementById('dynamic-area').classList.add('hidden');
324
+ document.getElementById('initial-message').classList.remove('hidden');
325
+ return;
326
+ }
327
+
328
+ const data = INDUSTRY_DATA[industry];
329
+
330
+ // Update the dynamic content elements
331
+ document.getElementById('industry-title').textContent = industry;
332
+
333
+ // 1. Value Drivers & Product Focus
334
+ const valueDriversElement = document.getElementById('value-drivers');
335
+ if (data.valueDrivers) {
336
+ valueDriversElement.innerHTML = data.valueDrivers.replace(/Value Drivers: (.*?)\. Product Focus: (.*?)\./s, (match, drivers, focus) => {
337
+ return `<p class="font-semibold text-lg mb-2 text-primary">Value Drivers:</p><p class="text-gray-300 mb-4">${drivers}</p>
338
+ <p class="font-semibold text-lg mb-2 text-primary">Product Focus:</p><p class="text-gray-300">${focus}</p>`;
339
+ });
340
+ } else {
341
+ valueDriversElement.innerHTML = '';
342
+ }
343
+
344
+ // 2. Discovery Questions & Openers
345
+ document.getElementById('dq1').textContent = data.dq1;
346
+ document.getElementById('pbo1').textContent = data.pbo1;
347
+ document.getElementById('dq2').textContent = data.dq2;
348
+ document.getElementById('pbo2').textContent = data.pbo2;
349
+
350
+ // Toggle visibility
351
+ document.getElementById('initial-message').classList.add('hidden');
352
+ document.getElementById('dynamic-area').classList.remove('hidden');
353
+ }
354
+ // Function to export data as PDF
355
+ function exportToPDF() {
356
+ const industry = document.getElementById('industry-selector').value;
357
+ const valueDrivers = document.getElementById('value-drivers').textContent;
358
+ const dq1 = document.getElementById('dq1').textContent;
359
+ const dq2 = document.getElementById('dq2').textContent;
360
+
361
+ // Create PDF document
362
+ const { jsPDF } = window.jspdf;
363
+ const doc = new jsPDF();
364
+
365
+ // Add title
366
+ doc.setFontSize(20);
367
+ doc.setTextColor(85, 33, 148); // #552194
368
+ doc.text(`Pod Value Mapper - ${industry}`, 105, 20, { align: 'center' });
369
+
370
+ // Add value drivers section
371
+ doc.setFontSize(16);
372
+ doc.setTextColor(85, 33, 148);
373
+ doc.text('Value Proposition & Product Focus', 15, 40);
374
+
375
+ doc.setFontSize(12);
376
+ doc.setTextColor(0, 0, 0);
377
+ const valueLines = doc.splitTextToSize(valueDrivers, 180);
378
+ doc.text(valueLines, 15, 50);
379
+
380
+ // Add discovery questions
381
+ doc.setFontSize(16);
382
+ doc.setTextColor(85, 33, 148);
383
+ doc.text('Discovery Questions', 15, 100);
384
+
385
+ // Question 1
386
+ doc.setFontSize(14);
387
+ doc.text('1:', 15, 110);
388
+ doc.setFont('normal');
389
+ doc.setFontSize(12);
390
+ doc.text(dq1, 25, 110);
391
+
392
+ // Question 2
393
+ doc.setFontSize(14);
394
+ doc.text('2:', 15, 130);
395
+ doc.setFont('normal');
396
+ doc.setFontSize(12);
397
+ doc.text(dq2, 25, 130);
398
+
399
+ // Save the PDF
400
+ doc.save(`McGPT_ValueMapper_${industry.replace(/\s+/g, '_')}.pdf`);
401
+ }
402
+ // Initialize to ensure the hidden/shown states are correct on load
403
+ window.onload = updateContent;
404
  </script>
405
+
406
  </body>
407
  </html>