commit 4c099228f7e95e821ead7ddf2e40bc7135b733f3
Author: root <root@hub.scroll.pub>
Date: 2024-12-27 05:02:54 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..de39e55
--- /dev/null
+++ b/body.html
@@ -0,0 +1,109 @@
+<header>
+ <nav class="navbar">
+ <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="#demo">Demo</a></li>
+ <li><a href="#contact" class="cta-button">Get Started</a></li>
+ </ul>
+ </nav>
+</header>
+
+<main>
+ <section class="hero">
+ <div class="hero-content">
+ <h1>Transform Sales Meetings Into Revenue</h1>
+ <p>AI-powered meeting intelligence that helps sales teams close more deals</p>
+ <a href="#demo" class="cta-button pulse">See It In Action</a>
+ </div>
+ <div class="hero-image">
+ <div class="abstract-shape"></div>
+ </div>
+ </section>
+
+ <section id="features" class="features">
+ <h2>Powerful Features</h2>
+ <div class="feature-grid">
+ <div class="feature-card">
+ <div class="icon-wrapper">
+ <div class="icon recording"></div>
+ </div>
+ <h3>Smart Recording</h3>
+ <p>Automatically capture and analyze every sales conversation</p>
+ </div>
+ <div class="feature-card">
+ <div class="icon-wrapper">
+ <div class="icon analytics"></div>
+ </div>
+ <h3>Revenue Analytics</h3>
+ <p>Track missed opportunities and optimize your sales approach</p>
+ </div>
+ <div class="feature-card">
+ <div class="icon-wrapper">
+ <div class="icon ai"></div>
+ </div>
+ <h3>AI Follow-ups</h3>
+ <p>Intelligent re-engagement of unclosed leads</p>
+ </div>
+ </div>
+ </section>
+
+ <section id="benefits" class="benefits">
+ <h2>Why Choose Kahuna</h2>
+ <div class="benefits-container">
+ <div class="benefit">
+ <h3>30% More Closes</h3>
+ <p>Improve your success rate with data-driven insights</p>
+ </div>
+ <div class="benefit">
+ <h3>50% Faster Follow-ups</h3>
+ <p>Automated AI assistance keeps deals moving forward</p>
+ </div>
+ <div class="benefit">
+ <h3>100% Meeting Coverage</h3>
+ <p>Never miss a crucial detail or opportunity</p>
+ </div>
+ </div>
+ </section>
+
+ <section id="demo" class="demo">
+ <h2>See Kahuna in Action</h2>
+ <div class="demo-container">
+ <div class="demo-form">
+ <h3>Request a Demo</h3>
+ <form id="demoForm">
+ <input type="text" placeholder="Name" required>
+ <input type="email" placeholder="Work Email" required>
+ <input type="text" placeholder="Company" required>
+ <button type="submit" class="cta-button">Get Demo</button>
+ </form>
+ </div>
+ </div>
+ </section>
+</main>
+
+<footer>
+ <div class="footer-content">
+ <div class="footer-section">
+ <h4>Kahuna</h4>
+ <p>Sales meeting intelligence for modern teams</p>
+ </div>
+ <div class="footer-section">
+ <h4>Links</h4>
+ <ul>
+ <li><a href="#features">Features</a></li>
+ <li><a href="#benefits">Benefits</a></li>
+ <li><a href="#demo">Demo</a></li>
+ </ul>
+ </div>
+ <div class="footer-section">
+ <h4>Contact</h4>
+ <p>hello@kahuna.com</p>
+ <p>1-800-KAHUNA</p>
+ </div>
+ </div>
+</footer>
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..a34c8a2
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://salesgenius.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..bcf4fca
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# 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.
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..acef418
--- /dev/null
+++ b/script.js
@@ -0,0 +1,44 @@
+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);
+ });
+});
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..032f408
--- /dev/null
+++ b/style.css
@@ -0,0 +1,221 @@
+: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;
+ }
+}