n8n / index.html
RicodeFe81's picture
Create a **20-page e‑book** titled **“N8N Automation for Results: The Advanced Guide to Building Intelligent Businesses”**, as a high‑end companion to the “Complete N8N Business Automation Mastery Course.” 🎨 **Design & Layout Requirements:** - Use a **luxurious, futuristic theme**: black and deep charcoal background, gold and metallic yellow highlights, sleek sans-serif headlines (e.g. Montserrat, Futura) and elegant serif body fonts (e.g. Playfair Display). - Include **visually rich layouts**: mind‑maps, workflow diagrams, futuristic UI mockups, client use‑case screenshots. - Every page should have an adjustable and easy‑to‑read structure: consistent margins, white/negative space, clear typographic hierarchy (titles, subtitles, body, call‑outs). - Use high‑quality images/icons matching each section’s tone and content. Leverage AI‑generated visuals: hardware circuits, flowcharts, automation pipelines, abstract tech-art. 📚 **Content Structure:** 1. **Cover Page** with ebook title, subtitle, and futuristic automation visual. 2. **Author & Thank‑You Page**: professional photo, personal note, mission statement. 3. **Table of Contents**: clean and easy to navigate. 4. **Intro**: the vision of future automated businesses — include hero-style image and short quote. 5. **Chapter 1 – Why Automate**: real problems vs solutions, paired with relevant visuals. 6. **Chapter 2 – 4‑Week Roadmap**: weekly modules presented with timeline visuals, checklists, action steps, space for notes. 7. **Chapter 3 – Top 10 Pitfalls & Pro Tips**: visually distinct “Do’s & Don’ts” call-out boxes, icons, error flow visuals. 8. **Chapter 4 – Monetizing N8N**: package creation, client examples, price tables, marketplace screenshots, client success images. 9. **Chapter 5 – What’s Next**: community invites, certification paths, growth visuals. 10. **Testimonials & Success Stories**: clean callout quotes over stylized layout, framed images. 11. **Bonus Resources Page**: links to templates, communities, support – with icons and QR‑codes. 12. **Final Page**: inspiring closing statement over full‑page image, contact info, social handles. 📌 **Visual & Design Tips:** - Use negative margins for a clean modern layout with breathing space :contentReference[oaicite:1]{index=1}. - Keep a consistent color palette and typography for brand cohesion :contentReference[oaicite:2]{index=2}. - Incorporate high-resolution images and interactive elements (charts, infographics, diagrams) to elevate perceived value :contentReference[oaicite:3]{index=3}. 🎯 **Tone and Audience:** Write with an inclusive, motivational tone, accessible to beginners and pros — from teens to seniors, small-business owners worldwide. Use clear action verbs, personal stories, simple explanations. --- Execute this prompt in Genspark’s **AI Ebook Creator** or **AI Slides** mode, instructing it to **generate a visually polished PDF or PPTX**, complete with embedded high-res visuals, smart layouts, images, and true luxury-style formatting. Focus on delivering a **premium reading experience**, with design elements that visually communicate **automation**, **futurism**, and **high-tech sophistication**. - Initial Deployment
0aa0cef verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>N8N Automation for Results</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Playfair+Display:wght@400;500;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
charcoal: '#121212',
deepblack: '#0A0A0A',
gold: '#D4AF37',
metallic: '#FFDA7F',
accent: '#FFC857'
},
fontFamily: {
sans: ['Montserrat', 'sans-serif'],
serif: ['Playfair Display', 'serif']
}
}
}
}
</script>
<style>
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.floating {
animation: float 6s ease-in-out infinite;
}
.gold-gradient {
background-image: linear-gradient(45deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
}
.gold-border {
border: 1px solid rgba(212, 175, 55, 0.5);
box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}
.tech-pattern {
background-image:
radial-gradient(circle at 10% 20%, rgba(255, 218, 127, 0.1) 0%, transparent 20%),
radial-gradient(circle at 90% 80%, rgba(255, 218, 127, 0.1) 0%, transparent 20%);
}
.circuit-overlay {
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,20 Q40,5 60,20 T100,20 M20,50 Q40,35 60,50 T100,50 M20,80 Q40,65 60,80 T100,80" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="0.5"/></svg>');
background-size: 200px 200px;
}
.page {
background: linear-gradient(135deg, #0A0A0A 0%, #121212 100%);
min-height: 100vh;
padding: 2rem;
}
.page-content {
max-width: 1200px;
margin: 0 auto;
}
@media (max-width: 768px) {
.page {
padding: 1rem;
}
}
</style>
</head>
<body class="bg-deepblack text-white font-serif">
<!-- Navigation -->
<nav class="fixed top-0 left-0 right-0 z-50 bg-deepblack/90 backdrop-blur-sm py-4 border-b border-gold/20">
<div class="max-w-7xl mx-auto px-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<div class="w-10 h-10 rounded-full bg-gold flex items-center justify-center">
<span class="font-sans font-bold text-deepblack">N8N</span>
</div>
<span class="font-sans text-metallic font-semibold">AUTOMATION GUIDE</span>
</div>
<div class="flex space-x-2">
<button class="px-4 py-2 bg-gold/10 hover:bg-gold/20 border border-gold/30 text-gold rounded-lg transition-all">
Download PDF
</button>
</div>
</div>
</nav>
<!-- Page Counter -->
<div class="fixed bottom-4 right-4 z-50 bg-deepblack/70 px-4 py-2 rounded-full text-metallic font-sans text-sm border border-gold/30">
<span id="current-page">1</span> / 20
</div>
<!-- Main Container - All Pages -->
<div id="ebook-container" class="relative">
<!-- Page 1: Cover -->
<div class="page tech-pattern circuit-overlay relative">
<div class="page-content min-h-screen flex flex-col justify-center items-center text-center pt-16">
<div class="mb-8">
<div class="w-32 h-32 mx-auto mb-6 rounded-full bg-gradient-to-br from-metallic to-gold flex items-center justify-center floating">
<svg xmlns="http://www.w3.org/2000/svg" class="h-16 w-16" fill="none" viewBox="0 0 24 24" stroke="#0A0A0A">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 3v4M3 5h4M6 17v4m-2-2h4m5-16l2.286 6.857L21 12l-5.714 2.143L13 21l-2.286-6.857L5 12l5.714-2.143L13 3z" />
</svg>
</div>
<div class="text-metallic font-sans tracking-widest text-sm uppercase mb-2">Advanced Guide</div>
<h1 class="text-5xl md:text-7xl font-bold mb-4 bg-clip-text text-transparent bg-gradient-to-r from-metallic via-gold to-accent">
N8N Automation<br>for Results
</h1>
<h2 class="text-xl md:text-2xl text-gold/80 font-light max-w-2xl mx-auto mt-4">
The Advanced Guide to Building Intelligent Businesses
</h2>
</div>
<div class="mt-12 relative">
<div class="absolute inset-0 bg-gradient-to-r from-transparent via-gold/20 to-transparent w-full h-full"></div>
<div class="relative z-10">
<div class="bg-deepblack/50 border border-gold/30 rounded-xl p-6 backdrop-blur-sm">
<h3 class="font-sans text-metallic text-lg mb-2">Companion to the</h3>
<p class="text-lg">Complete N8N Business Automation Mastery Course</p>
</div>
</div>
</div>
<div class="mt-16 text-gold/60 text-sm">
<p>Scroll to continue</p>
<div class="mt-2 flex justify-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 animate-bounce" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3" />
</svg>
</div>
</div>
</div>
</div>
<!-- Page 2: Author & Thank You -->
<div class="page tech-pattern relative">
<div class="page-content min-h-screen flex flex-col justify-center">
<div class="grid grid-cols-1 md:grid-cols-3 gap-12 items-center">
<div class="md:col-span-1 flex justify-center">
<div class="relative">
<div class="w-48 h-48 bg-gradient-to-br from-gold to-metallic rounded-full overflow-hidden border-4 border-deepblack"></div>
<div class="absolute -bottom-3 -right-3 bg-deepblack border border-gold/50 rounded-full w-12 h-12 flex items-center justify-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-gold" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
</div>
</div>
<div class="md:col-span-2">
<div class="text-gold font-sans text-lg mb-2">About the Author</div>
<h2 class="text-3xl font-bold mb-6">Alex Reynolds</h2>
<p class="text-lg text-white/90 leading-relaxed mb-6">
With over a decade of experience in business automation and workflow optimization, Alex has helped hundreds of companies transform their operations through intelligent automation. As the creator of the N8N Mastery Course, Alex is passionate about democratizing automation technology.
</p>
<div class="gold-border p-6 rounded-xl mt-8 gold-gradient">
<div class="flex items-start">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-gold mt-1 mr-3 flex-shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14.828 14.828a4 4 0 01-5.656 0M9 10h.01M15 10h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
<p class="italic text-gold/90">
"My mission is to empower businesses of all sizes to harness automation, not as a complex technical challenge, but as a strategic advantage that drives growth and innovation."
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Page 3: Table of Contents -->
<div class="page tech-pattern circuit-overlay relative">
<div class="page-content min-h-screen pt-20 pb-10">
<div class="text-center mb-16">
<div class="inline-block border-b border-gold/30 pb-2 mb-4">
<h2 class="text-3xl font-bold font-sans">Table of Contents</h2>
</div>
<p class="text-metallic/80 max-w-xl mx-auto">Navigate through this comprehensive guide to intelligent business automation</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- Chapter List -->
<div class="space-y-6">
<div class="flex items-start space-x-4 group">
<div class="mt-1 w-8 h-8 rounded-full bg-gold/10 border border-gold/30 flex items-center justify-center group-hover:bg-gold/20 transition-colors">
<span class="text-sm text-gold font-sans">01</span>
</div>
<div>
<h3 class="text-xl font-bold font-sans group-hover:text-metallic transition-colors">Introduction</h3>
<p class="text-white/70 mt-1">The vision of future automated businesses</p>
</div>
</div>
<div class="flex items-start space-x-4 group">
<div class="mt-1 w-8 h-8 rounded-full bg-gold/10 border border-gold/30 flex items-center justify-center group-hover:bg-gold/20 transition-colors">
<span class="text-sm text-gold font-sans">02</span>
</div>
<div>
<h3 class="text-xl font-bold font-sans group-hover:text-metallic transition-colors">Why Automate?</h3>
<p class="text-white/70 mt-1">Real problems vs solutions</p>
</div>
</div>
<div class="flex items-start space-x-4 group">
<div class="mt-1 w-8 h-8 rounded-full bg-gold/10 border border-gold/30 flex items-center justify-center group-hover:bg-gold/20 transition-colors">
<span class="text-sm text-gold font-sans">03</span>
</div>
<div>
<h3 class="text-xl font-bold font-sans group-hover:text-metallic transition-colors">4-Week Roadmap</h3>
<p class="text-white/70 mt-1">Weekly modules with timeline visuals</p>
</div>
</div>
<div class="flex items-start space-x-4 group">
<div class="mt-1 w-8 h-8 rounded-full bg-gold/10 border border-gold/30 flex items-center justify-center group-hover:bg-gold/20 transition-colors">
<span class="text-sm text-gold font-sans">04</span>
</div>
<div>
<h3 class="text-xl font-bold font-sans group-hover:text-metallic transition-colors">Top 10 Pitfalls & Pro Tips</h3>
<p class="text-white/70 mt-1">Visual "Do's & Don'ts" call-out boxes</p>
</div>
</div>
</div>
<!-- Chapter List Continued -->
<div class="space-y-6">
<div class="flex items-start space-x-4 group">
<div class="mt-1 w-8 h-8 rounded-full bg-gold/10 border border-gold/30 flex items-center justify-center group-hover:bg-gold/20 transition-colors">
<span class="text-sm text-gold font-sans">05</span>
</div>
<div>
<h3 class="text-xl font-bold font-sans group-hover:text-metallic transition-colors">Monetizing N8N</h3>
<p class="text-white/70 mt-1">Package creation, client examples, pricing</p>
</div>
</div>
<div class="flex items-start space-x-4 group">
<div class="mt-1 w-8 h-8 rounded-full bg-gold/10 border border-gold/30 flex items-center justify-center group-hover:bg-gold/20 transition-colors">
<span class="text-sm text-gold font-sans">06</span>
</div>
<div>
<h3 class="text-xl font-bold font-sans group-hover:text-metallic transition-colors">What's Next</h3>
<p class="text-white/70 mt-1">Community invites, certification paths</p>
</div>
</div>
<div class="flex items-start space-x-4 group">
<div class="mt-1 w-8 h-8 rounded-full bg-gold/10 border border-gold/30 flex items-center justify-center group-hover:bg-gold/20 transition-colors">
<span class="text-sm text-gold font-sans">07</span>
</div>
<div>
<h3 class="text-xl font-bold font-sans group-hover:text-metallic transition-colors">Testimonials & Success Stories</h3>
<p class="text-white/70 mt-1">Real-world results from businesses</p>
</div>
</div>
<div class="flex items-start space-x-4 group">
<div class="mt-1 w-8 h-8 rounded-full bg-gold/10 border border-gold/30 flex items-center justify-center group-hover:bg-gold/20 transition-colors">
<span class="text-sm text-gold font-sans">08</span>
</div>
<div>
<h3 class="text-xl font-bold font-sans group-hover:text-metallic transition-colors">Bonus Resources</h3>
<p class="text-white/70 mt-1">Templates, communities, support</p>
</div>
</div>
</div>
</div>
<div class="mt-16 text-center">
<div class="inline-flex flex-col items-center">
<div class="text-xs text-gold/60 mb-2">Total of 20 Content-Rich Pages</div>
<div class="flex space-x-2">
<div class="w-2 h-2 rounded-full bg-gold"></div>
<div class="w-2 h-2 rounded-full bg-gold"></div>
<div class="w-2 h-2 rounded-full bg-gold/30"></div>
<div class="w-2 h-2 rounded-full bg-gold/30"></div>
<div class="w-2 h-2 rounded-full bg-gold/30"></div>
</div>
</div>
</div>
</div>
</div>
<!-- Page 4: Introduction -->
<div class="page tech-pattern relative">
<div class="page-content min-h-screen flex flex-col justify-center">
<div class="grid grid-cols-1 lg:grid-cols-5 gap-12 items-center">
<div class="lg:col-span-3">
<div class="text-gold font-sans text-lg mb-2">Introduction</div>
<h2 class="text-4xl font-bold mb-6">The Future of Intelligent Business Automation</h2>
<div class="text-lg text-white/90 leading-relaxed space-y-4">
<p>In the next decade, businesses that fail to embrace automation will struggle to remain competitive. The era of manual workflows and disconnected systems is ending, replaced by intelligent, self-optimizing processes that drive efficiency and innovation.</p>
<p>This guide presents a comprehensive roadmap for transforming your business through N8N automation - the open-source platform that's democratizing workflow automation for organizations of all sizes.</p>
</div>
<div class="mt-8 gold-border p-6 rounded-xl gold-gradient">
<div class="flex">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-gold mt-1 mr-3 flex-shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z" />
</svg>
<p class="text-gold text-lg italic">
"Automation is no longer a luxury—it's the foundation of resilient, future-ready businesses."
</p>
</div>
</div>
</div>
<div class="lg:col-span-2">
<div class="relative">
<div class="aspect-w-16 aspect-h-9 bg-gradient-to-br from-gold/20 to-metallic/10 rounded-2xl overflow-hidden floating">
<div class="absolute inset-0 flex items-center justify-center">
<div class="grid grid-cols-3 gap-4 w-64">
<div class="h-4 bg-gold/40 rounded"></div>
<div class="h-4 bg-gold/50 rounded"></div>
<div class="h-4 bg-gold/40 rounded"></div>
<div class="h-20 bg-gold/20 rounded col-span-3 mt-4"></div>
<div class="h-3 bg-gold/30 rounded col-span-2 mt-4"></div>
<div class="h-3 bg-gold/30 rounded mt-4"></div>
<div class="h-12 bg-gradient-to-r from-gold/40 to-metallic/30 rounded col-span-3 mt-4"></div>
</div>
</div>
</div>
<div class="absolute -top-4 -right-4 bg-deepblack border border-gold/50 rounded-xl w-16 h-16 flex items-center justify-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 text-gold" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" />
</svg>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Page 5: Chapter 1 - Why Automate -->
<div class="page tech-pattern circuit-overlay relative">
<div class="page-content min-h-screen pt-20 pb-10">
<div class="flex flex-col md:flex-row items-start gap-12">
<div class="md:w-1/2">
<div class="sticky top-24">
<div class="text-gold font-sans text-lg mb-2">Chapter 1</div>
<h2 class="text-3xl font-bold mb-6">Why Automate? Solving Real Business Challenges</h2>
<p class="text-white/90 mb-8">
Automation addresses critical pain points that plague modern businesses. From repetitive tasks that drain productivity to communication gaps that create costly errors, intelligent workflows provide tangible solutions.
</p>
<div class="gold-gradient p-6 rounded-xl border border-gold/30">
<h3 class="font-sans font-bold text-metallic mb-4">Key Benefits:</h3>
<ul class="space-y-3">
<li class="flex items-start">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-gold mr-3 mt-0.5 flex-shrink-0" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
<span>70% reduction in manual data entry errors</span>
</li>
<li class="flex items-start">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-gold mr-3 mt-0.5 flex-shrink-0" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
<span>40% time savings on routine operations</span>
</li>
<li class="flex items-start">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-gold mr-3 mt-0.5 flex-shrink-0" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
<span>Enhanced compliance and audit trails</span>
</li>
<li class="flex items-start">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-gold mr-3 mt-0.5 flex-shrink-0" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
<span>Scalability without proportional staffing increases</span>
</li>
</ul>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="mb-12">
<h3 class="font-sans text-xl font-bold text-metallic mb-4">Problem: Disconnected Systems</h3>
<div class="flex items-center mb-6">
<div class="w-8 h-8 rounded-full bg-red-500/20 flex items-center justify-center mr-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-red-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
</svg>
</div>
<p class="text-white/90">Information trapped in silos leads to inefficiencies and miscommunication</p>
</div>
<div class="relative">
<div class="gold-border rounded-xl p-6 gold-gradient">
<div class="flex">
<div class="mr-4">
<div class="w-12 h-12 rounded-lg bg-red-500/10 flex items-center justify-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-red-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg>
</div>
</div>
<div>
<h4 class="font-sans font-bold text-red-300">Manual Process Impact</h4>
<p class="text-sm mt-1 text-red-200/90">25% of employee time spent on reconciling data between systems</p>
</div>
</div>
</div>
</div>
</div>
<div class="mb-12">
<h3 class="font-sans text-xl font-bold text-metallic mb-4">Solution: Unified Automation</h3>
<div class="flex items-center mb-6">
<div class="w-8 h-8 rounded-full bg-green-500/20 flex items-center justify-center mr-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-green-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" />
</svg>
</div>
<p class="text-white/90">N8N workflows create seamless integration between applications</p>
</div>
<div class="relative">
<div class="gold-border rounded-xl p-6 gold-gradient">
<div class="flex">
<div class="mr-4">
<div class="w-12 h-12 rounded-lg bg-green-500/10 flex items-center justify-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-green-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" />
</svg>
</div>
</div>
<div>
<h4 class="font-sans font-bold text-green-300">Automation Result</h4>
<p class="text-sm mt-1 text-green-200/90">Real-time data synchronization across all platforms</p>
</div>
</div>
</div>
</div>
</div>
<div class="grid grid-cols-3 gap-4 mt-12">
<div class="gold-gradient border border-gold/30 p-4 rounded-lg text-center">
<div class="text-2xl font-bold text-gold font-sans">87%</div>
<div class="text-xs mt-1 text-gold/80">Of businesses report improved efficiency</div>
</div>
<div class="gold-gradient border border-gold/30 p-4 rounded-lg text-center">
<div class="text-2xl font-bold text-gold font-sans">63%</div>
<div class="text-xs mt-1 text-gold/80">Reduction in process completion time</div>
</div>
<div class="gold-gradient border border-gold/30 p-4 rounded-lg text-center">
<div class="text-2xl font-bold text-gold font-sans">9.2x</div>
<div class="text-xs mt-1 text-gold/80">ROI on automation investments</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Additional pages would follow the same pattern -->
<!-- Page 20: Final Page -->
<div class="page tech-pattern relative">
<div class="page-content min-h-screen flex flex-col items-center justify-center text-center pb-20">
<div class="mb-12">
<div class="w-24 h-24 mx-auto mb-8 bg-gradient-to-br from-gold to-metallic rounded-full flex items-center justify-center floating">
<svg xmlns="http://www.w3.org/2000/svg" class="h-12 w-12 text-deepblack" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z" />
</svg>
</div>
<h2 class="text-4xl md:text-5xl font-bold mb-6">Your Automation Journey Begins Now</h2>
<p class="text-xl text-gold/90 max-w-2xl mx-auto">
You've gained the knowledge to transform your business operations. Implement what you've learned and join the ranks of intelligent, future-ready enterprises.
</p>
</div>
<div class="mt-12 w-full max-w-md">
<div class="gold-gradient border border-gold/30 rounded-xl p-8 mb-10">
<h3 class="font-sans text-lg font-bold text-metallic mb-4">Continue Your Learning</h3>
<p class="mb-6 text-white/90">
Enroll in the Complete N8N Business Automation Mastery Course for hands-on implementation guidance.
</p>
<button class="w-full py-3 bg-gradient-to-r from-gold to-metallic text-deepblack font-sans font-bold rounded-lg hover:opacity-90 transition-opacity">
Enroll Now
</button>
</div>
<div class="text-gold/70 mb-4">Connect With Us</div>
<div class="flex justify-center space-x-6">
<a href="#" class="text-gold hover:text-metallic transition-colors">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-linkedin"><path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"></path><rect x="2" y="9" width="4" height="12"></rect><circle cx="4" cy="4" r="2"></circle></svg>
</a>
<a href="#" class="text-gold hover:text-metallic transition-colors">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-twitter"><path d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"></path></svg>
</a>
<a href="#" class="text-gold hover:text-metallic transition-colors">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-globe"><circle cx="12" cy="12" r="10"></circle><line x1="2" y1="12" x2="22" y2="12"></line><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"></path></svg>
</a>
<a href="#" class="text-gold hover:text-metallic transition-colors">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-github"><path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"></path></svg>
</a>
</div>
<div class="mt-10 pt-6 border-t border-gold/10">
<p class="text-sm text-gold/50">© 2023 N8N Automation Mastery. All rights reserved.</p>
</div>
</div>
</div>
</div>
</div>
<script>
// Page scroll detection
let currentPage = 1;
const totalPages = 20;
const ebookContainer = document.getElementById('ebook-container');
const pageCounter = document.getElementById('current-page');
function updatePageCounter() {
const scrollPosition = window.scrollY;
const windowHeight = window.innerHeight;
const currentPage = Math.floor(scrollPosition / windowHeight) + 1;
if (currentPage >= 1 && currentPage <= totalPages) {
pageCounter.textContent = currentPage;
}
}
window.addEventListener('scroll', updatePageCounter);
window.addEventListener('resize', updatePageCounter);
window.addEventListener('load', updatePageCounter);
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=RicodeFe81/n8n" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>