commit cc5385606efcdda568c0e4cc091b3c5ca36937e4
Author: root <root@hub.scroll.pub>
Date: 2024-12-27 07:33:44 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..4cbbc58
--- /dev/null
+++ b/body.html
@@ -0,0 +1,91 @@
+<header class="header">
+ <nav class="nav">
+ <div class="logo">Cogniefy</div>
+ <div class="nav-links">
+ <a href="#products">Products</a>
+ <a href="#features">Features</a>
+ <a href="#contact">Contact</a>
+ </div>
+ <button class="mobile-menu" aria-label="Menu">☰</button>
+ </nav>
+</header>
+
+<main>
+ <section class="hero">
+ <div class="hero-content">
+ <h1>Launch Your AI Product in Days, Not Months</h1>
+ <p>Ready-to-brand AI solutions for innovative businesses</p>
+ <a href="#contact" class="cta-button">Get Started</a>
+ </div>
+ </section>
+
+ <section id="products" class="products">
+ <h2>Our Whitelabel Products</h2>
+ <div class="product-grid">
+ <div class="product-card">
+ <h3>AI Chatbot</h3>
+ <p>Customizable conversational AI for customer support</p>
+ <ul>
+ <li>Natural language processing</li>
+ <li>Multi-language support</li>
+ <li>Custom training capabilities</li>
+ </ul>
+ </div>
+ <div class="product-card">
+ <h3>Content Generator</h3>
+ <p>AI-powered content creation suite</p>
+ <ul>
+ <li>Blog post generation</li>
+ <li>Social media content</li>
+ <li>SEO optimization</li>
+ </ul>
+ </div>
+ <div class="product-card">
+ <h3>Image Generator</h3>
+ <p>AI image creation and editing tool</p>
+ <ul>
+ <li>Custom style transfer</li>
+ <li>Batch processing</li>
+ <li>Brand integration</li>
+ </ul>
+ </div>
+ </div>
+ </section>
+
+ <section id="contact" class="contact">
+ <h2>Start Your AI Journey</h2>
+ <form id="contactForm" class="contact-form">
+ <div class="form-group">
+ <input type="text" id="name" name="name" required placeholder="Your Name">
+ </div>
+ <div class="form-group">
+ <input type="email" id="email" name="email" required placeholder="Your Email">
+ </div>
+ <div class="form-group">
+ <select id="product" name="product">
+ <option value="">Select Product</option>
+ <option value="chatbot">AI Chatbot</option>
+ <option value="content">Content Generator</option>
+ <option value="image">Image Generator</option>
+ </select>
+ </div>
+ <div class="form-group">
+ <textarea id="message" name="message" required placeholder="Your Message"></textarea>
+ </div>
+ <button type="submit" class="submit-button">Send Message</button>
+ </form>
+ </section>
+</main>
+
+<footer class="footer">
+ <div class="footer-content">
+ <div class="footer-links">
+ <a href="#products">Products</a>
+ <a href="#features">Features</a>
+ <a href="#contact">Contact</a>
+ </div>
+ <div class="footer-text">
+ <p>Cogniefy - AI Solutions for Modern Business</p>
+ </div>
+ </div>
+</footer>
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..b545dfe
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://cogniefy.scroll.pub
+metaTags
+editButton /edit.html
+title Cogniefy - AI Whitelabel Solutions
+style.css
+body.html
+script.js
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..d991408
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# cogniefy.scroll.pub
+Website generated by Claude from prompt: Create a landing page for my AI whitelabel company using CSS styling sheets and which should have a contact form and list of readymade AI whitelabel products which can be rebrand it, customized and deliver to clients in a short time. Launch your AI product with Cogniefy whitelabel solution
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..54eabdd
--- /dev/null
+++ b/script.js
@@ -0,0 +1,55 @@
+document.addEventListener('DOMContentLoaded', function() {
+ // Mobile menu toggle
+ const mobileMenu = document.querySelector('.mobile-menu');
+ const navLinks = document.querySelector('.nav-links');
+
+ mobileMenu.addEventListener('click', () => {
+ navLinks.style.display = navLinks.style.display === 'flex' ? 'none' : 'flex';
+ });
+
+ // Smooth scroll for anchor links
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
+ anchor.addEventListener('click', function (e) {
+ e.preventDefault();
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
+ behavior: 'smooth'
+ });
+ });
+ });
+
+ // Form submission handling
+ const contactForm = document.getElementById('contactForm');
+
+ contactForm.addEventListener('submit', function(e) {
+ e.preventDefault();
+
+ // Form validation
+ const name = document.getElementById('name').value;
+ const email = document.getElementById('email').value;
+ const message = document.getElementById('message').value;
+
+ if (name && email && message) {
+ alert('Thank you for your message! We will get back to you soon.');
+ contactForm.reset();
+ }
+ });
+
+ // Add scroll animation for products
+ const productCards = document.querySelectorAll('.product-card');
+
+ const observer = new IntersectionObserver((entries) => {
+ entries.forEach(entry => {
+ if (entry.isIntersecting) {
+ entry.target.style.opacity = '1';
+ entry.target.style.transform = 'translateY(0)';
+ }
+ });
+ });
+
+ productCards.forEach(card => {
+ card.style.opacity = '0';
+ card.style.transform = 'translateY(20px)';
+ card.style.transition = 'opacity 0.5s ease, transform 0.5s ease';
+ observer.observe(card);
+ });
+});
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..16ed0cc
--- /dev/null
+++ b/style.css
@@ -0,0 +1,199 @@
+:root {
+ --primary-color: #4a90e2;
+ --secondary-color: #2c3e50;
+ --accent-color: #e74c3c;
+ --text-color: #333;
+ --light-bg: #f5f6fa;
+ --white: #ffffff;
+}
+
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+}
+
+.header {
+ position: fixed;
+ width: 100%;
+ background: var(--white);
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ z-index: 1000;
+}
+
+.nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ max-width: 1200px;
+ margin: 0 auto;
+}
+
+.logo {
+ font-size: 1.8rem;
+ font-weight: bold;
+ color: var(--primary-color);
+}
+
+.nav-links a {
+ margin-left: 2rem;
+ text-decoration: none;
+ color: var(--secondary-color);
+ transition: color 0.3s ease;
+}
+
+.nav-links a:hover {
+ color: var(--primary-color);
+}
+
+.mobile-menu {
+ display: none;
+}
+
+.hero {
+ padding: 8rem 5% 5rem;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: var(--white);
+ text-align: center;
+}
+
+.hero-content {
+ max-width: 800px;
+ margin: 0 auto;
+}
+
+.hero h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+}
+
+.cta-button {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background: var(--accent-color);
+ color: var(--white);
+ text-decoration: none;
+ border-radius: 5px;
+ transition: transform 0.3s ease;
+}
+
+.cta-button:hover {
+ transform: translateY(-2px);
+}
+
+.products {
+ padding: 5rem 5%;
+ background: var(--light-bg);
+}
+
+.products h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+}
+
+.product-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+}
+
+.product-card {
+ background: var(--white);
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+}
+
+.product-card:hover {
+ transform: translateY(-5px);
+}
+
+.contact {
+ padding: 5rem 5%;
+ max-width: 800px;
+ margin: 0 auto;
+}
+
+.contact-form {
+ display: grid;
+ gap: 1.5rem;
+}
+
+.form-group input,
+.form-group select,
+.form-group textarea {
+ width: 100%;
+ padding: 1rem;
+ border: 1px solid #ddd;
+ border-radius: 5px;
+ font-size: 1rem;
+}
+
+.form-group textarea {
+ height: 150px;
+ resize: vertical;
+}
+
+.submit-button {
+ background: var(--primary-color);
+ color: var(--white);
+ padding: 1rem;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: background-color 0.3s ease;
+}
+
+.submit-button:hover {
+ background: var(--secondary-color);
+}
+
+.footer {
+ background: var(--secondary-color);
+ color: var(--white);
+ padding: 2rem 5%;
+}
+
+.footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+
+.footer-links a {
+ color: var(--white);
+ text-decoration: none;
+ margin-right: 1.5rem;
+}
+
+@media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .mobile-menu {
+ display: block;
+ }
+
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ text-align: center;
+ gap: 1rem;
+ }
+}