Some checks failed
CI / lint-and-test (push) Has been cancelled
- Enable contact form fields with component IDs - Add callback for Formspree POST with JSON/AJAX - Include honeypot spam protection (_gotcha field) - Handle validation, loading, success/error states - Clear form on successful submission - Add lessons learned documentation Closes #92, #93, #94 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
6 lines
139 B
Python
6 lines
139 B
Python
"""Application-level callbacks for the portfolio app."""
|
|
|
|
from . import contact, sidebar, theme
|
|
|
|
__all__ = ["contact", "sidebar", "theme"]
|