add few AI faces

This commit is contained in:
if 2023-03-26 22:41:33 +03:00
parent 5c51939126
commit a182d878ed
10 changed files with 2 additions and 1 deletions

View File

Before

Width:  |  Height:  |  Size: 153 KiB

After

Width:  |  Height:  |  Size: 153 KiB

View File

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.2 MiB

View File

Before

Width:  |  Height:  |  Size: 4.5 MiB

After

Width:  |  Height:  |  Size: 4.5 MiB

View File

Before

Width:  |  Height:  |  Size: 5.4 MiB

After

Width:  |  Height:  |  Size: 5.4 MiB

View File

Before

Width:  |  Height:  |  Size: 1.6 MiB

After

Width:  |  Height:  |  Size: 1.6 MiB

BIN
assets/img/ai_face5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 MiB

BIN
assets/img/ai_face6.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 MiB

BIN
assets/img/ai_face7.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 MiB

BIN
assets/img/ai_face8.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 MiB

View File

@ -14,6 +14,7 @@ current_dir = Path(__file__).parent if "__file__" in locals() else Path.cwd()
css_file = current_dir / "src/styles/.css"
assets_dir = current_dir / "assets"
icons_dir = assets_dir / "icons"
img_dir = assets_dir / "img"
tg_svg = icons_dir / "tg.svg"
# --- GENERAL SETTINGS ---
@ -79,7 +80,7 @@ if __name__ == "__main__":
st.markdown("---")
main()
st.markdown("---")
st.image(f"assets/{get_random_img(get_files_in_dir(assets_dir))}")
st.image(f"{img_dir}/{get_random_img(get_files_in_dir(img_dir))}")
st.markdown("---")
selected_footer = option_menu(
menu_title=None,