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