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>
This commit is contained in:
forcetrainer 2026-01-17 14:24:20 -05:00
parent 7fd39dffe7
commit f30a42864b
6 changed files with 8 additions and 5 deletions

View File

@ -1,4 +1,4 @@
# BMad Method
![BMad Method](banner-bmad-method.png)
[![Version](https://img.shields.io/npm/v/bmad-method?color=blue&label=version)](https://www.npmjs.com/package/bmad-method)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)

BIN
banner-bmad-method.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 366 KiB

BIN
bmad-wordmark.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -38,8 +38,9 @@ export default defineConfig({
tagline: 'AI-driven agile development with specialized agents and workflows that scale from bug fixes to enterprise platforms.',
logo: {
src: './public/img/logo.svg',
alt: 'BMAD Logo',
src: './public/img/bmad-wordmark.png',
alt: 'BMAD Method',
replacesTitle: true,
},
favicon: '/favicon.ico',

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -222,6 +222,8 @@ header.header .header.sl-flex {
.site-title {
font-weight: 700;
margin-left: 0;
padding-left: 0;
}
/* Logo sizing - constrain to reasonable size */
@ -470,14 +472,14 @@ footer {
/* Responsive padding on navbar row only - banner stays full-width */
@media (min-width: 50rem) {
header.header .header.sl-flex {
padding-left: 2.5rem;
padding-left: 1rem;
padding-right: 2.5rem;
}
}
@media (min-width: 72rem) {
header.header .header.sl-flex {
padding-left: 3rem;
padding-left: 1rem;
padding-right: 3rem;
}
}