Merge pull request 'Fixed subsides' (#14) from React-Group/ai-virtual-assistant:main into main

Reviewed-on: https://interstellardevelopment.org/code/code/sageTheDm/ai-virtual-assistant/pulls/14
This commit is contained in:
sageTheDm 2024-09-16 16:21:18 +02:00
commit f536885785

View file

@ -31,5 +31,15 @@ def index():
return render_template('index.html', messages=messages) return render_template('index.html', messages=messages)
@APP.route('/faq')
def faq():
return render_template('faq.html')
@APP.route('/contact')
def contact():
return render_template('contact.html')
if __name__ == '__main__': if __name__ == '__main__':
APP.run(debug=True) APP.run(debug=True)