BMAD-METHOD/website/src/components/Banner.astro

63 lines
1.4 KiB
Plaintext

---
import { getSiteUrl } from '../lib/site-url.mjs';
const llmsFullUrl = `${getSiteUrl()}/llms-full.txt`;
---
<div class="ai-banner" role="note" aria-label="AI documentation notice">
<span>🤖 Consolidated, AI-optimized BMAD docs: <a href={llmsFullUrl}>llms-full.txt</a>. Fetch this plain text file for complete context.</span>
</div>
<style>
.ai-banner {
width: 100%;
height: var(--ai-banner-height, 2.75rem);
background: #334155;
color: #cbd5e1;
padding: 0.5rem 1rem;
font-size: 0.875rem;
border-bottom: 1px solid rgba(140, 140, 255, 0.15);
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
font-family: system-ui, sans-serif;
}
/* Truncate text on narrow screens */
.ai-banner span {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 100%;
}
.ai-banner a {
color: #B9B9FF;
text-decoration: none;
font-weight: 600;
}
.ai-banner a:hover {
text-decoration: underline;
}
.ai-banner a:focus-visible {
outline: 2px solid #B9B9FF;
outline-offset: 2px;
border-radius: 2px;
}
/* Match navbar padding at breakpoints */
@media (min-width: 50rem) {
.ai-banner {
padding-left: 2.5rem;
padding-right: 2.5rem;
}
}
@media (min-width: 72rem) {
.ai-banner {
padding-left: 3rem;
padding-right: 3rem;
}
}
</style>