From afb37d9f2827c3fa995172872860cc1fd23c6e06 Mon Sep 17 00:00:00 2001 From: Matthew Iverson Date: Thu, 28 Nov 2024 00:52:26 -0500 Subject: [PATCH] Delete Modules/Submenus/about.py --- Modules/Submenus/about.py | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 Modules/Submenus/about.py diff --git a/Modules/Submenus/about.py b/Modules/Submenus/about.py deleted file mode 100644 index 8f677bb..0000000 --- a/Modules/Submenus/about.py +++ /dev/null @@ -1,39 +0,0 @@ -# about.py -import webbrowser - -def open_start_me(): - """ - Opens the start.me webpage. - """ - url = "https://start.me/p/qbzw4e/cyber-security" - webbrowser.open(url) - print(f"Opening {url}") - -def open_my_website(): - """ - Opens the user's personal website. - """ - url = "https://infinit3i.com/" - webbrowser.open(url) - print(f"Opening {url}") - -def about_submenu(): - """ - Submenu for the About section. - """ - while True: - print("\nAbout") - print("[ST] Visit Start.me") - print("[I] Visit My Website") - print("[0] Return to Main Menu") - - choice = input("Enter your choice: ").strip().lower() - - if choice in ["st","start"]: - open_start_me() - elif choice == "i": - open_my_website() - elif choice == "0": - break - else: - print("Invalid choice.")