File size: 40,142 Bytes
e6cedc0 |
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 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 |
// src/pages/Home.jsx
import React from 'react';
import Header from '../components/Header/Header';
import Hero from '../components/Hero/Hero';
import Features from '../components/Features/Features';
import HowItWorks from '../components/HowItWorks/HowItWorks';
import Pricing from '../components/Pricing/Pricing';
import Testimonials from '../components/Testimonials/Testimonials';
import CTA from '../components/CTA/CTA';
import Footer from '../components/Footer/Footer';
const Home = () => {
return (
<div className="home">
<Header />
<main>
<Hero />
<Features />
<HowItWorks />
<Pricing />
<Testimonials />
<CTA />
</main>
<Footer />
</div>
);
};
export default Home;
// backend/controllers/authController.js
const jwt = require('jsonwebtoken');
const User = require('../models/User');
exports.register = async (req, res) => {
try {
const { name, email, password } = req.body;
// Check if user exists
let user = await User.findOne({ email });
if (user) {
return res.status(400).json({ message: 'User already exists' });
}
// Create new user
user = new User({ name, email, password });
await user.save();
// Generate token
const token = jwt.sign(
{ userId: user._id },
process.env.JWT_SECRET,
{ expiresIn: '7d' }
);
res.status(201).json({ token, user: { id: user._id, name: user.name, email: user.email } });
} catch (err) {
res.status(500).json({ message: 'Server error' });
}
};
exports.login = async (req, res) => {
try {
const { email, password } = req.body;
// Check if user exists
const user = await User.findOne({ email });
if (!user) {
return res.status(400).json({ message: 'Invalid credentials' });
}
// Check password
const isMatch = await user.comparePassword(password);
if (!isMatch) {
return res.status(400).json({ message: 'Invalid credentials' });
}
// Generate token
const token = jwt.sign(
{ userId: user._id },
process.env.JWT_SECRET,
{ expiresIn: '7d' }
);
res.json({ token, user: { id: user._id, name: user.name, email: user.email } });
} catch (err) {
res.status(500).json({ message: 'Server error' });
}
};
// backend/models/User.js
const mongoose = require('mongoose');
const bcrypt = require('bcrypt');
const userSchema = new mongoose.Schema({
name: { type: String, required: true },
email: { type: String, required: true, unique: true },
password: { type: String, required: true },
plan: {
type: String,
enum: ['free', 'pro', 'enterprise'],
default: 'free'
},
aiTasksUsed: { type: Number, default: 0 },
lastActive: { type: Date, default: Date.now }
}, { timestamps: true });
// Password hashing middleware
userSchema.pre('save', async function(next) {
if (!this.isModified('password')) return next();
this.password = await bcrypt.hash(this.password, 10);
next();
});
// Password verification method
userSchema.methods.comparePassword = async function(candidatePassword) {
return await bcrypt.compare(candidatePassword, this.password);
};
module.exports = mongoose.model('User', userSchema);
// backend/server.js
require('dotenv').config();
const express = require('express');
const mongoose = require('mongoose');
const cors = require('cors');
const authRoutes = require('./routes/authRoutes');
const userRoutes = require('./routes/userRoutes');
const aiRoutes = require('./routes/aiRoutes');
const app = express();
// Middleware
app.use(cors());
app.use(express.json());
// Database connection
mongoose.connect(process.env.MONGO_URI)
.then(() => console.log('Connected to MongoDB'))
.catch(err => console.error('MongoDB connection error:', err));
// Routes
app.use('/api/auth', authRoutes);
app.use('/api/users', userRoutes);
app.use('/api/ai', aiRoutes);
const PORT = process.env.PORT || 5000;
app.listen(PORT, () => console.log(`Server running on port ${PORT}`));
// src/components/Header/Header.jsx
import React from 'react';
import './Header.css';
import { FaBolt, FaBars } from 'react-icons/fa';
const Header = () => {
return (
<header className="header">
<div className="container">
<div className="logo">
<div className="logo-icon">
<FaBolt />
</div>
<span>Jolt<span>AI</span></span>
</div>
<nav className="nav">
<a href="#features">Features</a>
<a href="#how-it-works">How It Works</a>
<a href="#pricing">Pricing</a>
<a href="#testimonials">Testimonials</a>
</nav>
<div className="auth-buttons">
<button className="sign-in">Sign In</button>
<button className="get-started">Get Started</button>
<button className="mobile-menu">
<FaBars />
</button>
</div>
</div>
</header>
);
};
export default Header;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JoltAI - AI-Powered Productivity</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">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#6366f1',
secondary: '#8b5cf6',
dark: '#0f172a',
light: '#f8fafc'
},
fontFamily: {
sans: ['Inter', 'sans-serif']
}
}
}
}
</script>
<style>
.gradient-bg {
background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.feature-icon {
transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
transform: scale(1.1);
}
.animate-pulse-slow {
animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
.glow {
box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}
</style>
</head>
<body class="bg-light font-sans text-dark">
<!-- Header -->
<header class="sticky top-0 z-50 bg-white shadow-sm">
<div class="container mx-auto px-4 py-4 flex justify-between items-center">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center mr-3">
<i class="fas fa-bolt text-white text-xl"></i>
</div>
<span class="text-2xl font-bold text-primary">Jolt<span class="text-secondary">AI</span></span>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#features" class="font-medium hover:text-primary transition">Features</a>
<a href="#how-it-works" class="font-medium hover:text-primary transition">How It Works</a>
<a href="#pricing" class="font-medium hover:text-primary transition">Pricing</a>
<a href="#testimonials" class="font-medium hover:text-primary transition">Testimonials</a>
</nav>
<div class="flex items-center space-x-4">
<button class="hidden md:block px-4 py-2 font-medium rounded-lg hover:text-primary transition">Sign In</button>
<button class="px-5 py-2.5 bg-primary text-white font-medium rounded-lg hover:bg-indigo-700 transition transform hover:-translate-y-0.5">
Get Started
</button>
<button class="md:hidden text-2xl">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="py-16 md:py-24">
<div class="container mx-auto px-4 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 lg:text-6xl font-bold leading-tight mb-6">
Supercharge Your Productivity with <span class="text-primary">AI</span>
</h1>
<p class="text-lg text-gray-600 mb-8 max-w-lg">
JoltAI transforms how you work by automating repetitive tasks, generating content, and providing intelligent insights - all powered by cutting-edge artificial intelligence.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="px-8 py-4 bg-primary text-white font-medium rounded-lg hover:bg-indigo-700 transition transform hover:-translate-y-0.5 shadow-lg">
Start Free Trial
</button>
<button class="px-8 py-4 bg-white text-primary font-medium rounded-lg border border-primary hover:bg-indigo-50 transition">
<i class="fas fa-play-circle mr-2"></i> Watch Demo
</button>
</div>
</div>
<div class="md:w-1/2 relative">
<div class="relative">
<div class="absolute top-0 left-0 w-64 h-64 bg-purple-200 rounded-full mix-blend-multiply filter blur-xl opacity-30 animate-pulse-slow"></div>
<div class="absolute top-20 right-10 w-48 h-48 bg-indigo-200 rounded-full mix-blend-multiply filter blur-xl opacity-30 animate-pulse-slow"></div>
<div class="relative bg-white rounded-2xl shadow-xl p-6 border border-gray-100">
<div class="flex justify-between items-center mb-4">
<div class="flex space-x-2">
<div class="w-3 h-3 rounded-full bg-red-400"></div>
<div class="w-3 h-3 rounded-full bg-yellow-400"></div>
<div class="w-3 h-3 rounded-full bg-green-400"></div>
</div>
<div class="text-sm font-medium text-gray-500">JoltAI Assistant</div>
</div>
<div class="mb-4">
<div class="bg-indigo-50 rounded-lg p-4 mb-3 w-3/4">
<p class="text-gray-700">Can you help me draft a professional email to a client about delaying our project deadline?</p>
</div>
<div class="bg-white border border-gray-200 rounded-lg p-4 ml-auto w-4/5">
<p class="text-gray-700">Certainly! Here's a professional draft:</p>
<p class="mt-2 text-gray-600 italic">"Dear [Client Name], I hope this message finds you well. Due to unforeseen technical challenges, we'll need to extend the deadline for [Project Name] to [New Date]. We appreciate your understanding..."</p>
</div>
</div>
<div class="flex items-center mt-6">
<input type="text" placeholder="Ask JoltAI anything..." class="flex-1 border border-gray-300 rounded-l-lg py-3 px-4 focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent">
<button class="bg-primary text-white px-5 py-3 rounded-r-lg hover:bg-indigo-700 transition">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center max-w-2xl mx-auto mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Powerful Features</h2>
<p class="text-gray-600">Discover how JoltAI can transform your workflow with these advanced capabilities</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="feature-card bg-white rounded-2xl p-6 shadow-md card-hover">
<div class="w-16 h-16 gradient-bg rounded-xl flex items-center justify-center mb-6">
<i class="feature-icon fas fa-comment-dots text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Smart Content Generation</h3>
<p class="text-gray-600 mb-4">Create high-quality content in seconds - emails, reports, articles, and more with AI-powered writing assistance.</p>
<a href="#" class="text-primary font-medium flex items-center">
Learn more <i class="fas fa-arrow-right ml-2 text-sm"></i>
</a>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-white rounded-2xl p-6 shadow-md card-hover">
<div class="w-16 h-16 gradient-bg rounded-xl flex items-center justify-center mb-6">
<i class="feature-icon fas fa-robot text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Task Automation</h3>
<p class="text-gray-600 mb-4">Automate repetitive tasks and workflows to save hours each week and focus on what matters most.</p>
<a href="#" class="text-primary font-medium flex items-center">
Learn more <i class="fas fa-arrow-right ml-2 text-sm"></i>
</a>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-white rounded-2xl p-6 shadow-md card-hover">
<div class="w-16 h-16 gradient-bg rounded-xl flex items-center justify-center mb-6">
<i class="feature-icon fas fa-chart-line text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Data Insights</h3>
<p class="text-gray-600 mb-4">Transform raw data into actionable insights with AI-powered analytics and visualization tools.</p>
<a href="#" class="text-primary font-medium flex items-center">
Learn more <i class="fas fa-arrow-right ml-2 text-sm"></i>
</a>
</div>
<!-- Feature 4 -->
<div class="feature-card bg-white rounded-2xl p-6 shadow-md card-hover">
<div class="w-16 h-16 gradient-bg rounded-xl flex items-center justify-center mb-6">
<i class="feature-icon fas fa-code text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Code Assistance</h3>
<p class="text-gray-600 mb-4">Generate, debug, and optimize code faster with AI-powered suggestions across multiple languages.</p>
<a href="#" class="text-primary font-medium flex items-center">
Learn more <i class="fas fa-arrow-right ml-2 text-sm"></i>
</a>
</div>
<!-- Feature 5 -->
<div class="feature-card bg-white rounded-2xl p-6 shadow-md card-hover">
<div class="w-16 h-16 gradient-bg rounded-xl flex items-center justify-center mb-6">
<i class="feature-icon fas fa-language text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Multilingual Support</h3>
<p class="text-gray-600 mb-4">Work seamlessly across languages with real-time translation and localization capabilities.</p>
<a href="#" class="text-primary font-medium flex items-center">
Learn more <i class="fas fa-arrow-right ml-2 text-sm"></i>
</a>
</div>
<!-- Feature 6 -->
<div class="feature-card bg-white rounded-2xl p-6 shadow-md card-hover">
<div class="w-16 h-16 gradient-bg rounded-xl flex items-center justify-center mb-6">
<i class="feature-icon fas fa-shield-alt text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Enterprise Security</h3>
<p class="text-gray-600 mb-4">Military-grade encryption and compliance standards to keep your data safe and secure.</p>
<a href="#" class="text-primary font-medium flex items-center">
Learn more <i class="fas fa-arrow-right ml-2 text-sm"></i>
</a>
</div>
</div>
</div>
</section>
<!-- How It Works -->
<section id="how-it-works" class="py-16">
<div class="container mx-auto px-4">
<div class="text-center max-w-2xl mx-auto mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">How JoltAI Works</h2>
<p class="text-gray-600">Integrate AI into your workflow in just three simple steps</p>
</div>
<div class="flex flex-col md:flex-row items-center justify-between">
<div class="md:w-1/3 mb-10 md:mb-0 text-center px-6">
<div class="w-24 h-24 gradient-bg rounded-full flex items-center justify-center mx-auto mb-6">
<span class="text-white text-3xl font-bold">1</span>
</div>
<h3 class="text-xl font-bold mb-3">Connect Your Tools</h3>
<p class="text-gray-600">Integrate JoltAI with your favorite apps and services in just a few clicks.</p>
</div>
<div class="md:w-1/3 mb-10 md:mb-0 text-center px-6">
<div class="w-24 h-24 gradient-bg rounded-full flex items-center justify-center mx-auto mb-6">
<span class="text-white text-3xl font-bold">2</span>
</div>
<h3 class="text-xl font-bold mb-3">Define Your Tasks</h3>
<p class="text-gray-600">Tell JoltAI what you need help with using simple commands or templates.</p>
</div>
<div class="md:w-1/3 text-center px-6">
<div class="w-24 h-24 gradient-bg rounded-full flex items-center justify-center mx-auto mb-6">
<span class="text-white text-3xl font-bold">3</span>
</div>
<h3 class="text-xl font-bold mb-3">Get AI-Powered Results</h3>
<p class="text-gray-600">Receive high-quality outputs instantly, ready to use or customize.</p>
</div>
</div>
<div class="mt-16 text-center">
<button class="px-8 py-3 bg-white text-primary font-medium rounded-lg border border-primary hover:bg-indigo-50 transition flex items-center mx-auto">
<i class="fas fa-play mr-2"></i> See Full Demo
</button>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center max-w-2xl mx-auto mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Simple, Transparent Pricing</h2>
<p class="text-gray-600">Choose the plan that works best for you or your team</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Free Tier -->
<div class="bg-white rounded-2xl shadow-md overflow-hidden card-hover">
<div class="p-6 border-b border-gray-200">
<h3 class="text-xl font-bold mb-2">Starter</h3>
<div class="mb-4">
<span class="text-3xl font-bold">Free</span>
<span class="text-gray-600">forever</span>
</div>
<p class="text-gray-600">Perfect for individuals getting started with AI</p>
</div>
<div class="p-6">
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>100 AI tasks per month</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Basic content generation</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Email support</span>
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-times-circle mr-2"></i>
<span>Advanced features</span>
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-times-circle mr-2"></i>
<span>Team collaboration</span>
</li>
</ul>
<button class="w-full py-3 border border-primary text-primary font-medium rounded-lg hover:bg-indigo-50 transition">
Get Started
</button>
</div>
</div>
<!-- Pro Tier -->
<div class="bg-white rounded-2xl shadow-xl overflow-hidden card-hover relative border-2 border-primary">
<div class="absolute top-4 right-4 bg-primary text-white text-xs font-bold px-3 py-1 rounded-full">
MOST POPULAR
</div>
<div class="p-6 border-b border-gray-200">
<h3 class="text-xl font-bold mb-2">Professional</h3>
<div class="mb-4">
<span class="text-3xl font-bold">$29</span>
<span class="text-gray-600">/month</span>
</div>
<p class="text-gray-600">For professionals and small teams</p>
</div>
<div class="p-6">
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>2,000 AI tasks per month</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Advanced content generation</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Priority support</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Code assistance</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Team collaboration (up to 5)</span>
</li>
</ul>
<button class="w-full py-3 bg-primary text-white font-medium rounded-lg hover:bg-indigo-700 transition">
Start Free Trial
</button>
</div>
</div>
<!-- Enterprise Tier -->
<div class="bg-white rounded-2xl shadow-md overflow-hidden card-hover">
<div class="p-6 border-b border-gray-200">
<h3 class="text-xl font-bold mb-2">Enterprise</h3>
<div class="mb-4">
<span class="text-3xl font-bold">Custom</span>
</div>
<p class="text-gray-600">For large organizations with custom needs</p>
</div>
<div class="p-6">
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Unlimited AI tasks</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>All advanced features</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Dedicated support</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Custom integrations</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Unlimited team members</span>
</li>
</ul>
<button class="w-full py-3 border border-primary text-primary font-medium rounded-lg hover:bg-indigo-50 transition">
Contact Sales
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section id="testimonials" class="py-16">
<div class="container mx-auto px-4">
<div class="text-center max-w-2xl mx-auto mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Trusted by Thousands</h2>
<p class="text-gray-600">Hear what our users say about their experience with JoltAI</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-5xl mx-auto">
<!-- Testimonial 1 -->
<div class="bg-white rounded-2xl p-6 shadow-md">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gray-200 flex items-center justify-center mr-4">
<span class="text-lg font-bold">SJ</span>
</div>
<div>
<h4 class="font-bold">Sarah Johnson</h4>
<p class="text-gray-600 text-sm">Marketing Director</p>
</div>
</div>
<p class="text-gray-700 mb-4">
"JoltAI has transformed how our marketing team works. We're producing twice as much content in half the time, and the quality is exceptional."
</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-white rounded-2xl p-6 shadow-md">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gray-200 flex items-center justify-center mr-4">
<span class="text-lg font-bold">DR</span>
</div>
<div>
<h4 class="font-bold">David Rodriguez</h4>
<p class="text-gray-600 text-sm">Software Engineer</p>
</div>
</div>
<p class="text-gray-700 mb-4">
"The code assistance feature is a game-changer. It helps me debug faster and suggests optimizations I wouldn't have thought of."
</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-white rounded-2xl p-6 shadow-md">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gray-200 flex items-center justify-center mr-4">
<span class="text-lg font-bold">MC</span>
</div>
<div>
<h4 class="font-bold">Maya Chen</h4>
<p class="text-gray-600 text-sm">Startup Founder</p>
</div>
</div>
<p class="text-gray-700 mb-4">
"As a solo founder, JoltAI feels like having an extra team member. It handles everything from investor emails to data analysis."
</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 4 -->
<div class="bg-white rounded-2xl p-6 shadow-md">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gray-200 flex items-center justify-center mr-4">
<span class="text-lg font-bold">TK</span>
</div>
<div>
<h4 class="font-bold">Thomas Kim</h4>
<p class="text-gray-600 text-sm">Product Manager</p>
</div>
</div>
<p class="text-gray-700 mb-4">
"The automation features have saved our team at least 10 hours per week. The ROI is incredible for such an affordable tool."
</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 gradient-bg">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl md:text-4xl font-bold text-white mb-6">Ready to Transform Your Workflow?</h2>
<p class="text-indigo-100 max-w-2xl mx-auto mb-10">
Join thousands of professionals and teams who are already boosting their productivity with JoltAI
</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<button class="px-8 py-4 bg-white text-primary font-bold rounded-lg hover:bg-gray-100 transition shadow-lg">
Start Free Trial
</button>
<button class="px-8 py-4 bg-transparent border-2 border-white text-white font-bold rounded-lg hover:bg-white hover:text-primary transition">
Schedule a Demo
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-dark text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-6">
<div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center mr-3">
<i class="fas fa-bolt text-white text-xl"></i>
</div>
<span class="text-2xl font-bold text-white">Jolt<span class="text-secondary">AI</span></span>
</div>
<p class="text-gray-400 mb-6">
The AI-powered productivity platform that helps you work smarter, not harder.
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-linkedin"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-facebook"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-github"></i>
</a>
</div>
</div>
<div>
<h4 class="text-lg font-bold mb-6">Product</h4>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition">Features</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Solutions</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Pricing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Demo</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Roadmap</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-6">Resources</h4>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition">Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Tutorials</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Support</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">API</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-6">Company</h4>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Partners</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Legal</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500">
<p>© 2023 JoltAI. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Simple animation for demo purposes
document.addEventListener('DOMContentLoaded', function() {
// Add animation to hero section
const heroHeading = document.querySelector('h1');
heroHeading.classList.add('opacity-0');
setTimeout(() => {
heroHeading.classList.remove('opacity-0');
heroHeading.classList.add('transition-opacity', 'duration-1000', 'opacity-100');
}, 100);
// Add hover effect to cards
const cards = document.querySelectorAll('.card-hover');
cards.forEach(card => {
card.addEventListener('mouseenter', () => {
card.classList.add('glow');
});
card.addEventListener('mouseleave', () => {
card.classList.remove('glow');
});
});
// 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=tanerror/jolt-ai" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |