Changes to cogniefy.scroll.pub

root
root
26 days ago
Initial commit
body.html
Changed around line 1
+
+
+
+
+
+
+
+
+
+
+

Launch Your AI Product in Days, Not Months

+

Ready-to-brand AI solutions for innovative businesses

+
+
+
+
+

Our Whitelabel Products

+
+
+

AI Chatbot

+

Customizable conversational AI for customer support

+
    +
  • Natural language processing
  • +
  • Multi-language support
  • +
  • Custom training capabilities
  • +
    +
    +
    +

    Content Generator

    +

    AI-powered content creation suite

    +
      +
    • Blog post generation
    • +
    • Social media content
    • +
    • SEO optimization
    • +
      +
      +
      +

      Image Generator

      +

      AI image creation and editing tool

      +
        +
      • Custom style transfer
      • +
      • Batch processing
      • +
      • Brand integration
      • +
        +
        +
        +
        +
        +
        +

        Start Your AI Journey

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

        Cogniefy - AI Solutions for Modern Business

        +
        +
        +
        index.scroll
        Changed around line 1
        + buildHtml
        + baseUrl https://cogniefy.scroll.pub
        + metaTags
        + editButton /edit.html
        + title Cogniefy - AI Whitelabel Solutions
        + style.css
        + body.html
        + script.js
        readme.scroll
        Changed around line 1
        + # 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
        script.js
        Changed around line 1
        + 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);
        + });
        + });
        style.css
        Changed around line 1
        + :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;
        + }
        + }