use crate::utils::ConstTextMap;
use phf_macros::phf_ordered_map;
pub static DEFAULT_TEXT_MAP: ConstTextMap = phf_ordered_map!();
pub const DEFAULT_LOCAL_LISTENING_ADDRESS: &str = "127.0.0.1:3000";
pub const DEFAULT_OUTBOUND_LISTENING_ADDRESS: &str = "0.0.0.0:3000";
pub const DEFAULT_TEXT_ITEM: &str = "default";
pub const DEFAULT_CONTACT_ITEM: &str = "company";
pub const DEFAULT_NO_TEXT: &str = "";
pub const OPT_INVERTED_DIRECTION: &str = "inverted";
pub const PARAMS_ID: &str = "id";
pub const PARAMS_TITLE: &str = "title";
pub const PARAMS_TYPE: &str = "type";
pub const PARAMS_CSS_CLASS: &str = "class";
pub const PARAMS_SOCIAL_LIST: &str = "social_list";
pub const PARAMS_ITEM: &str = "item";
pub const PARAMS_INVERTED: &str = "inverted";
pub const PARAMS_SECTION: &str = "section";
pub const PARAMS_FUNCTION: &str = "function";
pub const PARAMS_TARGET: &str = "target";
pub const PARAMS_SIZE: &str = "size";
pub const PARAMS_CONTENTS: &str = "contents";
pub const PARAMS_MODULE: &str = "module";
pub const PARAMS_ENDPOINT: &str = "endpoint";
pub const SECTION_TEXT: &str = "text";
pub const SECTION_PERSONNEL: &str = "personnel";
pub const SECTION_CONTACT: &str = "contact";
pub const SECTION_TITLES: &str = "titles";
pub const SECTION_API: &str = "api";
pub const SECTION_SOCIALS: &str = "socials";
pub const SECTION_SERVICES: &str = "services";
pub const SECTION_PRODUCTS: &str = "products";
pub const SECTION_LINKS: &str = "links";
pub const SECTION_MODULES: &str = "modules";
pub const SECTION_ENDPOINTS: &str = "endpoints";
pub const SECTION_ALT: &str = "alt";
pub const SECTION_DEFAULT: &str = "default";
pub const CONTENT_TYPE_PDF: &str = "application/pdf";
pub const CONTENT_TYPE_HTML: &str = "text/html";
pub const FORM_DATA_TYPE_PDF: &str = "pdf";
pub const FORM_DATA_TYPE_HTML: &str = "html";
pub const FORM_DATA_TYPE_MARKDOWN: &str = "markdown";
pub const FORM_DATA_TYPE_DEFAULT: &str = "text";
pub const LANG_EN: &str = "en";
pub const LANG_ES: &str = "es";
pub const DEFAULT_ICON_STYLE: &str = "fa-solid";
pub const DEFAULT_ROBOT_TXT: &str = r"
User-agent: *
Disallow: /static/
";
pub const DEFAULT_SCRIPT: &str = "default";
pub const DEFAULT_SCRIPT_MODULE: &str = "module";
pub const DEFAULT_SCRIPT_IMPORT: &str = "import";
pub const DEFAULT_EMPTY_PARAMS: &[(&str, &str); 1] = &[("", "")];