feat(us): adds contact and about sections

This commit is contained in:
2024-12-10 01:05:56 -03:00
parent 5cd59bee2d
commit 93bb84f2a2
9 changed files with 108 additions and 2 deletions

4
app/us/__init__.py Normal file
View File

@@ -0,0 +1,4 @@
from flask import Blueprint
bp = Blueprint('us', __name__)
from app.us import routes