Feat: Home page content updated with new marketing images. DOG section styles updated for marketing materials.

This commit is contained in:
2025-08-01 12:37:08 +01:00
parent 5c4128deca
commit 36133d8859
55 changed files with 4704 additions and 456 deletions

View File

@@ -70,3 +70,9 @@ def privacy_policy():
@routes_legal.route('/robots.txt', methods=['GET'])
def robots_txt():
return send_from_directory('static', 'docs/robots.txt')
@routes_legal.route('/favicon.ico', methods=['GET'])
def favicon_ico():
return send_from_directory('static', 'images/fetch-metrics-logo.ico', mimetype='image/vnd.microsoft.icon') # -and-company-name-curved-0.5
@routes_legal.route('/sitemap.xml', methods=['GET'])
def sitemap_xml():
return send_from_directory('static', 'docs/sitemap.xml')