Fix tagline consistency: Don't import it. Build it.

- Remove 'just' from all instances of the tagline
- Update banner to lead with tagline
- Consistent branding across docs, CLI, and demos
This commit is contained in:
Vijay Janapa Reddi
2025-12-02 21:17:41 -05:00
parent 660ba60d0f
commit 2c5ef2e3cf
10 changed files with 902 additions and 6 deletions

View File

@@ -0,0 +1,7 @@
"""Developer command group for TinyTorch CLI."""
from .dev import DevCommand
from .preflight import PreflightCommand
__all__ = ['DevCommand', 'PreflightCommand']

View File

@@ -33,7 +33,7 @@ def print_banner(compact: bool = False):
banner_text.append("Tiny", style="dim cyan")
banner_text.append("🔥", style="red")
banner_text.append("TORCH", style="bold orange1")
banner_text.append(": Don't just import it. Build it.", style="dim")
banner_text.append(": Don't import it. Build it.", style="dim")
console.print(Panel(banner_text, style="bright_blue", padding=(1, 2)))
def print_compact_banner():
@@ -44,7 +44,7 @@ def print_compact_banner():
banner_text.append("Tiny", style="dim cyan")
banner_text.append("\n🔥", style="red")
banner_text.append("TORCH", style="bold orange1")
banner_text.append(": Don't just import it. Build it.", style="dim")
banner_text.append(": Don't import it. Build it.", style="dim")
console.print(Panel(banner_text, style="bright_blue", padding=(1, 2)))
def print_ascii_logo(compact: bool = False):