Changes to salesgenius.scroll.pub

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

Transform Sales Meetings Into Revenue

+

AI-powered meeting intelligence that helps sales teams close more deals

+
+
+
+
+
+
+
+

Powerful Features

+
+
+
+
+
+

Smart Recording

+

Automatically capture and analyze every sales conversation

+
+
+
+
+
+

Revenue Analytics

+

Track missed opportunities and optimize your sales approach

+
+
+
+
+
+

AI Follow-ups

+

Intelligent re-engagement of unclosed leads

+
+
+
+
+
+

Why Choose Kahuna

+
+
+

30% More Closes

+

Improve your success rate with data-driven insights

+
+
+

50% Faster Follow-ups

+

Automated AI assistance keeps deals moving forward

+
+
+

100% Meeting Coverage

+

Never miss a crucial detail or opportunity

+
+
+
+
+
+

See Kahuna in Action

+
+
+

Request a Demo

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Kahuna

+

Sales meeting intelligence for modern teams

+
+
+

Links

+
    +
    +
    +
    +

    Contact

    +

    hello@kahuna.com

    +

    1-800-KAHUNA

    +
    +
    +
    index.scroll
    Changed around line 1
    + buildHtml
    + baseUrl https://salesgenius.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
    + # salesgenius.scroll.pub
    + Website generated by Claude from prompt: Website for my start up named kahuna. 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', () => {
    + // 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'
    + });
    + });
    + });
    +
    + // Mobile navigation toggle
    + const navToggle = document.querySelector('.nav-toggle');
    + const navLinks = document.querySelector('.nav-links');
    +
    + navToggle.addEventListener('click', () => {
    + navLinks.style.display = navLinks.style.display === 'flex' ? 'none' : 'flex';
    + });
    +
    + // Form submission handling
    + const demoForm = document.getElementById('demoForm');
    + demoForm.addEventListener('submit', (e) => {
    + e.preventDefault();
    + const formData = new FormData(demoForm);
    + // Here you would typically send the form data to a server
    + alert('Thanks for your interest! We\'ll be in touch soon.');
    + demoForm.reset();
    + });
    +
    + // Intersection Observer for animation
    + const observer = new IntersectionObserver((entries) => {
    + entries.forEach(entry => {
    + if (entry.isIntersecting) {
    + entry.target.classList.add('animate');
    + }
    + });
    + }, {
    + threshold: 0.1
    + });
    +
    + 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;
    + --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    + }
    +
    + * {
    + 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;
    + }
    +
    + .navbar {
    + display: flex;
    + justify-content: space-between;
    + align-items: center;
    + padding: 1rem 5%;
    + background: var(--background);
    + position: fixed;
    + width: 100%;
    + top: 0;
    + z-index: 1000;
    + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    + }
    +
    + .logo {
    + font-size: 1.8rem;
    + font-weight: 700;
    + background: var(--gradient);
    + -webkit-background-clip: text;
    + -webkit-text-fill-color: transparent;
    + }
    +
    + .nav-links {
    + display: flex;
    + gap: 2rem;
    + list-style: none;
    + }
    +
    + .nav-links a {
    + text-decoration: none;
    + color: var(--text);
    + font-weight: 500;
    + transition: color 0.3s ease;
    + }
    +
    + .nav-links a:hover {
    + color: var(--primary);
    + }
    +
    + .cta-button {
    + background: var(--gradient);
    + color: white;
    + padding: 0.8rem 1.5rem;
    + border-radius: 50px;
    + text-decoration: none;
    + transition: transform 0.3s ease;
    + }
    +
    + .cta-button:hover {
    + transform: translateY(-2px);
    + }
    +
    + .hero {
    + padding: 8rem 5% 5rem;
    + display: grid;
    + grid-template-columns: 1fr 1fr;
    + gap: 2rem;
    + align-items: center;
    + background: linear-gradient(170deg, var(--background) 60%, var(--accent));
    + }
    +
    + .hero-content h1 {
    + font-size: 3.5rem;
    + line-height: 1.2;
    + margin-bottom: 1.5rem;
    + background: var(--gradient);
    + -webkit-background-clip: text;
    + -webkit-text-fill-color: transparent;
    + }
    +
    + .hero-content p {
    + font-size: 1.2rem;
    + margin-bottom: 2rem;
    + }
    +
    + .abstract-shape {
    + width: 100%;
    + height: 400px;
    + background: var(--gradient);
    + border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    + animation: morphing 15s ease-in-out infinite;
    + }
    +
    + @keyframes morphing {
    + 0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    + 50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    + 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    + }
    +
    + .features, .benefits, .demo {
    + padding: 5rem 5%;
    + }
    +
    + .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.1);
    + transition: transform 0.3s ease;
    + }
    +
    + .feature-card:hover {
    + transform: translateY(-5px);
    + }
    +
    + .icon-wrapper {
    + width: 60px;
    + height: 60px;
    + border-radius: 50%;
    + background: var(--accent);
    + margin-bottom: 1rem;
    + display: flex;
    + align-items: center;
    + justify-content: center;
    + }
    +
    + .benefits-container {
    + display: grid;
    + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    + gap: 2rem;
    + margin-top: 3rem;
    + }
    +
    + .benefit {
    + text-align: center;
    + padding: 2rem;
    + }
    +
    + .benefit h3 {
    + font-size: 2rem;
    + color: var(--primary);
    + margin-bottom: 1rem;
    + }
    +
    + .demo-container {
    + max-width: 500px;
    + margin: 0 auto;
    + }
    +
    + .demo-form {
    + background: white;
    + padding: 2rem;
    + border-radius: 1rem;
    + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    + }
    +
    + form {
    + display: flex;
    + flex-direction: column;
    + gap: 1rem;
    + }
    +
    + input {
    + padding: 1rem;
    + border: 1px solid #e5e7eb;
    + border-radius: 0.5rem;
    + font-size: 1rem;
    + }
    +
    + footer {
    + background: var(--gradient);
    + color: white;
    + padding: 3rem 5%;
    + }
    +
    + .footer-content {
    + display: grid;
    + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    + gap: 2rem;
    + }
    +
    + .footer-section ul {
    + list-style: none;
    + }
    +
    + .footer-section a {
    + color: white;
    + text-decoration: none;
    + }
    +
    + @media (max-width: 768px) {
    + .nav-links {
    + display: none;
    + }
    +
    + .hero {
    + grid-template-columns: 1fr;
    + text-align: center;
    + }
    +
    + .hero-content h1 {
    + font-size: 2.5rem;
    + }
    + }