vikasrij commited on
Commit
987d6d2
·
verified ·
1 Parent(s): cc96402

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +322 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Askanalytics
3
- emoji: 🌖
4
- colorFrom: purple
5
- colorTo: blue
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: askanalytics
3
+ emoji: 🐳
4
+ colorFrom: gray
5
+ colorTo: purple
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,322 @@
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>Chat with Google Analytics & Search Console | Instant Insights</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ primary: '#4285F4',
15
+ accent: '#34A853',
16
+ dark: '#202124',
17
+ light: '#F8F9FA'
18
+ }
19
+ }
20
+ }
21
+ }
22
+ </script>
23
+ <style>
24
+ .hero-gradient {
25
+ background: linear-gradient(135deg, #F8F9FA 0%, #E8F0FE 100%);
26
+ }
27
+ .feature-icon {
28
+ width: 60px;
29
+ height: 60px;
30
+ display: flex;
31
+ align-items: center;
32
+ justify-content: center;
33
+ border-radius: 16px;
34
+ background-color: rgba(66, 133, 244, 0.1);
35
+ color: #4285F4;
36
+ font-size: 24px;
37
+ margin: 0 auto;
38
+ }
39
+ .chat-bubble {
40
+ position: relative;
41
+ background-color: #E8F0FE;
42
+ border-radius: 18px;
43
+ padding: 12px 18px;
44
+ max-width: 70%;
45
+ margin-bottom: 8px;
46
+ }
47
+ .chat-bubble:after {
48
+ content: '';
49
+ position: absolute;
50
+ bottom: 0;
51
+ left: 20px;
52
+ width: 0;
53
+ height: 0;
54
+ border: 10px solid transparent;
55
+ border-top-color: #E8F0FE;
56
+ border-bottom: 0;
57
+ margin-bottom: -10px;
58
+ }
59
+ .answer-bubble {
60
+ background-color: #4285F4;
61
+ color: white;
62
+ margin-left: auto;
63
+ }
64
+ .answer-bubble:after {
65
+ left: auto;
66
+ right: 20px;
67
+ border-top-color: #4285F4;
68
+ }
69
+ </style>
70
+ </head>
71
+ <body class="font-sans antialiased text-dark">
72
+ <!-- Navigation -->
73
+ <nav class="container mx-auto px-6 py-4">
74
+ <div class="flex justify-between items-center">
75
+ <div class="text-2xl font-bold text-primary">AskAnalytics</div>
76
+ <div>
77
+ <a href="#" class="px-6 py-2 bg-primary text-white rounded-md font-medium hover:bg-blue-600 transition">Request Early Access</a>
78
+ </div>
79
+ </div>
80
+ </nav>
81
+
82
+ <!-- Hero Section -->
83
+ <section class="hero-gradient py-20">
84
+ <div class="container mx-auto px-6">
85
+ <div class="flex flex-col md:flex-row items-center">
86
+ <div class="md:w-1/2 mb-12 md:mb-0">
87
+ <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-4">Stop Clicking, Start Asking</h1>
88
+ <p class="text-xl text-gray-600 mb-8">Get instant insights from Google Analytics and Search Console using natural language. Just connect your accounts and ask questions like you would to a colleague.</p>
89
+ <div class="flex flex-col sm:flex-row gap-4">
90
+ <a href="#" class="px-8 py-3 bg-primary text-white rounded-md font-medium text-center hover:bg-blue-600 transition">Request Early Access</a>
91
+ <a href="#" class="px-8 py-3 border border-gray-300 rounded-md font-medium text-center hover:bg-gray-50 transition">See How It Works</a>
92
+ </div>
93
+ </div>
94
+ <div class="md:w-1/2">
95
+ <div class="relative max-w-md mx-auto">
96
+ <div class="bg-white p-6 rounded-xl shadow-lg">
97
+ <div class="flex items-center mb-4">
98
+ <div class="w-8 h-8 rounded-full bg-primary bg-opacity-10 flex items-center justify-center text-primary mr-3">
99
+ <i class="fab fa-google"></i>
100
+ </div>
101
+ <div class="font-medium">Connected to Google Analytics & Search Console</div>
102
+ </div>
103
+ <div class="space-y-3 mb-4">
104
+ <div class="chat-bubble">What were my top landing pages last month?</div>
105
+ <div class="answer-bubble">
106
+ <div class="flex items-center mb-1">
107
+ <i class="fas fa-chart-line mr-2"></i>
108
+ <span class="font-medium">Top Landing Pages (May)</span>
109
+ </div>
110
+ <div class="text-sm">
111
+ 1. /blog/seo-tips (12,345 visits)<br>
112
+ 2. /pricing (8,765 visits)<br>
113
+ 3. /contact (5,432 visits)
114
+ </div>
115
+ </div>
116
+ </div>
117
+ <div class="border-t border-gray-100 pt-4">
118
+ <div class="relative">
119
+ <input type="text" placeholder="Ask a question about your data..." class="w-full pl-4 pr-12 py-2 border border-gray-300 rounded-full focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent">
120
+ <button class="absolute right-2 top-1/2 transform -translate-y-1/2 text-primary">
121
+ <i class="fas fa-paper-plane"></i>
122
+ </button>
123
+ </div>
124
+ </div>
125
+ </div>
126
+ </div>
127
+ </div>
128
+ </div>
129
+ </div>
130
+ </section>
131
+
132
+ <!-- Problem Section -->
133
+ <section class="py-16 bg-white">
134
+ <div class="container mx-auto px-6">
135
+ <div class="text-center max-w-3xl mx-auto">
136
+ <h2 class="text-3xl font-bold mb-6">Tired of Dashboard Fatigue?</h2>
137
+ <p class="text-xl text-gray-600 mb-8">Traditional analytics tools require you to navigate complex interfaces, build custom reports, and interpret data yourself. What if you could simply ask for exactly what you need and get a clear answer instantly?</p>
138
+ <div class="w-20 h-1 bg-primary mx-auto"></div>
139
+ </div>
140
+ </div>
141
+ </section>
142
+
143
+ <!-- How It Works -->
144
+ <section class="py-16 bg-gray-50">
145
+ <div class="container mx-auto px-6">
146
+ <div class="text-center mb-12">
147
+ <h2 class="text-3xl font-bold mb-4">How It Works</h2>
148
+ <p class="text-xl text-gray-600 max-w-2xl mx-auto">Three simple steps to instant insights</p>
149
+ </div>
150
+
151
+ <div class="grid md:grid-cols-3 gap-8">
152
+ <div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition">
153
+ <div class="feature-icon mb-6">
154
+ <i class="fas fa-plug"></i>
155
+ </div>
156
+ <h3 class="text-xl font-bold mb-3 text-center">1. Connect</h3>
157
+ <p class="text-gray-600 text-center">Securely link your Google Analytics and Search Console accounts in seconds.</p>
158
+ </div>
159
+
160
+ <div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition">
161
+ <div class="feature-icon mb-6">
162
+ <i class="fas fa-comment-dots"></i>
163
+ </div>
164
+ <h3 class="text-xl font-bold mb-3 text-center">2. Ask</h3>
165
+ <p class="text-gray-600 text-center">Type or speak your question in natural language, just like asking a colleague.</p>
166
+ </div>
167
+
168
+ <div class="bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition">
169
+ <div class="feature-icon mb-6">
170
+ <i class="fas fa-lightbulb"></i>
171
+ </div>
172
+ <h3 class="text-xl font-bold mb-3 text-center">3. Get Insights</h3>
173
+ <p class="text-gray-600 text-center">Receive clear, actionable answers with relevant data visualizations.</p>
174
+ </div>
175
+ </div>
176
+ </div>
177
+ </section>
178
+
179
+ <!-- Example Questions -->
180
+ <section class="py-16 bg-white">
181
+ <div class="container mx-auto px-6">
182
+ <div class="text-center mb-12">
183
+ <h2 class="text-3xl font-bold mb-4">Questions You Can Ask</h2>
184
+ <p class="text-xl text-gray-600 max-w-2xl mx-auto">Get instant answers to your most important questions</p>
185
+ </div>
186
+
187
+ <div class="grid md:grid-cols-2 gap-8 max-w-4xl mx-auto">
188
+ <div class="bg-gray-50 p-6 rounded-xl">
189
+ <div class="flex items-start mb-4">
190
+ <div class="w-10 h-10 rounded-full bg-primary bg-opacity-10 flex items-center justify-center text-primary mr-4 flex-shrink-0">
191
+ <i class="fas fa-chart-line"></i>
192
+ </div>
193
+ <div>
194
+ <h3 class="font-bold mb-1">"What was my traffic trend last week?"</h3>
195
+ <p class="text-gray-600 text-sm">Get an instant summary of key changes and notable patterns in your traffic.</p>
196
+ </div>
197
+ </div>
198
+ </div>
199
+
200
+ <div class="bg-gray-50 p-6 rounded-xl">
201
+ <div class="flex items-start mb-4">
202
+ <div class="w-10 h-10 rounded-full bg-accent bg-opacity-10 flex items-center justify-center text-accent mr-4 flex-shrink-0">
203
+ <i class="fas fa-bullseye"></i>
204
+ </div>
205
+ <div>
206
+ <h3 class="font-bold mb-1">"Which blog posts drove the most conversions?"</h3>
207
+ <p class="text-gray-600 text-sm">Receive a ranked list of your top-performing content by conversion rate.</p>
208
+ </div>
209
+ </div>
210
+ </div>
211
+
212
+ <div class="bg-gray-50 p-6 rounded-xl">
213
+ <div class="flex items-start mb-4">
214
+ <div class="w-10 h-10 rounded-full bg-primary bg-opacity-10 flex items-center justify-center text-primary mr-4 flex-shrink-0">
215
+ <i class="fas fa-calendar-alt"></i>
216
+ </div>
217
+ <div>
218
+ <h3 class="font-bold mb-1">"Compare organic traffic year-over-year."</h3>
219
+ <p class="text-gray-600 text-sm">Get clear comparisons without building complex reports.</p>
220
+ </div>
221
+ </div>
222
+ </div>
223
+
224
+ <div class="bg-gray-50 p-6 rounded-xl">
225
+ <div class="flex items-start mb-4">
226
+ <div class="w-10 h-10 rounded-full bg-accent bg-opacity-10 flex items-center justify-center text-accent mr-4 flex-shrink-0">
227
+ <i class="fas fa-search"></i>
228
+ </div>
229
+ <div>
230
+ <h3 class="font-bold mb-1">"Show me top queries for page X."</h3>
231
+ <p class="text-gray-600 text-sm">See combined Google Search Console and Analytics insights instantly.</p>
232
+ </div>
233
+ </div>
234
+ </div>
235
+ </div>
236
+ </div>
237
+ </section>
238
+
239
+ <!-- Testimonial -->
240
+ <section class="py-16 bg-gray-50">
241
+ <div class="container mx-auto px-6">
242
+ <div class="max-w-3xl mx-auto bg-white p-8 rounded-xl shadow-sm">
243
+ <div class="text-center">
244
+ <i class="fas fa-quote-left text-3xl text-gray-200 mb-4"></i>
245
+ <p class="text-xl text-gray-700 mb-6">"I used to spend hours each week pulling reports from GA and Search Console. Now I get answers in seconds by simply asking. It's like having an analytics expert on my team who's always available."</p>
246
+ <div class="flex items-center justify-center">
247
+ <div class="w-12 h-12 rounded-full bg-primary bg-opacity-10 flex items-center justify-center text-primary mr-4">
248
+ <i class="fas fa-user"></i>
249
+ </div>
250
+ <div>
251
+ <h4 class="font-bold">Michael Chen</h4>
252
+ <p class="text-gray-600">Director of Marketing, TechStart Inc.</p>
253
+ </div>
254
+ </div>
255
+ </div>
256
+ </div>
257
+ </div>
258
+ </section>
259
+
260
+ <!-- Final CTA -->
261
+ <section class="py-20 bg-primary text-white">
262
+ <div class="container mx-auto px-6 text-center">
263
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Unlock Your Data's Potential, the Easy Way</h2>
264
+ <p class="text-xl mb-8 max-w-2xl mx-auto opacity-90">Join the waitlist for early access to conversational analytics.</p>
265
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
266
+ <a href="#" class="px-8 py-3 bg-white text-primary rounded-md font-medium hover:bg-gray-100 transition">Request Early Access</a>
267
+ <a href="#" class="px-8 py-3 border border-white border-opacity-30 rounded-md font-medium hover:bg-white hover:bg-opacity-10 transition">See Demo</a>
268
+ </div>
269
+ </div>
270
+ </section>
271
+
272
+ <!-- Footer -->
273
+ <footer class="bg-dark text-gray-300 py-12">
274
+ <div class="container mx-auto px-6">
275
+ <div class="flex flex-col md:flex-row justify-between items-center">
276
+ <div class="text-2xl font-bold text-white mb-4 md:mb-0">AskAnalytics</div>
277
+ <div class="flex space-x-6">
278
+ <a href="#" class="hover:text-white transition">Privacy</a>
279
+ <a href="#" class="hover:text-white transition">Terms</a>
280
+ <a href="#" class="hover:text-white transition">Contact</a>
281
+ </div>
282
+ </div>
283
+ <div class="border-t border-gray-800 mt-8 pt-8 text-center">
284
+ <p>© 2023 AskAnalytics. All rights reserved.</p>
285
+ </div>
286
+ </div>
287
+ </footer>
288
+
289
+ <script>
290
+ // Simple animation for feature cards on scroll
291
+ document.addEventListener('DOMContentLoaded', function() {
292
+ const featureCards = document.querySelectorAll('.feature-icon');
293
+
294
+ const observer = new IntersectionObserver((entries) => {
295
+ entries.forEach(entry => {
296
+ if (entry.isIntersecting) {
297
+ entry.target.style.transform = 'scale(1)';
298
+ entry.target.style.opacity = '1';
299
+ }
300
+ });
301
+ }, {threshold: 0.1});
302
+
303
+ featureCards.forEach(card => {
304
+ card.style.transform = 'scale(0.8)';
305
+ card.style.opacity = '0';
306
+ card.style.transition = 'all 0.3s ease-out';
307
+ observer.observe(card);
308
+ });
309
+
310
+ // Smooth scrolling for anchor links
311
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
312
+ anchor.addEventListener('click', function (e) {
313
+ e.preventDefault();
314
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
315
+ behavior: 'smooth'
316
+ });
317
+ });
318
+ });
319
+ });
320
+ </script>
321
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=vikasrij/askanalytics" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
322
+ </html>