Skip to content

Commit e0318d9

Browse files
forcetrainerclaudebmadcode
authored
feat: update website header with new BMAD Method branding (#1352)
* docs: apply style guide to TEA Lite quickstart - Remove duplicate H1 header (frontmatter provides title) - Remove horizontal rules throughout - Convert Prerequisites to admonition - Add Quick Path TL;DR admonition - Convert Key Takeaway to tip admonition - Convert TEA Workflows list to Quick Reference table - Convert Troubleshooting to Common Questions FAQ format - Rename Need Help to Getting Help section - Remove redundant Feedback section Also adds missing @clack/prompts dependency from upstream merge. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * docs: spell out acronyms in TEA Lite quickstart - MCP → Model Context Protocol - E2E → End-to-end (also fix missing article) - CI/CD → Continuous integration/continuous deployment - ATDD → Acceptance Test-Driven Development - TDD → Test-Driven Development - NFR → non-functional requirements - Remove inaccurate CRUD reference Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * docs: spell out TDD in ATDD link text Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * feat: update branding with new wordmark logo and banner - Add banner image to README header - Replace website logo with wordmark, hiding title text - Left-align logo with sidebar by reducing header padding Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * docs: update README banner to new design with waveform Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * feat: add banner to docs website welcome page - Revert README to original banner - Add waveform banner to docs site welcome page Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * feat: use waveform banner as website header logo - Remove banner from welcome page content - Update header logo to use banner-bmad-method2.png Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * feat: add separate logo for dark mode Use banner-bmad-method-dark.png in dark mode for better blending Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * feat: update header logos for light and dark modes - Light mode: bmad-light.png (dark blue background with lightning) - Dark mode: bmad-dark.png (light background variant) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * chore: clean up unused banner images and add readme2 - Remove unused banner-bmad-method2.png and bmad-wordmark.png - Add readme2.md with upcoming features section - Update banner-bmad-method-dark.png Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * chore: remove unused banner image variants Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * feat: finalize header logo graphics - Rename bmad-light2.png to bmad-light.png as final version - Remove readme2.md draft Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> Co-authored-by: Brian <bmadcode@gmail.com>
1 parent 4a983d6 commit e0318d9

File tree

8 files changed

+11
-9
lines changed

8 files changed

+11
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# BMad Method
1+
![BMad Method](banner-bmad-method.png)
22

33
[![Version](https://img.shields.io/npm/v/bmad-method?color=blue&label=version)](https://www.npmjs.com/package/bmad-method)
44
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)

Wordmark.png

23 KB
Loading

banner-bmad-method.png

366 KB
Loading

docs/tutorials/getting-started/tea-lite-quickstart.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,15 @@ By the end of this 30-minute tutorial, you'll have:
1313
- Passing tests for an existing demo app feature
1414

1515
:::note[Prerequisites]
16-
- Node.js installed (v18 or later)
16+
- Node.js installed (v20 or later)
1717
- 30 minutes of focused time
18-
19-
- We'll use TodoMVC (<https://todomvc.com/examples/react/dist/>) as our demo app
18+
- We'll use TodoMVC (<https://todomvc.com/examples/react/>) as our demo app
2019
:::
2120

2221
:::tip[Quick Path]
2322
Load TEA (`*tea`) → scaffold framework (`*framework`) → create test plan (`*test-design`) → generate tests (`*automate`) → run with `npx playwright test`.
2423
:::
2524

26-
2725
## TEA Approaches Explained
2826

2927
Before we start, understand the three ways to use TEA:

website/astro.config.mjs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,10 @@ export default defineConfig({
3838
tagline: 'AI-driven agile development with specialized agents and workflows that scale from bug fixes to enterprise platforms.',
3939

4040
logo: {
41-
src: './public/img/logo.svg',
42-
alt: 'BMAD Logo',
41+
light: './public/img/bmad-light.png',
42+
dark: './public/img/bmad-dark.png',
43+
alt: 'BMAD Method',
44+
replacesTitle: true,
4345
},
4446
favicon: '/favicon.ico',
4547

website/public/img/bmad-dark.png

64.3 KB
Loading

website/public/img/bmad-light.png

40.3 KB
Loading

website/src/styles/custom.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,8 @@ header.header .header.sl-flex {
222222

223223
.site-title {
224224
font-weight: 700;
225+
margin-left: 0;
226+
padding-left: 0;
225227
}
226228

227229
/* Logo sizing - constrain to reasonable size */
@@ -470,14 +472,14 @@ footer {
470472
/* Responsive padding on navbar row only - banner stays full-width */
471473
@media (min-width: 50rem) {
472474
header.header .header.sl-flex {
473-
padding-left: 2.5rem;
475+
padding-left: 1rem;
474476
padding-right: 2.5rem;
475477
}
476478
}
477479

478480
@media (min-width: 72rem) {
479481
header.header .header.sl-flex {
480-
padding-left: 3rem;
482+
padding-left: 1rem;
481483
padding-right: 3rem;
482484
}
483485
}

0 commit comments

Comments
 (0)