Add profiles settings page

This commit is contained in:
2026-05-08 00:09:03 -04:00
parent 57b3beef57
commit ec0ba6b758
5 changed files with 209 additions and 1 deletions
@@ -2,6 +2,7 @@ mod download_actions;
mod download_labels;
mod downloads;
mod plugins;
mod profiles;
use ely_browser_core::BrowserSnapshot;
use ely_design_system::{colors, spacing};
@@ -26,6 +27,7 @@ impl ElyShell {
"ely://history" => self.render_history_page(snapshot, cx),
"ely://archive" => self.render_archive_page(snapshot, cx),
"ely://settings/plugins" => self.render_plugins_page(snapshot, cx),
"ely://settings/profiles" => self.render_profiles_page(snapshot, cx),
_ => render_default_page(tab),
}
}