diff --git a/doc/gui/extension/company_profile.py b/doc/gui/extension/company_profile.py index 84cb1313e..82144211f 100644 --- a/doc/gui/extension/company_profile.py +++ b/doc/gui/extension/company_profile.py @@ -14,11 +14,13 @@ example_library = ExampleLibrary() text_file_path = example_library.get_resource("resources/company_profile.md") +logo_path = example_library.get_resource("resources/taipy_logo.png") with open(text_file_path, "r") as file: text_content = file.read() page = """ +<|{logo_path}|image|width=100px|> <|{text_content}|text|mode=markdown|> """ diff --git a/doc/gui/extension/example_library/resources/taipy_logo.png b/doc/gui/extension/example_library/resources/taipy_logo.png new file mode 100644 index 000000000..0822eff0c Binary files /dev/null and b/doc/gui/extension/example_library/resources/taipy_logo.png differ