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

@@ -14,7 +14,7 @@ Home Page Controller.
from business_objects.api import API
from models.model_view_home import Model_View_Home
# external
from flask import render_template, jsonify, Blueprint
from flask import render_template, jsonify, Blueprint, send_from_directory
routes_core_home = Blueprint('routes_core_home', __name__)
@@ -28,4 +28,4 @@ def home():
except Exception as e:
return jsonify(error=str(e)), 403
return html_body

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')