diff --git a/docs/Content.md b/docs/Content.md
new file mode 100644
index 0000000..4f3a7a3
--- /dev/null
+++ b/docs/Content.md
@@ -0,0 +1,23 @@
+# Who are we
+- Unconventional team for extraordinary challenges
+We love working with small teams to tackle hard tasks. We are passionate about maximizing the value we bring to the company and project, while taking care of the people we work with.
+
+We are experienced in a wide array of technologies, projects and companies.
+
+We are eternal learners that feel a visceral need to deeply understand a problem or subject once it is on their plate.
+
+We don't cheap out, we always give our all, we always try to balance all the factors to find the best possible solution to any situation.
+
+The status quo does not exist, we always improve, automate, look for exponential gains across the stack.
+
+- Hard skills
+Expert full stack developer, from embedded to frontend and every thing in between including backend, cloud, ci/cd, data pipelines, networking, bare metal infrastructure, etc.
+Extremely full stack
+- Soft skills
+Philosophy, deep human values, wisdom, strength, goodwill
+- History
+
+- Who
+- What
+- Why
+- When
diff --git a/src/app.rs b/src/app.rs
index 5b877d7..712bbe7 100644
--- a/src/app.rs
+++ b/src/app.rs
@@ -1,5 +1,6 @@
use crate::routes::whymdc::*;
use crate::routes::home::*;
+use crate::routes::blog::*;
use leptos::*;
use leptos_meta::*;
use leptos_router::*;
@@ -17,15 +18,22 @@ pub fn App(cx: Scope) -> impl IntoView {
"Thanks Percona"
+"We love working with small teams to tackle hard tasks. We are passionate about maximizing the value we bring to the company and project, while taking care of the people we work with."
"We are experienced in a wide array of technologies, projects and companies."
diff --git a/src/routes/mod.rs b/src/routes/mod.rs index 3a61048..1bfe892 100644 --- a/src/routes/mod.rs +++ b/src/routes/mod.rs @@ -1,2 +1,3 @@ pub mod whymdc; pub mod home; +pub mod blog;