DjayChucko commited on
Commit
87c79d9
Β·
verified Β·
1 Parent(s): 46ce2dd

simple landing page about a "MEDDICC Scorecard"

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +191 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Meddicc Magic Meter
3
- emoji: πŸ“ˆ
4
- colorFrom: indigo
5
- colorTo: purple
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: MEDDICC Magic Meter πŸ§™β€β™‚οΈ
3
+ colorFrom: pink
4
+ colorTo: red
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
index.html CHANGED
@@ -1,19 +1,192 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>MEDDICC Scorecard | Transform Your Sales Strategy</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script>
12
+ tailwind.config = {
13
+ theme: {
14
+ extend: {
15
+ colors: {
16
+ primary: '#4F46E5',
17
+ secondary: '#10B981',
18
+ }
19
+ }
20
+ }
21
+ }
22
+ </script>
23
+ <style>
24
+ .gradient-bg {
25
+ background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
26
+ }
27
+ .pulse-animation {
28
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
29
+ }
30
+ @keyframes pulse {
31
+ 0%, 100% { opacity: 1; }
32
+ 50% { opacity: 0.5; }
33
+ }
34
+ </style>
35
+ </head>
36
+ <body class="font-sans antialiased bg-gray-50">
37
+ <!-- Hero Section -->
38
+ <div class="gradient-bg text-white">
39
+ <div class="container mx-auto px-6 py-24">
40
+ <div class="flex flex-col lg:flex-row items-center justify-between">
41
+ <div class="lg:w-1/2 mb-12 lg:mb-0">
42
+ <h1 class="text-4xl md:text-5xl font-bold mb-6">Master Your MEDDICC <span class="text-yellow-300">Scorecard</span></h1>
43
+ <p class="text-xl mb-8 opacity-90">The modern sales framework to qualify deals faster and close more revenue.</p>
44
+ <div class="flex flex-col sm:flex-row gap-4">
45
+ <button class="bg-white text-primary px-8 py-3 rounded-lg font-bold hover:bg-gray-100 transition duration-300 shadow-lg">
46
+ Get Started
47
+ </button>
48
+ <button class="bg-transparent border-2 border-white px-8 py-3 rounded-lg font-bold hover:bg-white hover:text-primary transition duration-300">
49
+ Learn More
50
+ </button>
51
+ </div>
52
+ </div>
53
+ <div class="lg:w-1/2">
54
+ <div class="bg-white/20 backdrop-blur-sm rounded-xl p-8 shadow-2xl">
55
+ <img src="http://static.photos/technology/640x360/42" alt="MEDDICC Scorecard" class="rounded-lg shadow-lg w-full h-auto">
56
+ </div>
57
+ </div>
58
+ </div>
59
+ </div>
60
+ </div>
61
+
62
+ <!-- What is MEDDICC Section -->
63
+ <div class="py-20 bg-white">
64
+ <div class="container mx-auto px-6">
65
+ <h2 class="text-3xl font-bold text-center mb-16 text-gray-800">What is <span class="text-primary">MEDDICC</span>?</h2>
66
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
67
+ <!-- Metric Card -->
68
+ <div class="bg-gray-50 p-6 rounded-xl hover:shadow-lg transition duration-300">
69
+ <div class="bg-primary/10 w-14 h-14 rounded-lg flex items-center justify-center mb-4">
70
+ <i data-feather="dollar-sign" class="text-primary w-6 h-6"></i>
71
+ </div>
72
+ <h3 class="text-xl font-bold mb-2 text-gray-800">Metrics</h3>
73
+ <p class="text-gray-600">Quantify the business impact and economic value of your solution.</p>
74
+ </div>
75
+
76
+ <!-- Economic Buyer Card -->
77
+ <div class="bg-gray-50 p-6 rounded-xl hover:shadow-lg transition duration-300">
78
+ <div class="bg-primary/10 w-14 h-14 rounded-lg flex items-center justify-center mb-4">
79
+ <i data-feather="user" class="text-primary w-6 h-6"></i>
80
+ </div>
81
+ <h3 class="text-xl font-bold mb-2 text-gray-800">Economic Buyer</h3>
82
+ <p class="text-gray-600">Identify and engage the person with budget authority.</p>
83
+ </div>
84
+
85
+ <!-- Decision Criteria Card -->
86
+ <div class="bg-gray-50 p-6 rounded-xl hover:shadow-lg transition duration-300">
87
+ <div class="bg-primary/10 w-14 h-14 rounded-lg flex items-center justify-center mb-4">
88
+ <i data-feather="check-circle" class="text-primary w-6 h-6"></i>
89
+ </div>
90
+ <h3 class="text-xl font-bold mb-2 text-gray-800">Decision Criteria</h3>
91
+ <p class="text-gray-600">Understand what factors influence the purchasing decision.</p>
92
+ </div>
93
+
94
+ <!-- Decision Process Card -->
95
+ <div class="bg-gray-50 p-6 rounded-xl hover:shadow-lg transition duration-300">
96
+ <div class="bg-primary/10 w-14 h-14 rounded-lg flex items-center justify-center mb-4">
97
+ <i data-feather="list" class="text-primary w-6 h-6"></i>
98
+ </div>
99
+ <h3 class="text-xl font-bold mb-2 text-gray-800">Decision Process</h3>
100
+ <p class="text-gray-600">Map out the steps required for the customer to make a decision.</p>
101
+ </div>
102
+
103
+ <!-- Identify Pain Card -->
104
+ <div class="bg-gray-50 p-6 rounded-xl hover:shadow-lg transition duration-300">
105
+ <div class="bg-primary/10 w-14 h-14 rounded-lg flex items-center justify-center mb-4">
106
+ <i data-feather="alert-triangle" class="text-primary w-6 h-6"></i>
107
+ </div>
108
+ <h3 class="text-xl font-bold mb-2 text-gray-800">Identify Pain</h3>
109
+ <p class="text-gray-600">Discover and quantify the challenges your solution addresses.</p>
110
+ </div>
111
+
112
+ <!-- Champion Card -->
113
+ <div class="bg-gray-50 p-6 rounded-xl hover:shadow-lg transition duration-300">
114
+ <div class="bg-primary/10 w-14 h-14 rounded-lg flex items-center justify-center mb-4">
115
+ <i data-feather="award" class="text-primary w-6 h-6"></i>
116
+ </div>
117
+ <h3 class="text-xl font-bold mb-2 text-gray-800">Champion</h3>
118
+ <p class="text-gray-600">Cultivate internal advocates who will promote your solution.</p>
119
+ </div>
120
+
121
+ <!-- Competition Card -->
122
+ <div class="bg-gray-50 p-6 rounded-xl hover:shadow-lg transition duration-300 col-span-full md:col-span-1 lg:col-span-1 mx-auto">
123
+ <div class="bg-primary/10 w-14 h-14 rounded-lg flex items-center justify-center mb-4">
124
+ <i data-feather="users" class="text-primary w-6 h-6"></i>
125
+ </div>
126
+ <h3 class="text-xl font-bold mb-2 text-gray-800">Competition</h3>
127
+ <p class="text-gray-600">Understand competitive alternatives and position effectively.</p>
128
+ </div>
129
+ </div>
130
+ </div>
131
+ </div>
132
+
133
+ <!-- CTA Section -->
134
+ <div class="py-20 bg-gray-100">
135
+ <div class="container mx-auto px-6 text-center">
136
+ <h2 class="text-3xl font-bold mb-6 text-gray-800">Ready to Transform Your Sales Process?</h2>
137
+ <p class="text-xl mb-10 text-gray-600 max-w-2xl mx-auto">Join thousands of sales professionals using MEDDICC to qualify deals faster and close more revenue.</p>
138
+ <button class="gradient-bg text-white px-10 py-4 rounded-lg font-bold hover:opacity-90 transition duration-300 shadow-lg pulse-animation">
139
+ Start Your Free Trial <i data-feather="arrow-right" class="inline ml-2 w-5 h-5"></i>
140
+ </button>
141
+ </div>
142
+ </div>
143
+
144
+ <!-- Footer -->
145
+ <footer class="bg-gray-900 text-white py-12">
146
+ <div class="container mx-auto px-6">
147
+ <div class="flex flex-col md:flex-row justify-between items-center">
148
+ <div class="mb-6 md:mb-0">
149
+ <h3 class="text-2xl font-bold">MEDDICC Magic Meter</h3>
150
+ <p class="text-gray-400 mt-2">Sales qualification made simple.</p>
151
+ </div>
152
+ <div class="flex space-x-6">
153
+ <a href="#" class="text-gray-400 hover:text-white transition duration-300">
154
+ <i data-feather="twitter" class="w-5 h-5"></i>
155
+ </a>
156
+ <a href="#" class="text-gray-400 hover:text-white transition duration-300">
157
+ <i data-feather="linkedin" class="w-5 h-5"></i>
158
+ </a>
159
+ <a href="#" class="text-gray-400 hover:text-white transition duration-300">
160
+ <i data-feather="github" class="w-5 h-5"></i>
161
+ </a>
162
+ </div>
163
+ </div>
164
+ <div class="border-t border-gray-800 mt-8 pt-8 flex flex-col md:flex-row justify-between">
165
+ <p class="text-gray-400 mb-4 md:mb-0">Β© 2023 MEDDICC Magic Meter. All rights reserved.</p>
166
+ <div class="flex space-x-6">
167
+ <a href="#" class="text-gray-400 hover:text-white transition duration-300">Privacy Policy</a>
168
+ <a href="#" class="text-gray-400 hover:text-white transition duration-300">Terms of Service</a>
169
+ <a href="#" class="text-gray-400 hover:text-white transition duration-300">Contact Us</a>
170
+ </div>
171
+ </div>
172
+ </div>
173
+ </footer>
174
+
175
+ <script>
176
+ feather.replace();
177
+
178
+ // Simple animation for the hero section
179
+ document.addEventListener('DOMContentLoaded', function() {
180
+ const heroTitle = document.querySelector('h1');
181
+ heroTitle.style.transform = 'translateY(20px)';
182
+ heroTitle.style.opacity = '0';
183
+
184
+ setTimeout(() => {
185
+ heroTitle.style.transition = 'transform 0.6s ease-out, opacity 0.6s ease-out';
186
+ heroTitle.style.transform = 'translateY(0)';
187
+ heroTitle.style.opacity = '1';
188
+ }, 100);
189
+ });
190
+ </script>
191
+ </body>
192
  </html>