DjayChucko commited on
Commit
9ae839b
·
verified ·
1 Parent(s): cc477c0

Manual changes saved

Browse files
Files changed (2) hide show
  1. index.html +139 -191
  2. value-mapper.html +43 -1
index.html CHANGED
@@ -4,239 +4,187 @@
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <meta name="description" content="McGPT - Your strategic sales companion">
7
- <title> Pod Value Mapper | Home</title>
8
- <link rel="icon" type="image/x-icon" href="https://www.scaleway.com/en">
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: {
17
- colors: {
18
- primary: '#6366f1',
19
- secondary: '#8b5cf6',
20
- dark: '#1e293b'
21
- }
22
- }
23
- }
24
- }
25
  </script>
26
  <style>
 
 
 
 
 
 
 
 
 
27
  .nav-link.active {
28
- @apply text-primary font-medium border-b-2 border-primary;
 
29
  }
30
  .card-hover {
31
  @apply transition-all duration-300 hover:scale-105 hover:shadow-xl;
32
  }
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-[#3D1862] dark:bg-[#3D1862] text-blue-900 dark:text-blue-900 min-h-screen flex flex-col relative" style="background-image: radial-gradient(circle at 25% 25%, rgba(39, 8, 71, 0.6) 0%, rgba(39, 8, 71, 0) 50%), radial-gradient(circle at 75% 75%, rgba(59, 15, 110, 0.6) 0%, rgba(59, 15, 110, 0) 50%);">
49
- <header class="sticky top-0 z-50 bg-purple-800/80 dark:bg-purple-800/80 backdrop-blur-md shadow-sm">
 
50
  <div class="container mx-auto px-4 py-3">
51
  <div class="flex justify-between items-center">
52
  <a href="index.html" class="flex items-center space-x-2">
53
  <img src="https://huggingface.co/spaces/DjayChucko/EnablingSales/resolve/main/images/Scaleway-Logomark-White.png" alt="Logo" class="h-8 mr-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
-
96
- <p class="text-xl mb-8 text-white dark:text-white font-light">
97
- Sales intelligence anywhere, anytime helping you <span class="text-xl font-bold text-white font-heading">qualify</span>, <span class="text-xl font-bold text-white font-heading">quantify</span> and <span class="text-xl font-bold text-white font-heading">justify</span> Scaleway's unique value proposition.
98
- </p>
99
- <p class="text-xl mb-8 text-white dark:text-white font-light">
100
- <span class="text-xl font-bold text-white font-heading">McGPT</span> - <span class="text-xl font-bold text-white font-heading">strategic tools enabling elite sales</span>
101
- </p>
102
- <div class="flex space-x-4">
103
- <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">
104
- Start Mapping
105
- </a>
106
- <a href="scorecard.html" class="bg-secondary hover:bg-[#7B4BEB] text-white px-6 py-3 rounded-lg font-medium transition-colors shadow-lg">
107
- MEDDICC Scorecard
108
- </a>
109
- </div>
110
- </div>
111
- <div class="md:w-1/2"></div>
112
  </div>
113
  </div>
 
114
 
115
- <div class="container mx-auto px-4">
116
- <div class="flex justify-center mb-6">
117
- <img src="https://huggingface.co/spaces/DjayChucko/EnablingSales/resolve/main/images/MediaEntertainment-Illustration-transparent.png" alt="Strategic Toolkit Illustration" class="h-[24rem] w-auto ">
118
- </div>
119
- <h2 class="text-3xl font-bold text-center mb-12 text-white">Strategic tools for <span class="bg-gradient-to-r from-primary to-secondary bg-clip-text text-[#C43BFF]">ELITE</span> sales professionals</h2>
120
- <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
121
- <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">
122
- <div class="w-12 h-12 rounded-lg bg-primary/20 flex items-center justify-center mb-4">
123
- <i data-feather="map" class="text-sky-400"></i>
124
- </div>
125
- <h3 class="text-xl font-semibold mb-2">Value Mapping</h3>
126
- <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>
127
- </a>
128
-
129
- <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">
130
- <div class="w-12 h-12 rounded-lg bg-secondary/20 flex items-center justify-center mb-4">
131
- <i data-feather="check-square" class="text-sky-400"></i>
132
- </div>
133
- <h3 class="text-xl font-semibold mb-2">Value Scoring</h3>
134
- <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>
135
- </a>
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-sky-400"></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
- <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">
144
- <div class="w-12 h-12 rounded-lg bg-secondary/20 flex items-center justify-center mb-4">
145
- <i data-feather="bar-chart-2" class="text-sky-400"></i>
146
- </div>
147
- <h3 class="text-xl font-semibold mb-2">Sales Academy</h3>
148
- <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>
149
- </a>
150
- </div>
151
- </div>
152
- </section>
153
- <section class="py-16 bg-[#8F1CC2] backdrop-blur-sm bg-opacity-90">
154
- <div class="container mx-auto px-4 text-center">
155
- <h2 class="text-3xl font-bold text-white mb-6">Ready to Transform Your Sales Approach?</h2>
156
- <p class="text-white/90 mb-8 max-w-2xl mx-auto">
157
- Embrace solution selling tailored for B2B sellers looking to stand out in a busy market.
158
- </p>
159
- <div class="flex justify-center">
160
- <a href="strategy.html" class="bg-[#9B5CEB] hover:bg-[#8B5CF6] text-white px-8 py-3 rounded-lg font-medium transition-colors">
161
- Learn More
162
- </a>
163
- </div>
164
- </div>
165
- </section>
166
- <footer class="bg-purple-800 backdrop-blur-sm border-t border-gray-700">
167
- <div class="container mx-auto px-4 py-8">
168
- <div class="flex flex-col md:flex-row justify-between items-center">
169
- <div class="mb-6 md:mb-0">
170
- <a href="index.html" class="flex items-center space-x-2">
171
- <span class="text-lg font-bold text-white font-heading">McGPT</span>
172
- </a>
173
- <p class="text-gray-400 dark:text-gray-300 mt-2 text-sm">
174
- Navigating your sales success with AI since 2023
175
- </p>
176
- </div>
177
- <div class="col-span-2 md:col-span-1">
178
- <h3 class="text-sm font-semibold text-gray-400 dark:text-gray-400 uppercase tracking-wider mb-4">Connect</h3>
179
- <div class="flex space-x-4">
180
- <a href="#" class="text-gray-300 dark:text-gray-300 hover:text-primary transition-colors">
181
- <i data-feather="twitter"></i>
182
  </a>
183
- <a href="#" class="text-gray-300 dark:text-gray-300 hover:text-primary transition-colors">
184
- <i data-feather="linkedin"></i>
185
- </a>
186
- <a href="#" class="text-gray-300 dark:text-gray-300 hover:text-primary transition-colors">
187
- <i data-feather="github"></i>
188
  </a>
189
  </div>
190
  </div>
 
 
 
191
  </div>
192
- <div class="mt-8 pt-8 border-t border-gray-700 text-center text-sm text-gray-400 dark:text-gray-400">
193
- <p>&copy; 2023 McGPT Navigator. All rights reserved.</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
194
  </div>
195
  </div>
196
- </footer>
 
197
 
198
- <script>
199
- // Mobile Menu Toggle
200
- const mobileMenuButton = document.getElementById('mobileMenuButton');
201
- const mobileMenu = document.getElementById('mobileMenu');
202
-
203
- mobileMenuButton.addEventListener('click', () => {
204
- // Toggle visibility of the menu overlay
205
- mobileMenu.classList.toggle('hidden');
206
- // Toggle the animation class on the button
207
- mobileMenuButton.classList.toggle('open');
208
- // Prevent body from scrolling when menu is open
209
- document.body.classList.toggle('overflow-hidden');
210
- });
 
 
 
 
 
 
 
 
 
 
 
211
 
212
- // Theme Toggle - Note: This site is dark by default.
213
- const themeToggle = document.getElementById('themeToggle');
214
- const html = document.documentElement;
215
-
216
- // This function is kept for potential future use if a light mode is added.
217
- themeToggle.addEventListener('click', () => {
218
- // Example: Toggling between dark and a hypothetical light mode
219
- // html.classList.toggle('dark');
220
- // For now, it doesn't do anything as the site is always dark.
221
- });
222
 
223
- // Set initial theme - always dark by default
224
- if (!html.classList.contains('dark')) {
225
- html.classList.add('dark');
 
 
 
 
 
226
  }
227
-
228
- // Set active nav link
229
- const currentPage = window.location.pathname.split('/').pop() || 'index.html';
230
- document.querySelectorAll('.nav-link').forEach(link => {
231
- link.classList.remove('active'); // Remove active from all first
232
- const linkHref = link.getAttribute('href');
233
- if (linkHref === currentPage) {
234
- link.classList.add('active');
235
- }
236
- });
237
 
238
- // Feather Icons
239
- feather.replace();
240
- </script>
241
  </body>
242
  </html>
 
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <meta name="description" content="McGPT - Your strategic sales companion">
7
+ <title>McGPT | Home</title>
8
+ <link rel="icon" type="image/x-icon" href="https://huggingface.co/spaces/DjayChucko/EnablingSales/resolve/main/images/Scaleway-Logomark-White.png">
9
  <script src="https://cdn.tailwindcss.com"></script>
10
+ <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
11
  <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
  <script src="https://unpkg.com/feather-icons"></script>
13
  <script>
14
+ tailwind.config = {
15
+ darkMode: 'class',
16
+ }
 
 
 
 
 
 
 
 
 
17
  </script>
18
  <style>
19
+ body { font-family: 'Poppins', sans-serif; }
20
+ .hamburger-line {
21
+ width: 20px; height: 2px; background-color: white; display: block; transition: all 0.3s;
22
+ }
23
+ .dark .hamburger-line { background-color: white; }
24
+ html:not(.dark) .hamburger-line { background-color: #4a5568; }
25
+ .open .hamburger-line:nth-child(1) { transform: translateY(5px) rotate(45deg); }
26
+ .open .hamburger-line:nth-child(2) { opacity: 0; }
27
+ .open .hamburger-line:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
28
  .nav-link.active {
29
+ font-weight: 600;
30
+ border-bottom: 2px solid #8b5cf6;
31
  }
32
  .card-hover {
33
  @apply transition-all duration-300 hover:scale-105 hover:shadow-xl;
34
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  </style>
36
  </head>
37
+ <body class="bg-gray-100 dark:bg-gray-900 text-gray-800 dark:text-gray-200 min-h-screen flex flex-col">
38
+
39
+ <header class="sticky top-0 z-50 bg-white/80 dark:bg-gray-900/80 backdrop-blur-md shadow-sm">
40
  <div class="container mx-auto px-4 py-3">
41
  <div class="flex justify-between items-center">
42
  <a href="index.html" class="flex items-center space-x-2">
43
  <img src="https://huggingface.co/spaces/DjayChucko/EnablingSales/resolve/main/images/Scaleway-Logomark-White.png" alt="Logo" class="h-8 mr-2">
44
+ <span class="text-xl font-bold text-gray-800 dark:text-white font-heading">McGPT</span>
45
+ </a>
46
  <nav class="hidden md:flex space-x-8">
47
+ <a href="index.html" class="nav-link active py-2 px-1 text-gray-800 dark:text-gray-100">Home</a>
48
+ <a href="value-mapper.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300 hover:text-purple-600 dark:hover:text-purple-400 transition-colors">Mapper</a>
49
+ <a href="scorecard.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300 hover:text-purple-600 dark:hover:text-purple-400 transition-colors">Scorecard</a>
50
+ <a href="strategy.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300 hover:text-purple-600 dark:hover:text-purple-400 transition-colors">Method</a>
51
  </nav>
52
  <div class="flex items-center space-x-4">
53
+ <button id="themeToggle" class="p-2 rounded-full text-gray-500 dark:text-gray-400 hover:bg-gray-200 dark:hover:bg-gray-700">
54
  <i data-feather="moon" class="hidden dark:block"></i>
55
  <i data-feather="sun" class="block dark:hidden"></i>
56
  </button>
57
+ <button id="mobileMenuButton" class="md:hidden flex flex-col space-y-1.5 p-2 bg-gray-200 dark:bg-gray-700 rounded-lg">
58
  <span class="hamburger-line"></span>
59
  <span class="hamburger-line"></span>
60
  <span class="hamburger-line"></span>
61
  </button>
62
+ </div>
63
  </div>
64
+ <div id="mobileMenu" class="hidden md:hidden py-4 border-t border-gray-200 dark:border-gray-700 mt-3">
65
+ <div class="flex flex-col space-y-3">
66
+ <a href="index.html" class="nav-link active py-2 px-1 text-gray-800 dark:text-gray-100">Home</a>
67
+ <a href="value-mapper.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300">Mapper</a>
68
+ <a href="scorecard.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300">Scorecard</a>
69
+ <a href="strategy.html" class="nav-link py-2 px-1 text-gray-600 dark:text-gray-300">Method</a>
70
+ </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  </div>
72
  </div>
73
+ </header>
74
 
75
+ <main class="flex-grow">
76
+ <section class="bg-gradient-to-br from-purple-600 to-indigo-700 text-white">
77
+ <div class="container mx-auto px-4 py-16 sm:py-24">
78
+ <div class="grid md:grid-cols-2 gap-12 items-center">
79
+ <div>
80
+ <h1 class="text-4xl lg:text-5xl font-extrabold mb-6 leading-tight">
81
+ Raise <span class="bg-gradient-to-r from-pink-400 to-purple-400 bg-clip-text text-transparent">Your</span> Game
82
+ </h1>
83
+ <p class="text-xl mb-4 text-purple-200">
84
+ Sales intelligence anywhere, anytime helping you <strong class="font-semibold text-white">qualify</strong>, <strong class="font-semibold text-white">quantify</strong>, and <strong class="font-semibold text-white">justify</strong> Scaleway's unique value proposition.
85
+ </p>
86
+ <p class="text-lg mb-8 text-purple-200">
87
+ <strong>McGPT</strong> - Strategic tools enabling elite sales.
88
+ </p>
89
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
90
+ <a href="value-mapper.html" class="bg-white text-purple-700 px-8 py-3 rounded-lg font-semibold transition-transform transform hover:scale-105 shadow-lg text-center">
91
+ Start Mapping
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  </a>
93
+ <a href="scorecard.html" class="bg-purple-500/50 border border-purple-400 text-white px-8 py-3 rounded-lg font-semibold transition-transform transform hover:scale-105 shadow-lg text-center">
94
+ MEDDICC Scorecard
 
 
 
95
  </a>
96
  </div>
97
  </div>
98
+ <div class="hidden md:block">
99
+ <img src="https://huggingface.co/spaces/DjayChucko/EnablingSales/resolve/main/images/MediaEntertainment-Illustration-transparent.png" alt="Strategic Toolkit Illustration" class="w-full h-auto">
100
+ </div>
101
  </div>
102
+ </div>
103
+ </section>
104
+
105
+ <section class="py-16 sm:py-24">
106
+ <div class="container mx-auto px-4">
107
+ <h2 class="text-3xl font-bold text-center mb-12 text-gray-800 dark:text-white">
108
+ Strategic Tools for <span class="text-purple-600 dark:text-purple-400">Elite</span> Sales Professionals
109
+ </h2>
110
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
111
+ <a href="value-mapper.html" class="block bg-white dark:bg-gray-800 rounded-xl p-6 shadow-lg card-hover border border-transparent dark:border-gray-700">
112
+ <div class="w-12 h-12 rounded-lg bg-purple-100 dark:bg-purple-900/50 flex items-center justify-center mb-4">
113
+ <i data-feather="map" class="text-purple-600 dark:text-purple-400"></i>
114
+ </div>
115
+ <h3 class="text-xl font-semibold mb-2 text-gray-800 dark:text-white">Value Mapping</h3>
116
+ <p class="text-gray-600 dark:text-gray-400">Qualify leads <strong class="text-purple-600 dark:text-purple-400 font-medium">effectively</strong> by mapping their values to your solutions.</p>
117
+ </a>
118
+ <a href="scorecard.html" class="block bg-white dark:bg-gray-800 rounded-xl p-6 shadow-lg card-hover border border-transparent dark:border-gray-700">
119
+ <div class="w-12 h-12 rounded-lg bg-purple-100 dark:bg-purple-900/50 flex items-center justify-center mb-4">
120
+ <i data-feather="check-square" class="text-purple-600 dark:text-purple-400"></i>
121
+ </div>
122
+ <h3 class="text-xl font-semibold mb-2 text-gray-800 dark:text-white">Value Scoring</h3>
123
+ <p class="text-gray-600 dark:text-gray-400">Utilise our MEDDICC Scorecard to build <strong class="text-purple-600 dark:text-purple-400 font-medium">real urgency</strong> and improve forecasting.</p>
124
+ </a>
125
+ <a href="strategy.html" class="block bg-white dark:bg-gray-800 rounded-xl p-6 shadow-lg card-hover border border-transparent dark:border-gray-700">
126
+ <div class="w-12 h-12 rounded-lg bg-purple-100 dark:bg-purple-900/50 flex items-center justify-center mb-4">
127
+ <i data-feather="trending-up" class="text-purple-600 dark:text-purple-400"></i>
128
+ </div>
129
+ <h3 class="text-xl font-semibold mb-2 text-gray-800 dark:text-white">Value-Centric</h3>
130
+ <p class="text-gray-600 dark:text-gray-400">Execute our proven <strong class="text-purple-600 dark:text-purple-400 font-medium">value-centric</strong> sales methodology.</p>
131
+ </a>
132
+ <a href="https://scaleway.360learning.com/" class="block bg-white dark:bg-gray-800 rounded-xl p-6 shadow-lg card-hover border border-transparent dark:border-gray-700">
133
+ <div class="w-12 h-12 rounded-lg bg-purple-100 dark:bg-purple-900/50 flex items-center justify-center mb-4">
134
+ <i data-feather="bar-chart-2" class="text-purple-600 dark:text-purple-400"></i>
135
+ </div>
136
+ <h3 class="text-xl font-semibold mb-2 text-gray-800 dark:text-white">Sales Academy</h3>
137
+ <p class="text-gray-600 dark:text-gray-400">Enroll in eLearning courses to become an <strong class="text-purple-600 dark:text-purple-400 font-medium">ELITE</strong> seller.</p>
138
+ </a>
139
  </div>
140
  </div>
141
+ </section>
142
+ </main>
143
 
144
+ <footer class="bg-white dark:bg-gray-800 border-t border-gray-200 dark:border-gray-700">
145
+ <div class="container mx-auto px-4 py-6">
146
+ <div class="text-center text-sm text-gray-500 dark:text-gray-400">
147
+ <p>&copy; 2025 McGPT Navigator. All rights reserved.</p>
148
+ </div>
149
+ </div>
150
+ </footer>
151
+
152
+ <script>
153
+ feather.replace();
154
+
155
+ // --- Theme Toggle ---
156
+ const themeToggle = document.getElementById('themeToggle');
157
+ const html = document.documentElement;
158
+ themeToggle.addEventListener('click', () => {
159
+ html.classList.toggle('dark');
160
+ localStorage.theme = html.classList.contains('dark') ? 'dark' : 'light';
161
+ feather.replace();
162
+ });
163
+ if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
164
+ html.classList.add('dark');
165
+ } else {
166
+ html.classList.remove('dark');
167
+ }
168
 
169
+ // --- Mobile Menu ---
170
+ const mobileMenuButton = document.getElementById('mobileMenuButton');
171
+ const mobileMenu = document.getElementById('mobileMenu');
172
+ mobileMenuButton.addEventListener('click', () => {
173
+ mobileMenu.classList.toggle('hidden');
174
+ mobileMenuButton.classList.toggle('open');
175
+ });
 
 
 
176
 
177
+ // --- Active Nav Link ---
178
+ const currentPage = window.location.pathname.split('/').pop() || 'index.html';
179
+ document.querySelectorAll('.nav-link').forEach(link => {
180
+ const linkHref = link.getAttribute('href');
181
+ if (linkHref === currentPage) {
182
+ link.classList.add('active');
183
+ } else {
184
+ link.classList.remove('active');
185
  }
186
+ });
187
+ </script>
 
 
 
 
 
 
 
 
188
 
 
 
 
189
  </body>
190
  </html>
value-mapper.html CHANGED
@@ -179,4 +179,46 @@
179
  "Government and Public Sector": { valueDrivers: "Value Drivers: Strict Data Sovereignty (European Cloud), SecNumCloud Readiness, Compliance. Product Focus: Private Cloud, Elastic Metal, SecNumCloud options.", 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?", 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?" },
180
  "Cyber": { 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.", 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?", 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?" },
181
  "Manufacturing": { valueDrivers: "Value Drivers: Edge Computing (IoT Data), AI/ML for Predictive Maintenance, Open-Source Integration. Product Focus: Edge Services, AI Inference Servers, Object Storage.", 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?", 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?" },
182
- "Energy": { valueDrivers: "Value Drivers: Sustainability, AI/ML for Grid Optimization, Data Sovereignty. Product Focus: AI Inference Servers, Managed Databases.", 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?", 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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
179
  "Government and Public Sector": { valueDrivers: "Value Drivers: Strict Data Sovereignty (European Cloud), SecNumCloud Readiness, Compliance. Product Focus: Private Cloud, Elastic Metal, SecNumCloud options.", 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?", 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?" },
180
  "Cyber": { 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.", 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?", 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?" },
181
  "Manufacturing": { valueDrivers: "Value Drivers: Edge Computing (IoT Data), AI/ML for Predictive Maintenance, Open-Source Integration. Product Focus: Edge Services, AI Inference Servers, Object Storage.", 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?", 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?" },
182
+ "Energy": { valueDrivers: "Value Drivers: Sustainability, AI/ML for Grid Optimization, Data Sovereignty. Product Focus: AI Inference Servers, Managed Databases.", 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?", 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?" },
183
+ "Logistics": { valueDrivers: "Value Drivers: Edge Computing (Real-time Tracking), AI/ML for Optimization, Transparent Billing. Product Focus: Edge Services, Managed Databases, AI Inference Servers.", 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?", 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?" },
184
+ "Transport": { valueDrivers: "Value Drivers: Low-Latency, HPC for Simulation, Developer-Centric Tools. Product Focus: Edge Services, GPU Instances, High-Performance Compute (HPC) options.", 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?", 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?" },
185
+ "Technology/SaaS": { valueDrivers: "Value Drivers: Developer-Centric Tools, Cost-Effectiveness, Open-Source Agility, Transparent Billing. Product Focus: Managed Kubernetes (Kapsule), Managed Databases, GPU Instances.", 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?", 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?" },
186
+ "Startup": { 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.", 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?", 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?" }
187
+ };
188
+
189
+ function updateContent() {
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
+
201
+ const data = INDUSTRY_DATA[industry];
202
+ document.getElementById('industry-title').textContent = industry;
203
+ const valueDriversElement = document.getElementById('value-drivers');
204
+
205
+ valueDriversElement.innerHTML = data.valueDrivers.replace(/Value Drivers: (.*?)\. Product Focus: (.*?)\./s,
206
+ `<p class="font-semibold text-lg mb-2 text-purple-600 dark:text-purple-400">Value Drivers:</p>
207
+ <p class="mb-4">${'$1'}</p>
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
+ document.getElementById('dq1').textContent = data.dq1;
212
+ document.getElementById('pbo1').textContent = data.pbo1;
213
+ document.getElementById('dq2').textContent = data.dq2;
214
+ document.getElementById('pbo2').textContent = data.pbo2;
215
+
216
+ initialMessage.classList.add('hidden');
217
+ dynamicArea.classList.remove('hidden');
218
+ dynamicArea.scrollIntoView({ behavior: 'smooth', block: 'start' });
219
+ }
220
+ window.onload = updateContent;
221
+ </script>
222
+
223
+ </body>
224
+ </html>