|
|
|
// 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 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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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"> |
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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"> |
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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"> |
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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 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> |
|
|
|
document.addEventListener('DOMContentLoaded', function() { |
|
|
|
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); |
|
|
|
|
|
const cards = document.querySelectorAll('.card-hover'); |
|
cards.forEach(card => { |
|
card.addEventListener('mouseenter', () => { |
|
card.classList.add('glow'); |
|
}); |
|
card.addEventListener('mouseleave', () => { |
|
card.classList.remove('glow'); |
|
}); |
|
}); |
|
|
|
|
|
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> |