main #11

Merged
YasinOnm08 merged 28 commits from React-Group/ai-virtual-assistant:main into main 2024-09-17 13:24:39 +02:00
Showing only changes of commit f536885785 - Show all commits

View file

@ -31,5 +31,15 @@ def index():
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__':
APP.run(debug=True)
APP.run(debug=True)