15 lines
288 B
Python
15 lines
288 B
Python
from fasthtml.common import *
|
|
|
|
import config
|
|
|
|
|
|
def footer():
|
|
"""Creates a consistent footer."""
|
|
return Footer(
|
|
Div(
|
|
P(f"© 2025 {config.APP_NAME}. Built with FastHTML."),
|
|
cls="px-4 py-2"
|
|
),
|
|
cls="footer sm:footer-horizontal bg-neutral text-neutral-content"
|
|
)
|