Spaces:
Sleeping
Sleeping
File size: 5,033 Bytes
1f725d8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | <!-- templates/home.html -->
{% extends "base.html" %} {% block title %}AIAgents - AI-Powered Multi-Agent
Platform{% endblock %} {% block styles %}
<link rel="stylesheet" href="/static/home.css" />
{% endblock %} {% block content %}
<!-- Hero Section -->
<section class="hero">
<div class="hero-glow"></div>
<div class="hero-content">
<div class="hero-badge">
<span class="badge-dot"></span>
AI Agent Platform • v1.0
</div>
<h1 class="hero-title">
The Future of<br />
<span class="gradient-text">Intelligent Agents</span>
</h1>
<p class="hero-sub">
Build, deploy, and interact with powerful AI agents. Currently featuring a
RAG-powered multi-turn chat agent — your intelligent document companion.
</p>
<div class="hero-actions">
<a href="#features" class="btn-premium">Explore Features</a>
<a href="/chat" class="btn-outline">Launch Agent →</a>
</div>
</div>
<div class="hero-visual">
<div class="orbit-ring ring-1"></div>
<div class="orbit-ring ring-2"></div>
<div class="orbit-ring ring-3"></div>
<div class="core-node">
<span>AI</span>
</div>
</div>
</section>
<!-- Features Section -->
<section class="features" id="features">
<div class="section-header">
<h2>Available Agents</h2>
<p>Powerful capabilities, accessible through a seamless interface.</p>
</div>
<div class="features-grid">
<!-- RAG Chat Agent Card -->
<a href="/chat" class="feature-card featured">
<div class="card-badge">Available Now</div>
<div class="card-icon">
<svg
width="28"
height="28"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<path
d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"
/>
</svg>
</div>
<h3>Chat MultiGraph</h3>
<p>
A context-aware RAG agent with multi-turn memory. Upload a document (PDF
or TXT) and have natural, intelligent conversations about its content.
</p>
<div class="card-tags">
<span>RAG</span>
<span>LangGraph</span>
<span>Memory</span>
</div>
<div class="card-cta">Start Chatting →</div>
</a>
<!-- Web Research Agent Card -->
<a href="/web" class="feature-card featured">
<div class="card-badge">Available Now</div>
<div class="card-icon">
<svg
width="28"
height="28"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<circle cx="11" cy="11" r="8" />
<line x1="21" y1="21" x2="16.65" y2="16.65" />
</svg>
</div>
<h3>Web Research Agent</h3>
<p>
Autonomously browse the web, gather intelligence, and synthesize answers
from live data sources.
</p>
<div class="card-tags">
<span>Agentic</span>
<span>Search</span>
</div>
<div class="card-cta">Launch Agent →</div>
</a>
<!-- Blog Agent Card -->
<a href="/blog" class="feature-card featured">
<div class="card-badge">Available Now</div>
<div class="card-icon">
<svg
width="28"
height="28"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<path d="M12 20h9" />
<path d="M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z" />
</svg>
</div>
<h3>Blog Agent</h3>
<p>
Generate full research-backed blog posts end-to-end with AI-generated
visuals and real-time progress tracking.
</p>
<div class="card-tags">
<span>LangGraph</span>
<span>Research</span>
<span>Markdown</span>
</div>
<div class="card-cta">Start Writing →</div>
</a>
<!-- Coming Soon Card -->
<div class="feature-card coming-soon">
<div class="card-badge">Coming Soon</div>
<div class="card-icon muted">
<svg
width="28"
height="28"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<polyline points="16 18 22 12 16 6" />
<polyline points="8 6 2 12 8 18" />
</svg>
</div>
<h3>Code Agent</h3>
<p>
An autonomous coding agent that writes, debugs, and explains code across
multiple languages.
</p>
<div class="card-tags">
<span>Code</span>
<span>Autonomous</span>
</div>
</div>
</div>
</section>
{% endblock %} {% block scripts %}
<script>
// Smooth scroll for hero CTA
document
.querySelector('a[href="#features"]')
.addEventListener("click", function (e) {
e.preventDefault();
document
.getElementById("features")
.scrollIntoView({ behavior: "smooth" });
});
</script>
{% endblock %}
|