commit 0ab292a11155204dce54b029d2bf875b2bdf1344
Author: root <root@hub.scroll.pub> Date: 2024-12-27 04:55:32 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..aa21490 --- /dev/null +++ b/body.html @@ -0,0 +1,94 @@ +<header> + <nav> + <div class="logo">Kahuna</div> + <div class="nav-toggle" aria-label="Toggle navigation menu"> + <span></span><span></span><span></span> + </div> + <ul class="nav-links"> + <li><a href="#features">Features</a></li> + <li><a href="#benefits">Benefits</a></li> + <li><a href="#contact">Contact</a></li> + </ul> + </nav> +</header> + +<main> + <section class="hero"> + <div class="container"> + <h1>Transform Sales Meetings Into Revenue</h1> + <p>AI-powered meeting intelligence to close more deals and maximize team performance</p> + <button class="cta-button">Get Started</button> + </div> + </section> + + <section id="features" class="features"> + <div class="container"> + <h2>Key Features</h2> + <div class="feature-grid"> + <div class="feature-card"> + <div class="icon">📊</div> + <h3>Smart Analytics</h3> + <p>Track revenue opportunities, success rates, and objection patterns in real-time</p> + </div> + <div class="feature-card"> + <div class="icon">🎯</div> + <h3>AI Insights</h3> + <p>Get actionable feedback to improve sales strategies and close rates</p> + </div> + <div class="feature-card"> + <div class="icon">🤖</div> + <h3>Automated Follow-ups</h3> + <p>Re-engage leads with AI-driven personalized messages</p> + </div> + <div class="feature-card"> + <div class="icon">💡</div> + <h3>Performance Tracking</h3> + <p>Monitor team metrics and identify improvement opportunities</p> + </div> + </div> + </div> + </section> + + <section id="benefits" class="benefits"> + <div class="container"> + <h2>Why Choose Kahuna</h2> + <div class="benefits-wrapper"> + <div class="benefit"> + <h3>Close More Deals</h3> + <p>Increase win rates with data-driven insights and automated follow-ups</p> + </div> + <div class="benefit"> + <h3>Save Time</h3> + <p>Automate meeting analysis and follow-up tasks</p> + </div> + <div class="benefit"> + <h3>Improve Performance</h3> + <p>Get real-time feedback and coaching for better results</p> + </div> + </div> + </div> + </section> + + <section id="contact" class="contact"> + <div class="container"> + <h2>Ready to Transform Your Sales Process?</h2> + <form id="contact-form"> + <input type="email" placeholder="Enter your email" required> + <button type="submit" class="cta-button">Request Demo</button> + </form> + </div> + </section> +</main> + +<footer> + <div class="container"> + <div class="footer-content"> + <div class="logo">Kahuna</div> + <div class="footer-links"> + <a href="#">Privacy</a> + <a href="#">Terms</a> + <a href="#">Support</a> + </div> + </div> + </div> +</footer> diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..8e1e378 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://salesai.scroll.pub +metaTags +editButton /edit.html +title Kahuna | AI-Powered Sales Meeting Intelligence +style.css +body.html +script.js diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..fddf0be --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# 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. \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..f373fce --- /dev/null +++ b/script.js @@ -0,0 +1,59 @@ +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); + }); +}); diff --git a/style.css b/style.css new file mode 100644 index 0000000..4f0ae1b --- /dev/null +++ b/style.css @@ -0,0 +1,251 @@ +: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; + } +}