Changes to kahuna-sales2.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

+
+
+
+
+
+
+
+
+

Key Features

+
+
+
📝
+

Smart Recording & Transcription

+

Automatically capture and transcribe every sales interaction

+
+
+
📊
+

Performance Analytics

+

Track key metrics and identify improvement opportunities

+
+
+
🤖
+

AI Follow-up System

+

Intelligent re-engagement of unclosed leads

+
+
+
📈
+

Real-time Insights

+

Dynamic dashboards for immediate performance visibility

+
+
+
+
+
+

Why Choose Kahuna

+
+
+

Increase Close Rates

+

Turn insights into action with data-driven strategies

+
+
+

Save Time

+

Automate follow-ups and meeting documentation

+
+
+

Never Miss Opportunities

+

Track and re-engage every potential lead

+
+
+
+
+
+

See Kahuna in Action

+
+
+

Request a Demo

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

Kahuna

+

Sales performance platform

+
+
+

Links

+
+
+

Contact

+

hello@kahuna-sales.scroll.pub

+
+
+
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://kahuna-sales.scroll.pub
+ metaTags
+ editButton /edit.html
+ title Kahuna - AI-Powered Sales Performance Platform
+ style.css
+ body.html
+ script.js
readme.scroll
Changed around line 1
+ # 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
script.js
Changed around line 1
+ 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);
+ });
+ });
style.css
Changed around line 1
+ :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;
+ }
+ }