Changes to salesai.scroll.pub

root
root
26 days ago
Initial commit
body.html
Changed around line 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Transform Sales Meetings Into Revenue

+

AI-powered meeting intelligence to close more deals and maximize team performance

+
+
+
+
+
+
+

Key Features

+
+
+
📊
+

Smart Analytics

+

Track revenue opportunities, success rates, and objection patterns in real-time

+
+
+
🎯
+

AI Insights

+

Get actionable feedback to improve sales strategies and close rates

+
+
+
🤖
+

Automated Follow-ups

+

Re-engage leads with AI-driven personalized messages

+
+
+
💡
+

Performance Tracking

+

Monitor team metrics and identify improvement opportunities

+
+
+
+
+
+
+
+

Why Choose Kahuna

+
+
+

Close More Deals

+

Increase win rates with data-driven insights and automated follow-ups

+
+
+

Save Time

+

Automate meeting analysis and follow-up tasks

+
+
+

Improve Performance

+

Get real-time feedback and coaching for better results

+
+
+
+
+
+
+
+

Ready to Transform Your Sales Process?

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://salesai.scroll.pub
+ metaTags
+ editButton /edit.html
+ title Kahuna | AI-Powered Sales Meeting Intelligence
+ style.css
+ body.html
+ script.js
readme.scroll
Changed around line 1
+ # salesai.scroll.pub
+ Website generated by Claude from prompt: Kahuna is a powerful tool designed to help sales teams turn meetings into clear insights and better follow-ups. It records and analyzes every meeting, tracking important metrics like missed revenue, follow-up success rates, and common objections. With this information, sales teams get real-time feedback to improve their strategies and close more deals. Kahuna also uses AI to re-engage unclosed leads, sending personalized messages to move deals forward. By combining smart data tracking, helpful feedback, and AI-driven follow-ups, Kahuna helps sales teams work smarter, close faster, and win more business.
script.js
Changed around line 1
+ document.addEventListener('DOMContentLoaded', () => {
+ // Mobile Navigation Toggle
+ const navToggle = document.querySelector('.nav-toggle');
+ const navLinks = document.querySelector('.nav-links');
+
+ navToggle.addEventListener('click', () => {
+ navLinks.classList.toggle('active');
+
+ // Animate hamburger to X
+ const spans = navToggle.querySelectorAll('span');
+ spans.forEach(span => span.classList.toggle('active'));
+ });
+
+ // Smooth Scroll for Navigation Links
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
+ anchor.addEventListener('click', function (e) {
+ e.preventDefault();
+ const target = document.querySelector(this.getAttribute('href'));
+
+ if (target) {
+ target.scrollIntoView({
+ behavior: 'smooth',
+ block: 'start'
+ });
+
+ // Close mobile menu if open
+ navLinks.classList.remove('active');
+ }
+ });
+ });
+
+ // Form Submission
+ const contactForm = document.getElementById('contact-form');
+
+ contactForm.addEventListener('submit', (e) => {
+ e.preventDefault();
+ const email = contactForm.querySelector('input[type="email"]').value;
+
+ // Normally would send to server - here just show success message
+ alert('Thank you for your interest! We will contact you soon.');
+ contactForm.reset();
+ });
+
+ // Intersection Observer for Animations
+ const observer = new IntersectionObserver((entries) => {
+ entries.forEach(entry => {
+ if (entry.isIntersecting) {
+ entry.target.classList.add('visible');
+ }
+ });
+ }, {
+ threshold: 0.1
+ });
+
+ // Observe all feature cards and benefits
+ document.querySelectorAll('.feature-card, .benefit').forEach((el) => {
+ observer.observe(el);
+ });
+ });
style.css
Changed around line 1
+ :root {
+ --primary: #2563eb;
+ --secondary: #1e40af;
+ --text: #1f2937;
+ --background: #ffffff;
+ --accent: #dbeafe;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ color: var(--text);
+ line-height: 1.6;
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 2rem;
+ }
+
+ /* Header & Navigation */
+ header {
+ background: var(--background);
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 2rem;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ color: var(--primary);
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text);
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ .nav-toggle {
+ display: none;
+ }
+
+ /* Hero Section */
+ .hero {
+ padding: 8rem 0 4rem;
+ background: linear-gradient(135deg, var(--accent), var(--background));
+ text-align: center;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(to right, var(--primary), var(--secondary));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .hero p {
+ font-size: 1.25rem;
+ margin-bottom: 2rem;
+ }
+
+ /* Features Section */
+ .features {
+ padding: 4rem 0;
+ background: var(--background);
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .feature-card {
+ padding: 2rem;
+ border-radius: 1rem;
+ background: white;
+ box-shadow: 0 4px 20px rgba(0,0,0,0.05);
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ /* Benefits Section */
+ .benefits {
+ padding: 4rem 0;
+ background: var(--accent);
+ }
+
+ .benefits-wrapper {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .benefit {
+ text-align: center;
+ padding: 2rem;
+ }
+
+ /* Contact Section */
+ .contact {
+ padding: 4rem 0;
+ text-align: center;
+ background: var(--background);
+ }
+
+ #contact-form {
+ display: flex;
+ gap: 1rem;
+ max-width: 500px;
+ margin: 2rem auto;
+ }
+
+ input[type="email"] {
+ flex: 1;
+ padding: 0.75rem 1rem;
+ border: 2px solid var(--accent);
+ border-radius: 0.5rem;
+ font-size: 1rem;
+ }
+
+ /* Buttons */
+ .cta-button {
+ background: var(--primary);
+ color: white;
+ border: none;
+ padding: 0.75rem 2rem;
+ border-radius: 0.5rem;
+ font-size: 1rem;
+ font-weight: 600;
+ cursor: pointer;
+ transition: background-color 0.3s ease;
+ }
+
+ .cta-button:hover {
+ background: var(--secondary);
+ }
+
+ /* Footer */
+ footer {
+ background: var(--text);
+ color: white;
+ padding: 2rem 0;
+ }
+
+ .footer-content {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ transition: opacity 0.3s ease;
+ }
+
+ .footer-links a:hover {
+ opacity: 0.8;
+ }
+
+ /* Mobile Responsiveness */
+ @media (max-width: 768px) {
+ .nav-toggle {
+ display: block;
+ cursor: pointer;
+ }
+
+ .nav-toggle span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background: var(--text);
+ margin: 5px 0;
+ transition: 0.3s;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: var(--background);
+ padding: 1rem;
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ #contact-form {
+ flex-direction: column;
+ padding: 0 1rem;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ gap: 1rem;
+ text-align: center;
+ }
+ }