diff --git a/docs/index.md b/docs/index.md
index 3eec2c8..534b9f4 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -1,8 +1,8 @@
---
layout: default
-title: Sophia - A Rust HTTP Client
+title: Sophia - The elegant full-stack web framework
nav_order: 1
-description: "A straightforward, non-opinionated, developer-centric HTTP client library for Rust"
+description: "🌟 The elegant full-stack web framework that makes Rust web development effortless"
permalink: /
---
diff --git a/rustfmt.toml b/rustfmt.toml
new file mode 100644
index 0000000..2d2cb8a
--- /dev/null
+++ b/rustfmt.toml
@@ -0,0 +1,3 @@
+max_width = 100
+chain_width = 20
+use_small_heuristics = "Max"
\ No newline at end of file
diff --git a/src/lib.rs b/src/lib.rs
index 3e75cc7..32e0c84 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -32,7 +32,9 @@ impl Sophia {
let mut server = Vetis::new(config);
- let result = server.run(handler).await;
+ let result = server
+ .run(handler)
+ .await;
if let Err(e) = result {
error!("Failed to start server: {}", e);