docs: add project logo and branding assets

This commit is contained in:
Abdessamad Derraz
2026-04-03 14:17:53 +02:00
parent 1c0c502258
commit faf4236463
8 changed files with 19 additions and 2 deletions

BIN
.github/assets/banner-light.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 KiB

BIN
.github/assets/banner.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 KiB

BIN
.github/assets/favicon.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
.github/assets/logo.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

BIN
.github/assets/social-preview.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

View File

@@ -1,6 +1,10 @@
# RetroBIOS <p align="center">
<img src=".github/assets/banner.png" alt="RetroBIOS" width="400">
</p>
<p align="center">
Complete BIOS and firmware packs for Batocera, BizHawk, EmuDeck, Lakka, Recalbox, RetroArch, RetroBat, RetroDECK, RetroPie, and RomM. Complete BIOS and firmware packs for Batocera, BizHawk, EmuDeck, Lakka, Recalbox, RetroArch, RetroBat, RetroDECK, RetroPie, and RomM.
</p>
**7,302** verified files across **396** systems, ready to extract into your emulator's BIOS directory. **7,302** verified files across **396** systems, ready to extract into your emulator's BIOS directory.

View File

@@ -20,6 +20,8 @@ theme:
icon: material/brightness-4 icon: material/brightness-4
name: Switch to auto name: Switch to auto
font: false font: false
logo: assets/images/logo.png
favicon: assets/images/favicon.png
icon: icon:
logo: material/chip logo: material/chip
features: features:

View File

@@ -2260,6 +2260,15 @@ def main():
css_dest.parent.mkdir(parents=True, exist_ok=True) css_dest.parent.mkdir(parents=True, exist_ok=True)
shutil.copy2(css_src, css_dest) shutil.copy2(css_src, css_dest)
# Copy branding assets
images_dest = docs / "assets" / "images"
images_dest.mkdir(parents=True, exist_ok=True)
assets_src = Path(".github") / "assets"
for name, dest_name in [("logo.png", "logo.png"), ("favicon.png", "favicon.png")]:
src = assets_src / name
if src.exists():
shutil.copy2(src, images_dest / dest_name)
registry_path = Path(args.platforms_dir) / "_registry.yml" registry_path = Path(args.platforms_dir) / "_registry.yml"
registry = {} registry = {}
if registry_path.exists(): if registry_path.exists():
@@ -2405,6 +2414,8 @@ theme:
icon: material/brightness-4 icon: material/brightness-4
name: Switch to auto name: Switch to auto
font: false font: false
logo: assets/images/logo.png
favicon: assets/images/favicon.png
icon: icon:
logo: material/chip logo: material/chip
features: features: