Changes to kahuna.scroll.pub

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

Transform Your Sales With AI-Powered Intelligence

+

Record, analyze, and optimize every sales interaction with Kahuna's intelligent platform

+
+
+
+
+
+
+
+
+

Key Features

+
+
+
+

Smart Recording

+

Automatically capture and transcribe every sales conversation

+
+
+
+

Performance Analytics

+

Get instant feedback and actionable insights

+
+
+
+

AI Follow-up

+

Automate lead nurturing and close more deals

+
+
+
+

Smart Dashboard

+

Track performance and revenue in real-time

+
+
+
+
+
+

Why Choose Kahuna

+
+
+

30% More Closes

+

AI-powered follow-up increases conversion rates

+
+
+

Save 5 Hours/Week

+

Automated documentation and follow-up

+
+
+

100% Coverage

+

Never miss another sales opportunity

+
+
+
+
+
+

Simple Pricing

+
+
+

Starter

+
$49/month
+
    +
  • Up to 3 users
  • +
  • 50 recordings/month
  • +
  • Basic analytics
  • +
  • Email support
  • +
    +
    +
    +
    +

    Professional

    +
    $99/month
    +
      +
    • Up to 10 users
    • +
    • 200 recordings/month
    • +
    • Advanced analytics
    • +
    • Priority support
    • +
      +
      +
      +
      +

      Enterprise

      +
      Custom
      +
        +
      • Unlimited users
      • +
      • Unlimited recordings
      • +
      • Custom integration
      • +
      • 24/7 support
      • +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +

        Product

        +
        +
        +

        Company

        +
        +
        +

        Resources

        + API
        +
        +
        +
        index.scroll
        Changed around line 1
        + buildHtml
        + baseUrl https://kahuna.scroll.pub
        + metaTags
        + editButton /edit.html
        + title Kahuna - AI-Powered Sales Performance & Follow-up System
        + style.css
        + body.html
        + script.js
        readme.scroll
        Changed around line 1
        + # kahuna.scroll.pub
        + Website generated by Claude from prompt: I want a website for my SAAS called Kahuna. Kahuna is an AI-powered performance tool that revolutionizes sales by recording meetings, transcribing conversations, and transforming them into actionable data. During a sales interaction, Kahuna captures every detail, including customer objections, interests, and next steps, and generates a dynamic report with performance feedback for the salesperson. This data is seamlessly integrated into Kahuna’s follow-up system, which uses conversational AI to engage unclosed leads, schedule follow-ups, or close deals directly by sending payment links and finalizing details. Sales teams can access an intuitive dashboard to track unsold revenue, monitor active follow-ups, and identify areas for improvement. By combining meeting insights with intelligent follow-up, Kahuna enhances sales team performance and ensures every opportunity is maximized.
        script.js
        Changed around line 1
        + document.addEventListener('DOMContentLoaded', function() {
        + // Mobile menu functionality
        + const mobileMenu = document.querySelector('.mobile-menu');
        + const navLinks = document.querySelector('.nav-links');
        +
        + mobileMenu.addEventListener('click', function() {
        + navLinks.style.display = navLinks.style.display === 'flex' ? 'none' : 'flex';
        + this.classList.toggle('active');
        + });
        +
        + // Smooth scroll for navigation links
        + document.querySelectorAll('a[href^="#"]').forEach(anchor => {
        + anchor.addEventListener('click', function (e) {
        + e.preventDefault();
        + document.querySelector(this.getAttribute('href')).scrollIntoView({
        + behavior: 'smooth'
        + });
        + });
        + });
        +
        + // Intersection Observer for fade-in animations
        + const observerOptions = {
        + threshold: 0.1,
        + rootMargin: '0px 0px -50px 0px'
        + };
        +
        + const observer = new IntersectionObserver((entries) => {
        + entries.forEach(entry => {
        + if (entry.isIntersecting) {
        + entry.target.classList.add('visible');
        + observer.unobserve(entry.target);
        + }
        + });
        + }, observerOptions);
        +
        + // Observe all sections
        + document.querySelectorAll('section').forEach(section => {
        + section.classList.add('fade-in');
        + observer.observe(section);
        + });
        +
        + // Add hover effect to feature cards
        + document.querySelectorAll('.feature-card').forEach(card => {
        + card.addEventListener('mouseenter', function() {
        + this.style.transform = 'translateY(-10px)';
        + });
        +
        + card.addEventListener('mouseleave', function() {
        + this.style.transform = 'translateY(0)';
        + });
        + });
        + });
        style.css
        Changed around line 1
        + :root {
        + --primary: #2563eb;
        + --primary-dark: #1d4ed8;
        + --secondary: #64748b;
        + --accent: #7c3aed;
        + --background: #ffffff;
        + --text: #1e293b;
        + --gray-light: #f1f5f9;
        + --gray-medium: #94a3b8;
        + --max-width: 1200px;
        + --radius: 12px;
        + --transition: all 0.3s ease;
        + }
        +
        + * {
        + margin: 0;
        + padding: 0;
        + box-sizing: border-box;
        + }
        +
        + html {
        + scroll-behavior: smooth;
        + }
        +
        + body {
        + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        + color: var(--text);
        + line-height: 1.6;
        + }
        +
        + /* Navigation */
        + header {
        + position: fixed;
        + width: 100%;
        + background: rgba(255, 255, 255, 0.95);
        + backdrop-filter: blur(10px);
        + z-index: 1000;
        + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        + }
        +
        + nav {
        + max-width: var(--max-width);
        + margin: 0 auto;
        + padding: 1rem 2rem;
        + display: flex;
        + justify-content: space-between;
        + align-items: center;
        + }
        +
        + .logo {
        + font-size: 1.5rem;
        + font-weight: 700;
        + color: var(--primary);
        + }
        +
        + .nav-links {
        + display: flex;
        + gap: 2rem;
        + align-items: center;
        + }
        +
        + .nav-links a {
        + text-decoration: none;
        + color: var(--text);
        + font-weight: 500;
        + transition: var(--transition);
        + }
        +
        + .nav-links a:hover {
        + color: var(--primary);
        + }
        +
        + /* Buttons */
        + .cta-button {
        + background: var(--primary);
        + color: white;
        + border: none;
        + padding: 0.75rem 1.5rem;
        + border-radius: var(--radius);
        + font-weight: 600;
        + cursor: pointer;
        + transition: var(--transition);
        + }
        +
        + .cta-button:hover {
        + background: var(--primary-dark);
        + transform: translateY(-2px);
        + }
        +
        + .secondary-button {
        + background: var(--gray-light);
        + color: var(--text);
        + border: none;
        + padding: 0.75rem 1.5rem;
        + border-radius: var(--radius);
        + font-weight: 600;
        + cursor: pointer;
        + transition: var(--transition);
        + }
        +
        + .secondary-button:hover {
        + background: var(--gray-medium);
        + color: white;
        + }
        +
        + /* Hero Section */
        + .hero {
        + min-height: 100vh;
        + display: flex;
        + align-items: center;
        + padding: 6rem 2rem 4rem;
        + background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        + }
        +
        + .hero-content {
        + max-width: 600px;
        + }
        +
        + .hero h1 {
        + font-size: 3.5rem;
        + line-height: 1.2;
        + margin-bottom: 1.5rem;
        + background: linear-gradient(to right, var(--primary), var(--accent));
        + -webkit-background-clip: text;
        + color: transparent;
        + }
        +
        + .hero p {
        + font-size: 1.25rem;
        + color: var(--secondary);
        + margin-bottom: 2rem;
        + }
        +
        + /* Features Section */
        + .features {
        + padding: 6rem 2rem;
        + max-width: var(--max-width);
        + margin: 0 auto;
        + }
        +
        + .features h2 {
        + text-align: center;
        + margin-bottom: 3rem;
        + font-size: 2.5rem;
        + }
        +
        + .feature-grid {
        + display: grid;
        + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        + gap: 2rem;
        + }
        +
        + .feature-card {
        + background: white;
        + padding: 2rem;
        + border-radius: var(--radius);
        + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        + transition: var(--transition);
        + }
        +
        + .feature-card:hover {
        + transform: translateY(-5px);
        + }
        +
        + /* Benefits Section */
        + .benefits {
        + background: var(--gray-light);
        + padding: 6rem 2rem;
        + }
        +
        + .benefits h2 {
        + text-align: center;
        + margin-bottom: 3rem;
        + font-size: 2.5rem;
        + }
        +
        + .benefits-container {
        + max-width: var(--max-width);
        + margin: 0 auto;
        + display: grid;
        + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        + gap: 2rem;
        + }
        +
        + /* Pricing Section */
        + .pricing {
        + padding: 6rem 2rem;
        + max-width: var(--max-width);
        + margin: 0 auto;
        + }
        +
        + .pricing h2 {
        + text-align: center;
        + margin-bottom: 3rem;
        + font-size: 2.5rem;
        + }
        +
        + .pricing-grid {
        + display: grid;
        + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        + gap: 2rem;
        + }
        +
        + .pricing-card {
        + background: white;
        + padding: 2rem;
        + border-radius: var(--radius);
        + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        + text-align: center;
        + }
        +
        + .pricing-card.featured {
        + border: 2px solid var(--primary);
        + transform: scale(1.05);
        + }
        +
        + .price {
        + font-size: 3rem;
        + font-weight: 700;
        + margin: 1.5rem 0;
        + }
        +
        + .price span {
        + font-size: 1rem;
        + color: var(--secondary);
        + }
        +
        + /* Footer */
        + footer {
        + background: var(--text);
        + color: white;
        + padding: 4rem 2rem;
        + }
        +
        + .footer-content {
        + max-width: var(--max-width);
        + margin: 0 auto;
        + display: grid;
        + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        + gap: 2rem;
        + }
        +
        + .footer-section h4 {
        + margin-bottom: 1rem;
        + }
        +
        + .footer-section a {
        + display: block;
        + color: var(--gray-medium);
        + text-decoration: none;
        + margin-bottom: 0.5rem;
        + transition: var(--transition);
        + }
        +
        + .footer-section a:hover {
        + color: white;
        + }
        +
        + /* Mobile Responsiveness */
        + .mobile-menu {
        + display: none;
        + }
        +
        + @media (max-width: 768px) {
        + .nav-links {
        + display: none;
        + }
        +
        + .mobile-menu {
        + display: flex;
        + flex-direction: column;
        + gap: 6px;
        + background: none;
        + border: none;
        + cursor: pointer;
        + }
        +
        + .mobile-menu span {
        + width: 25px;
        + height: 2px;
        + background: var(--text);
        + transition: var(--transition);
        + }
        +
        + .hero h1 {
        + font-size: 2.5rem;
        + }
        +
        + .pricing-card.featured {
        + transform: none;
        + }
        + }