diff --git a/imgs/header_bar_thin.png b/imgs/header_bar_thin.png new file mode 100644 index 0000000..e4be8ba Binary files /dev/null and b/imgs/header_bar_thin.png differ diff --git a/omnitool/gradio/app.py b/omnitool/gradio/app.py index 52b810c..beb0dd7 100644 --- a/omnitool/gradio/app.py +++ b/omnitool/gradio/app.py @@ -261,7 +261,7 @@ def get_header_image_base64(): try: # Get the absolute path to the image relative to this script script_dir = Path(__file__).parent - image_path = script_dir.parent.parent / "imgs" / "header_bar.png" + image_path = script_dir.parent.parent / "imgs" / "header_bar_thin.png" with open(image_path, "rb") as image_file: encoded_string = base64.b64encode(image_file.read()).decode()