Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ services:
condition: service_healthy
required: false
volumes:
- ./finbot:/app/finbot
- sqlite_data:/app/data
- uploads:/app/uploads
- cache:/app/cache
Expand Down
6 changes: 5 additions & 1 deletion finbot/apps/finbot/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,16 @@
background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #06ffa5 100%);
-webkit-background-clip: text; background-clip: text;
-webkit-text-fill-color: transparent;
box-decoration-break: clone;
-webkit-box-decoration-break: clone;
}

.gradient-text-alt {
background: linear-gradient(90deg, #00d4ff, #06ffa5);
-webkit-background-clip: text; background-clip: text;
-webkit-text-fill-color: transparent;
box-decoration-break: clone;
-webkit-box-decoration-break: clone;
}

{% block extra_css %}{% endblock %}
Expand All @@ -88,7 +92,7 @@
<span class="text-cyan text-[10px] font-mono tracking-widest ml-1.5 hidden sm:inline">CTF</span>
</div>
</a>
<nav class="flex items-center space-x-1 sm:space-x-2">
<nav class="flex items-center space-x-3 sm:space-x-2">
{% block nav %}
<a href="/" class="text-text-3 hover:text-cyan transition text-sm px-3 py-2 rounded-lg hover:bg-white/[0.03]">Home</a>
<a href="/how-it-works" class="text-text-3 hover:text-cyan transition text-sm px-3 py-2 rounded-lg hover:bg-white/[0.03] hidden sm:inline-flex">How It Works</a>
Expand Down
8 changes: 4 additions & 4 deletions finbot/apps/finbot/templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@

{% block content %}
<!-- Hero -->
<section class="relative pt-32 pb-20 px-6">
<section class="relative pt-32 pb-20 px-6 overflow-hidden">
<div class="hero-glow"></div>
<div class="max-w-5xl mx-auto text-center relative">
<a href="https://genai.owasp.org/" target="_blank" rel="noopener" class="owasp-badge inline-flex items-center space-x-3 px-5 py-2.5 rounded-full glass border border-border-dim mb-10">
Expand All @@ -82,7 +82,7 @@
</div>
</div>

<h1 class="text-5xl sm:text-6xl md:text-7xl font-black text-text-1 tracking-tight mb-6 leading-[1.1]">
<h1 class="text-4xl sm:text-6xl md:text-7xl font-black text-text-1 tracking-tight mb-6 leading-[1.1]">
Hack the Agents.<br>
<span class="gradient-text">Secure the Future.</span>
</h1>
Expand All @@ -108,11 +108,11 @@ <h1 class="text-5xl sm:text-6xl md:text-7xl font-black text-text-1 tracking-tigh
</section>

<!-- What is FinBot -->
<section id="about" class="py-20 px-6">
<section id="about" class="py-20 px-6 overflow-hidden">
<div class="max-w-6xl mx-auto">
<div class="text-center mb-14">
<p class="font-mono text-cyan text-xs tracking-widest uppercase mb-3">What is OWASP FinBot?</p>
<h2 class="text-3xl sm:text-4xl font-bold text-text-1">An Agentic AI vendor management platform.<br class="hidden sm:block"> <span class="gradient-text-alt">Intentionally vulnerable.</span></h2>
<h2 class="text-2xl sm:text-4xl font-bold text-text-1">An Agentic AI vendor management platform.<br class="hidden sm:block"> <span class="gradient-text-alt whitespace-nowrap">Intentionally vulnerable.</span></h2>
</div>

<div class="grid md:grid-cols-3 gap-6">
Expand Down