mirror of
https://github.com/Zie619/n8n-workflows.git
synced 2026-08-28 19:24:10 +08:00
feat: add Trusera AI-BOM banner to GitHub Pages
- Add prominent banner with Trusera logo and mascot - Link to github.com/Trusera/ai-bom repository - Highlight AI-BOM scanner for n8n workflows - Professional gradient design with floating animation - Mobile responsive layout - Update footer with Trusera branding
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 1.3 MiB |
Binary file not shown.
|
After Width: | Height: | Size: 502 KiB |
+178
-3
@@ -8,8 +8,181 @@
|
||||
<link rel="stylesheet" href="css/styles.css">
|
||||
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>⚡</text></svg>">
|
||||
<meta name="last-updated" content="2025-11-03T11:28:31.626239">
|
||||
<style>
|
||||
/* Trusera Banner Styles */
|
||||
.trusera-banner {
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
padding: 20px 0;
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.trusera-banner::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
|
||||
background-size: cover;
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
.trusera-banner-content {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 20px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 30px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.trusera-banner-left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.trusera-mascot {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
|
||||
animation: float 3s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes float {
|
||||
0%, 100% { transform: translateY(0px); }
|
||||
50% { transform: translateY(-10px); }
|
||||
}
|
||||
|
||||
.trusera-logo {
|
||||
height: 50px;
|
||||
filter: brightness(0) invert(1);
|
||||
opacity: 0.95;
|
||||
}
|
||||
|
||||
.trusera-banner-text {
|
||||
flex: 1;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.trusera-banner-title {
|
||||
font-size: 24px;
|
||||
font-weight: 700;
|
||||
margin: 0 0 8px 0;
|
||||
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.trusera-badge {
|
||||
background: rgba(255, 255, 255, 0.2);
|
||||
padding: 4px 12px;
|
||||
border-radius: 20px;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
backdrop-filter: blur(10px);
|
||||
}
|
||||
|
||||
.trusera-banner-subtitle {
|
||||
font-size: 16px;
|
||||
margin: 0;
|
||||
opacity: 0.95;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.trusera-banner-cta {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
background: white;
|
||||
color: #667eea;
|
||||
padding: 14px 28px;
|
||||
border-radius: 8px;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
font-size: 16px;
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
||||
transition: all 0.3s ease;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.trusera-banner-cta:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
|
||||
background: #f8f9fa;
|
||||
}
|
||||
|
||||
.trusera-banner-cta svg {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.trusera-banner-content {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.trusera-banner-left {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.trusera-banner-title {
|
||||
font-size: 20px;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.trusera-banner-subtitle {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.trusera-mascot {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
}
|
||||
|
||||
.trusera-logo {
|
||||
height: 40px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Trusera AI-BOM Banner -->
|
||||
<div class="trusera-banner">
|
||||
<div class="trusera-banner-content">
|
||||
<div class="trusera-banner-left">
|
||||
<img src="images/trusera-mascot.png" alt="Trusera Mascot" class="trusera-mascot">
|
||||
<img src="images/trusera-logo.png" alt="Trusera Logo" class="trusera-logo">
|
||||
</div>
|
||||
<div class="trusera-banner-text">
|
||||
<h2 class="trusera-banner-title">
|
||||
Scan Your n8n Workflows for AI Components
|
||||
<span class="trusera-badge">Open Source</span>
|
||||
</h2>
|
||||
<p class="trusera-banner-subtitle">
|
||||
🔒 First AI Bill of Materials (AI-BOM) scanner for n8n • Discover Shadow AI • Free CLI Tool
|
||||
</p>
|
||||
</div>
|
||||
<a href="https://github.com/Trusera/ai-bom" target="_blank" rel="noopener" class="trusera-banner-cta">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor">
|
||||
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"></path>
|
||||
</svg>
|
||||
Try AI-BOM Free →
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<header class="header">
|
||||
<div class="container">
|
||||
<h1 class="logo">
|
||||
@@ -113,17 +286,19 @@
|
||||
🚀 Powered by the
|
||||
<a href="https://github.com/Zie619/n8n-workflows" target="_blank">N8N Workflow Collection</a>
|
||||
| Built with ❤️ for the n8n community
|
||||
| 🔒 <a href="https://github.com/Trusera/ai-bom" target="_blank">Scan with AI-BOM</a>
|
||||
</p>
|
||||
<p class="footer-links">
|
||||
<a href="https://n8n.io" target="_blank">n8n.io</a> |
|
||||
<a href="https://community.n8n.io" target="_blank">Community</a> |
|
||||
<a href="https://docs.n8n.io" target="_blank">Documentation</a>
|
||||
<a href="https://docs.n8n.io" target="_blank">Documentation</a> |
|
||||
<a href="https://trusera.dev" target="_blank">Trusera</a>
|
||||
</p>
|
||||
<p class="footer-meta">Last updated: November 2025</p>
|
||||
<p class="footer-meta">Last updated: November 2025 • Secured by Trusera AI-BOM</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="js/search.js"></script>
|
||||
<script src="js/app.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user