commit 10f5019410e58806e8d1f1a09f747d043ccead5a
Author: root <root@hub.scroll.pub>
Date: 2024-12-27 04:40:50 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..1b0fc43
--- /dev/null
+++ b/body.html
@@ -0,0 +1,107 @@
+<header>
+ <nav>
+ <div class="logo">Kahuna</div>
+ <div class="nav-links">
+ <a href="#features">Features</a>
+ <a href="#benefits">Benefits</a>
+ <a href="#demo">Demo</a>
+ <button class="cta-button">Start Free Trial</button>
+ </div>
+ <div class="menu-toggle">
+ <span></span>
+ <span></span>
+ <span></span>
+ </div>
+ </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>
+ <button class="cta-button">Get Started</button>
+ </div>
+ <div class="hero-image">
+ <div class="abstract-shape"></div>
+ </div>
+ </section>
+
+ <section id="features" class="features">
+ <h2>Key Features</h2>
+ <div class="features-grid">
+ <div class="feature-card">
+ <div class="feature-icon">📝</div>
+ <h3>Smart Recording & Transcription</h3>
+ <p>Automatically capture and transcribe every sales interaction</p>
+ </div>
+ <div class="feature-card">
+ <div class="feature-icon">📊</div>
+ <h3>Performance Analytics</h3>
+ <p>Track key metrics and identify improvement opportunities</p>
+ </div>
+ <div class="feature-card">
+ <div class="feature-icon">🤖</div>
+ <h3>AI Follow-up System</h3>
+ <p>Intelligent re-engagement of unclosed leads</p>
+ </div>
+ <div class="feature-card">
+ <div class="feature-icon">📈</div>
+ <h3>Real-time Insights</h3>
+ <p>Dynamic dashboards for immediate performance visibility</p>
+ </div>
+ </div>
+ </section>
+
+ <section id="benefits" class="benefits">
+ <h2>Why Choose Kahuna</h2>
+ <div class="benefits-container">
+ <div class="benefit">
+ <h3>Increase Close Rates</h3>
+ <p>Turn insights into action with data-driven strategies</p>
+ </div>
+ <div class="benefit">
+ <h3>Save Time</h3>
+ <p>Automate follow-ups and meeting documentation</p>
+ </div>
+ <div class="benefit">
+ <h3>Never Miss Opportunities</h3>
+ <p>Track and re-engage every potential lead</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="Email" required>
+ <input type="text" placeholder="Company" required>
+ <button type="submit" class="cta-button">Schedule Demo</button>
+ </form>
+ </div>
+ </div>
+ </section>
+</main>
+
+<footer>
+ <div class="footer-content">
+ <div class="footer-section">
+ <h4>Kahuna</h4>
+ <p>Sales performance platform</p>
+ </div>
+ <div class="footer-section">
+ <h4>Links</h4>
+ <a href="#features">Features</a>
+ <a href="#benefits">Benefits</a>
+ <a href="#demo">Demo</a>
+ </div>
+ <div class="footer-section">
+ <h4>Contact</h4>
+ <p>hello@kahuna-sales.scroll.pub</p>
+ </div>
+ </div>
+</footer>
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..7a8326f
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://kahuna-sales.scroll.pub
+metaTags
+editButton /edit.html
+title Kahuna - AI-Powered Sales Performance Platform
+style.css
+body.html
+script.js
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..a186a5d
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# kahuna-sales2.scroll.pub
+Website generated by Claude from prompt: Website for my SAAS named Kahuna. Kahuna is a performance tool built specifically for sales teams, transforming meetings into actionable insights and smarter follow-ups. It records and transcribes every interaction, tracking metrics like unsold revenue, follow-up success rates, and common objections to help teams improve their strategies. With an AI-driven follow-up system that re-engages unclosed leads and dynamic dashboards offering real-time performance insights, Kahuna ensures no opportunity is wasted. By turning sales meetings into revenue-driving opportunities, Kahuna gives sales teams a powerful competitive advantage. I want the color scheme to being black and blue. Very simple and tech feeling
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..3a18932
--- /dev/null
+++ b/script.js
@@ -0,0 +1,50 @@
+document.addEventListener('DOMContentLoaded', () => {
+ // Mobile menu toggle
+ const menuToggle = document.querySelector('.menu-toggle');
+ const navLinks = document.querySelector('.nav-links');
+
+ menuToggle.addEventListener('click', () => {
+ navLinks.style.display = navLinks.style.display === 'flex' ? 'none' : 'flex';
+ });
+
+ // 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'
+ });
+ });
+ });
+
+ // Form submission handler
+ const demoForm = document.getElementById('demoForm');
+ if (demoForm) {
+ demoForm.addEventListener('submit', (e) => {
+ e.preventDefault();
+ alert('Thank you for your interest! We will contact you shortly.');
+ demoForm.reset();
+ });
+ }
+
+ // Intersection Observer for fade-in animations
+ const observerOptions = {
+ threshold: 0.1
+ };
+
+ const observer = new IntersectionObserver((entries) => {
+ entries.forEach(entry => {
+ if (entry.isIntersecting) {
+ entry.target.style.opacity = '1';
+ entry.target.style.transform = 'translateY(0)';
+ }
+ });
+ }, observerOptions);
+
+ document.querySelectorAll('.feature-card, .benefit').forEach(el => {
+ el.style.opacity = '0';
+ el.style.transform = 'translateY(20px)';
+ el.style.transition = 'opacity 0.5s ease, transform 0.5s ease';
+ observer.observe(el);
+ });
+});
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..812f660
--- /dev/null
+++ b/style.css
@@ -0,0 +1,265 @@
+:root {
+ --primary: #0066ff;
+ --dark: #111827;
+ --light: #f3f4f6;
+ --transition: all 0.3s ease;
+}
+
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ color: var(--dark);
+ line-height: 1.6;
+ background: #000;
+ color: #fff;
+}
+
+/* Navigation */
+nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1.5rem 5%;
+ position: fixed;
+ width: 100%;
+ background: rgba(0, 0, 0, 0.9);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+}
+
+.logo {
+ font-size: 1.8rem;
+ font-weight: 700;
+ color: var(--primary);
+}
+
+.nav-links {
+ display: flex;
+ gap: 2rem;
+ align-items: center;
+}
+
+.nav-links a {
+ color: #fff;
+ text-decoration: none;
+ transition: var(--transition);
+}
+
+.nav-links a:hover {
+ color: var(--primary);
+}
+
+/* Buttons */
+.cta-button {
+ background: var(--primary);
+ color: white;
+ border: none;
+ padding: 0.8rem 1.5rem;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: var(--transition);
+}
+
+.cta-button:hover {
+ background: #0052cc;
+ transform: translateY(-2px);
+}
+
+/* Hero Section */
+.hero {
+ min-height: 100vh;
+ display: flex;
+ align-items: center;
+ padding: 0 5%;
+ position: relative;
+ overflow: hidden;
+}
+
+.hero-content {
+ flex: 1;
+ z-index: 2;
+}
+
+.hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1.5rem;
+ line-height: 1.2;
+ background: linear-gradient(45deg, #fff, var(--primary));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+}
+
+.hero-image {
+ flex: 1;
+ position: relative;
+}
+
+.abstract-shape {
+ width: 500px;
+ height: 500px;
+ background: linear-gradient(45deg, var(--primary), #00c6ff);
+ border-radius: 50%;
+ filter: blur(100px);
+ opacity: 0.3;
+ position: absolute;
+ right: -100px;
+ animation: float 6s ease-in-out infinite;
+}
+
+/* Features Section */
+.features {
+ padding: 5rem 5%;
+ background: #0a0a0a;
+}
+
+.features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+}
+
+.feature-card {
+ background: rgba(255, 255, 255, 0.05);
+ padding: 2rem;
+ border-radius: 10px;
+ transition: var(--transition);
+}
+
+.feature-card:hover {
+ transform: translateY(-5px);
+ background: rgba(255, 255, 255, 0.1);
+}
+
+.feature-icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+}
+
+/* Benefits Section */
+.benefits {
+ padding: 5rem 5%;
+ background: #000;
+}
+
+.benefits-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+}
+
+.benefit {
+ padding: 2rem;
+ border: 1px solid rgba(255, 255, 255, 0.1);
+ border-radius: 10px;
+}
+
+/* Demo Section */
+.demo {
+ padding: 5rem 5%;
+ background: #0a0a0a;
+}
+
+.demo-form {
+ max-width: 500px;
+ margin: 0 auto;
+}
+
+.demo-form form {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+}
+
+.demo-form input {
+ padding: 1rem;
+ border: none;
+ border-radius: 5px;
+ background: rgba(255, 255, 255, 0.05);
+ color: #fff;
+}
+
+/* Footer */
+footer {
+ padding: 3rem 5%;
+ background: #000;
+ border-top: 1px solid rgba(255, 255, 255, 0.1);
+}
+
+.footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+}
+
+.footer-section {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+}
+
+.footer-section a {
+ color: #fff;
+ text-decoration: none;
+ transition: var(--transition);
+}
+
+.footer-section a:hover {
+ color: var(--primary);
+}
+
+/* Animations */
+@keyframes float {
+ 0%, 100% {
+ transform: translateY(0);
+ }
+ 50% {
+ transform: translateY(-20px);
+ }
+}
+
+/* Mobile Responsiveness */
+.menu-toggle {
+ display: none;
+ flex-direction: column;
+ gap: 5px;
+ cursor: pointer;
+}
+
+.menu-toggle span {
+ width: 25px;
+ height: 3px;
+ background: #fff;
+ transition: var(--transition);
+}
+
+@media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .menu-toggle {
+ display: flex;
+ }
+
+ .hero {
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .abstract-shape {
+ width: 300px;
+ height: 300px;
+ right: -50px;
+ }
+}