Links
AI / Agents
gdtest-hero-basic
A test package for hero section rendering.
Features
- Simple API
- Well documented
Hero section with logo, name, tagline, and top-of-file badges. Tests that providing a logo config auto-enables the hero section on the landing page with badge extraction from the README.
Source files
assets/
logo.svg
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32"> <circle cx="16" cy="16" r="14" fill="#2780e3"/> </svg>
gdtest_hero_basic/
__init__.py
"""A test package for hero section rendering."""
__version__ = "0.1.0"
__all__ = ["greet"]
def greet(name: str) -> str:
"""
Greet someone by name.
Parameters
----------
name
The name of the person to greet.
Returns
-------
str
A greeting string.
"""
return f"Hello, {name}!"README.md
# gdtest-hero-basic [](https://pypi.org/p/gdtest-hero-basic/) [](https://opensource.org/licenses/MIT) A test package for hero section rendering. ## Features - Simple API - Well documented
great-docs.yml
display_name: Hero Basic logo: assets/logo.svg