diff --git a/docs/predefined-settings.toml b/docs/predefined-settings.toml index e40e8af8..6ffa19cd 100644 --- a/docs/predefined-settings.toml +++ b/docs/predefined-settings.toml @@ -1,5 +1,5 @@ [app] -name = "PageTop Application" +name = "My App" description = "Developed with the amazing PageTop framework." # Default theme. theme = "Default" diff --git a/src/config.rs b/src/config.rs index e88a1669..0390f6f2 100644 --- a/src/config.rs +++ b/src/config.rs @@ -212,7 +212,7 @@ pub struct Settings { /// See [`Settings`]. pub struct App { /// El nombre de la aplicación. - /// Por defecto: *"PageTop App"*. + /// Por defecto: *"My App"*. pub name: String, /// Una descripción breve de la aplicación. /// Por defecto: *"Developed with the amazing PageTop framework."*. @@ -318,7 +318,7 @@ pub struct Server { default_settings!( // [app] - "app.name" => "PageTop App", + "app.name" => "My App", "app.description" => "Developed with the amazing PageTop framework.", "app.theme" => "Default", "app.language" => "en-US",