feat: Add route for Open Source Compliance page

Added a new route `/oss-compliance` that renders the
`oss_compliance.html` template
This commit is contained in:
Cipher Vance 2025-07-23 11:14:55 -05:00
parent 52f947c11b
commit 7d8bab3b8f
2 changed files with 14 additions and 0 deletions

View file

@ -24,6 +24,10 @@ def pricing():
def solutions():
return render_template('solutions.html')
@main.route('/oss-compliance')
def oss_compliance():
return render_template('oss_compliance.html')
@main.route('/about')
def about():
return render_template('about.html')