Spaces:
Running
Running
Manual changes saved
Browse files- academy.html +52 -98
academy.html
CHANGED
|
@@ -3,41 +3,28 @@
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
-
<meta name="description" content="McGPT Sales
|
| 7 |
-
<title>
|
| 8 |
-
<link rel="icon" type="image/x-icon" href="
|
| 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 |
-
theme: {
|
| 17 |
-
extend: {
|
| 18 |
-
colors: {
|
| 19 |
-
primary: '#6366f1',
|
| 20 |
-
secondary: '#8b5cf6',
|
| 21 |
-
}
|
| 22 |
-
}
|
| 23 |
-
}
|
| 24 |
}
|
| 25 |
</script>
|
| 26 |
<style>
|
| 27 |
body { font-family: 'Poppins', sans-serif; }
|
| 28 |
-
.
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
}
|
| 32 |
-
.
|
| 33 |
-
@apply transition-all duration-300 hover:scale-105 hover:shadow-xl;
|
| 34 |
-
}
|
| 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-[#3D1862] min-h-screen flex flex-col
|
| 41 |
|
| 42 |
<header class="sticky top-0 z-50 bg-purple-800/80 backdrop-blur-md shadow-sm">
|
| 43 |
<div class="container mx-auto px-4 py-3">
|
|
@@ -50,91 +37,54 @@
|
|
| 50 |
<a href="index.html" class="nav-link py-2 px-1 text-white hover:text-purple-300 transition-colors">Home</a>
|
| 51 |
<a href="value-mapper.html" class="nav-link py-2 px-1 text-white hover:text-purple-300 transition-colors">Mapper</a>
|
| 52 |
<a href="scorecard.html" class="nav-link py-2 px-1 text-white hover:text-purple-300 transition-colors">Scorecard</a>
|
| 53 |
-
<a href="strategy.html" class="nav-link py-2 px-1 text-white
|
| 54 |
-
<a href="academy.html" class="nav-link active py-2 px-1 text-white">Academy</a>
|
| 55 |
</nav>
|
| 56 |
<div class="flex items-center space-x-4">
|
| 57 |
<button id="themeToggle" class="p-2 rounded-full text-white">
|
| 58 |
<i data-feather="moon"></i>
|
| 59 |
</button>
|
| 60 |
-
<button id="mobileMenuButton" class="md:hidden flex flex-col space-y-1.5 p-2
|
| 61 |
<span class="hamburger-line"></span>
|
| 62 |
<span class="hamburger-line"></span>
|
| 63 |
<span class="hamburger-line"></span>
|
| 64 |
</button>
|
| 65 |
</div>
|
| 66 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 67 |
</div>
|
| 68 |
</header>
|
| 69 |
|
| 70 |
-
<div id="mobileMenu" class="hidden fixed inset-0 z-40 bg-purple-900">
|
| 71 |
-
<div class="flex flex-col items-center justify-center h-full space-y-8">
|
| 72 |
-
<a href="index.html" class="nav-link text-2xl text-white">Home</a>
|
| 73 |
-
<a href="value-mapper.html" class="nav-link text-2xl text-white">Mapper</a>
|
| 74 |
-
<a href="scorecard.html" class="nav-link text-2xl text-white">Scorecard</a>
|
| 75 |
-
<a href="strategy.html" class="nav-link text-2xl text-white">Method</a>
|
| 76 |
-
<a href="academy.html" class="nav-link text-2xl text-white">Academy</a>
|
| 77 |
-
</div>
|
| 78 |
-
</div>
|
| 79 |
-
|
| 80 |
<main class="flex-grow">
|
| 81 |
-
<
|
| 82 |
-
<div class="
|
| 83 |
-
<
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
</h1>
|
| 87 |
-
<p class="text-xl mb-8 text-purple-200 max-w-3xl mx-auto">
|
| 88 |
-
Continuous learning and development to sharpen your skills and stay ahead of the competition
|
| 89 |
-
</p>
|
| 90 |
-
</div>
|
| 91 |
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
</
|
| 101 |
-
|
| 102 |
-
<div class="bg-white/10 rounded-xl p-8 backdrop-blur-sm border border-white/10 card-hover">
|
| 103 |
-
<div class="w-14 h-14 bg-purple-500/20 rounded-lg flex items-center justify-center mb-6">
|
| 104 |
-
<i data-feather="bar-chart-2" class="text-purple-300"></i>
|
| 105 |
-
</div>
|
| 106 |
-
<h3 class="text-xl font-bold mb-3 text-white">Advanced Tactics</h3>
|
| 107 |
-
<p class="text-purple-200">Elevate your game with advanced negotiation and deal strategy techniques</p>
|
| 108 |
-
<a href="https://scaleway.360learning.com" class="mt-4 inline-block text-purple-300 hover:text-white transition-colors">View Courses →</a>
|
| 109 |
-
</div>
|
| 110 |
-
|
| 111 |
-
<div class="bg-white/10 rounded-xl p-8 backdrop-blur-sm border border-white/10 card-hover">
|
| 112 |
-
<div class="w-14 h-14 bg-purple-500/20 rounded-lg flex items-center justify-center mb-6">
|
| 113 |
-
<i data-feather="award" class="text-purple-300"></i>
|
| 114 |
-
</div>
|
| 115 |
-
<h3 class="text-xl font-bold mb-3 text-white">Certification Paths</h3>
|
| 116 |
-
<p class="text-purple-200">Get certified in our methodology and showcase your expertise</p>
|
| 117 |
-
<a href="https://scaleway.360learning.com" class="mt-4 inline-block text-purple-300 hover:text-white transition-colors">View Paths →</a>
|
| 118 |
-
</div>
|
| 119 |
</div>
|
| 120 |
|
| 121 |
-
<div class="
|
| 122 |
-
<
|
| 123 |
-
|
| 124 |
-
<h2 class="text-3xl font-bold mb-4 text-white">Featured Course</h2>
|
| 125 |
-
<h3 class="text-2xl font-bold mb-2 text-purple-300">MEDDICC Mastery</h3>
|
| 126 |
-
<p class="text-purple-200 mb-6">Learn how to effectively implement the MEDDICC qualification framework in your deals</p>
|
| 127 |
-
<a href="https://scaleway.360learning.com" class="bg-[#9B5CEB] hover:bg-purple-500 text-white px-6 py-2 rounded-lg font-semibold transition-colors shadow-lg inline-block">
|
| 128 |
-
Enroll Now
|
| 129 |
-
</a>
|
| 130 |
-
</div>
|
| 131 |
-
<div class="hidden md:block">
|
| 132 |
-
<img src="https://huggingface.co/spaces/DjayChucko/EnablingSales/resolve/main/images/MediaEntertainment-Illustration-transparent.png" alt="Course Illustration" class="w-full h-auto rounded-lg">
|
| 133 |
-
</div>
|
| 134 |
-
</div>
|
| 135 |
</div>
|
| 136 |
</div>
|
| 137 |
-
</
|
| 138 |
</main>
|
| 139 |
|
| 140 |
<footer class="bg-purple-800/80 backdrop-blur-sm border-t border-purple-700/50">
|
|
@@ -148,24 +98,28 @@
|
|
| 148 |
<script>
|
| 149 |
feather.replace();
|
| 150 |
|
| 151 |
-
// Mobile Menu Toggle
|
| 152 |
const mobileMenuButton = document.getElementById('mobileMenuButton');
|
| 153 |
const mobileMenu = document.getElementById('mobileMenu');
|
| 154 |
mobileMenuButton.addEventListener('click', () => {
|
| 155 |
mobileMenu.classList.toggle('hidden');
|
| 156 |
mobileMenuButton.classList.toggle('open');
|
| 157 |
-
document.body.classList.toggle('overflow-hidden');
|
| 158 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 159 |
|
| 160 |
-
|
| 161 |
-
|
| 162 |
-
|
| 163 |
-
|
| 164 |
-
if (linkHref === currentPage) {
|
| 165 |
-
link.classList.add('active');
|
| 166 |
-
} else {
|
| 167 |
-
link.classList.remove('active');
|
| 168 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 169 |
});
|
| 170 |
</script>
|
| 171 |
|
|
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<meta name="description" content="McGPT - Our Sales Methodology">
|
| 7 |
+
<title>Our Method | McGPT</title>
|
| 8 |
+
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
| 9 |
<script src="https://cdn.tailwindcss.com"></script>
|
| 10 |
+
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&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 { width: 20px; height: 2px; background-color: white; display: block; transition: all 0.3s; }
|
| 21 |
+
.open .hamburger-line:nth-child(1) { transform: translateY(5px) rotate(45deg); }
|
| 22 |
+
.open .hamburger-line:nth-child(2) { opacity: 0; }
|
| 23 |
+
.open .hamburger-line:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
|
| 24 |
+
.nav-link.active { font-weight: 600; border-bottom: 2px solid #8b5cf6; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
</style>
|
| 26 |
</head>
|
| 27 |
+
<body class="bg-[#3D1862] text-white min-h-screen flex flex-col" 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%);">
|
| 28 |
|
| 29 |
<header class="sticky top-0 z-50 bg-purple-800/80 backdrop-blur-md shadow-sm">
|
| 30 |
<div class="container mx-auto px-4 py-3">
|
|
|
|
| 37 |
<a href="index.html" class="nav-link py-2 px-1 text-white hover:text-purple-300 transition-colors">Home</a>
|
| 38 |
<a href="value-mapper.html" class="nav-link py-2 px-1 text-white hover:text-purple-300 transition-colors">Mapper</a>
|
| 39 |
<a href="scorecard.html" class="nav-link py-2 px-1 text-white hover:text-purple-300 transition-colors">Scorecard</a>
|
| 40 |
+
<a href="strategy.html" class="nav-link active py-2 px-1 text-white">Method</a>
|
|
|
|
| 41 |
</nav>
|
| 42 |
<div class="flex items-center space-x-4">
|
| 43 |
<button id="themeToggle" class="p-2 rounded-full text-white">
|
| 44 |
<i data-feather="moon"></i>
|
| 45 |
</button>
|
| 46 |
+
<button id="mobileMenuButton" class="md:hidden flex flex-col space-y-1.5 p-2 bg-[#9B5CEB] rounded-lg">
|
| 47 |
<span class="hamburger-line"></span>
|
| 48 |
<span class="hamburger-line"></span>
|
| 49 |
<span class="hamburger-line"></span>
|
| 50 |
</button>
|
| 51 |
</div>
|
| 52 |
</div>
|
| 53 |
+
<div id="mobileMenu" class="hidden md:hidden py-4 border-t border-gray-200 dark:border-gray-700 mt-3">
|
| 54 |
+
<div class="flex flex-col space-y-3">
|
| 55 |
+
<a href="index.html" class="py-2 px-1 text-white">Home</a>
|
| 56 |
+
<a href="value-mapper.html" class="py-2 px-1 text-white">Mapper</a>
|
| 57 |
+
<a href="scorecard.html" class="py-2 px-1 text-white">Scorecard</a>
|
| 58 |
+
<a href="strategy.html" class="py-2 px-1 text-white font-semibold">Method</a>
|
| 59 |
+
</div>
|
| 60 |
+
</div>
|
| 61 |
</div>
|
| 62 |
</header>
|
| 63 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 64 |
<main class="flex-grow">
|
| 65 |
+
<div class="container mx-auto px-4 py-16">
|
| 66 |
+
<div class="text-center mb-12">
|
| 67 |
+
<h1 class="text-4xl font-extrabold text-white">Our Value-Centric Strategy</h1>
|
| 68 |
+
<p class="mt-4 text-lg text-purple-200">A structured approach to modern B2B sales.</p>
|
| 69 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
|
| 71 |
+
<div id="content-container" class="max-w-4xl mx-auto space-y-8">
|
| 72 |
+
<div class="content-block bg-white/10 backdrop-blur-md border border-white/10 p-8 rounded-xl shadow-lg">
|
| 73 |
+
<h2 class="text-2xl font-bold text-purple-300 mb-4">Phase 1: Discovery & Qualification</h2>
|
| 74 |
+
<p class="text-purple-100">This initial phase is about deep listening and understanding. We use tools like the Value Mapper to connect a prospect's challenges to our core strengths. The goal is not to sell, but to diagnose. By the end of this phase, we should have a clear understanding of the customer's pain and the potential metrics for success.</p>
|
| 75 |
+
</div>
|
| 76 |
+
|
| 77 |
+
<div class="content-block bg-white/10 backdrop-blur-md border border-white/10 p-8 rounded-xl shadow-lg">
|
| 78 |
+
<h2 class="text-2xl font-bold text-purple-300 mb-4">Phase 2: Building the Business Case</h2>
|
| 79 |
+
<p class="text-purple-100">Once a legitimate pain is identified, we transition to quantifying the value of our solution. This involves co-creating a business case with our champion, aligning our technical solution to measurable business outcomes. The MEDDICC Scorecard becomes critical here to track our alignment with the key people and processes involved in the decision.</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 80 |
</div>
|
| 81 |
|
| 82 |
+
<div class="content-block bg-white/10 backdrop-blur-md border border-white/10 p-8 rounded-xl shadow-lg">
|
| 83 |
+
<h2 class="text-2xl font-bold text-purple-300 mb-4">Phase 3: Evaluation & Justification</h2>
|
| 84 |
+
<p class="text-purple-100">In this phase, we prove our claims through a PoC or detailed evaluation. Success is not just technical validation, but demonstrating the agreed-upon business value. We focus on differentiating against the competition and mitigating any perceived risks or blockers, ensuring our champion is equipped to justify the investment to the Economic Buyer.</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 85 |
</div>
|
| 86 |
</div>
|
| 87 |
+
</div>
|
| 88 |
</main>
|
| 89 |
|
| 90 |
<footer class="bg-purple-800/80 backdrop-blur-sm border-t border-purple-700/50">
|
|
|
|
| 98 |
<script>
|
| 99 |
feather.replace();
|
| 100 |
|
| 101 |
+
// --- Mobile Menu Toggle ---
|
| 102 |
const mobileMenuButton = document.getElementById('mobileMenuButton');
|
| 103 |
const mobileMenu = document.getElementById('mobileMenu');
|
| 104 |
mobileMenuButton.addEventListener('click', () => {
|
| 105 |
mobileMenu.classList.toggle('hidden');
|
| 106 |
mobileMenuButton.classList.toggle('open');
|
|
|
|
| 107 |
});
|
| 108 |
+
|
| 109 |
+
// --- Randomize Content on Refresh ---
|
| 110 |
+
document.addEventListener('DOMContentLoaded', () => {
|
| 111 |
+
const container = document.getElementById('content-container');
|
| 112 |
+
const blocks = Array.from(container.querySelectorAll('.content-block'));
|
| 113 |
|
| 114 |
+
// Fisher-Yates Shuffle Algorithm
|
| 115 |
+
for (let i = blocks.length - 1; i > 0; i--) {
|
| 116 |
+
const j = Math.floor(Math.random() * (i + 1));
|
| 117 |
+
[blocks[i], blocks[j]] = [blocks[j], blocks[i]];
|
|
|
|
|
|
|
|
|
|
|
|
|
| 118 |
}
|
| 119 |
+
|
| 120 |
+
// Clear container and append shuffled blocks
|
| 121 |
+
container.innerHTML = '';
|
| 122 |
+
blocks.forEach(block => container.appendChild(block));
|
| 123 |
});
|
| 124 |
</script>
|
| 125 |
|