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 { // sets the document title - + <Title text="NationTech"/> // content for this welcome page <Router> - <main> + <main class="text-white bg-indigo-950 min-h-screen "> + <div class="max-w-3xl container mx-auto"> + <nav class="py-4 flex space-x-4"> + <a href="/">"Home"</a> + <a href="/blog">"Blog"</a> + </nav> <Routes> <Route path="" view=|cx| view! { cx, <HomePage/> }/> <Route path="/why-micro-datacenters" view=|cx| view! { cx, <WhyMicroDatacenters/> }/> + <Route path="/blog" view=|cx| view! { cx, <Blog/> }/> </Routes> + </div> </main> </Router> } diff --git a/src/routes/blog/mod.rs b/src/routes/blog/mod.rs new file mode 100644 index 0000000..f5f67f8 --- /dev/null +++ b/src/routes/blog/mod.rs @@ -0,0 +1,2 @@ +mod page; +pub use page::*; diff --git a/src/routes/blog/page.rs b/src/routes/blog/page.rs new file mode 100644 index 0000000..8b512ea --- /dev/null +++ b/src/routes/blog/page.rs @@ -0,0 +1,16 @@ +use leptos::*; +use leptos_meta::*; + +#[component] +pub fn Blog(cx: Scope) -> impl IntoView { + view! { cx, + <Title text="Blog - NationTech - Unconventional team for extraordinary challenges"/> + <div class="text-white bg-indigo-950 min-h-screen"> + <div class="flex space-y-4 flex-col max-w-3xl container mx-auto"> + <h1 class="text-6xl text-orange-400 font-extrabold pt-12">"Blog"</h1> + <h2 class="text-3xl">"Modifying storageClass of kubernetes bitnami ElasticSearch cluster without downtime"</h2> + <p class="text-xl">"Thanks Percona"</p> + </div> + </div> + } +} diff --git a/src/routes/home/page.rs b/src/routes/home/page.rs index da65032..c7ca648 100644 --- a/src/routes/home/page.rs +++ b/src/routes/home/page.rs @@ -8,7 +8,7 @@ pub fn HomePage(cx: Scope) -> impl IntoView { <Title text="NationTech - Unconventional team for extraordinary challenges"/> <div class="text-white bg-indigo-950 min-h-screen"> <div class="flex space-y-4 flex-col max-w-3xl container mx-auto"> - <h1 class="text-6xl text-orange-400 font-extrabold pt-12">"NationTech"</h1> + <h1 class="text-6xl text-orange-400 font-extrabold pt-8">"NationTech"</h1> <h2 class="text-3xl">"Unconventional team for extraordinary challenges"</h2> <p class="text-xl">"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."</p> <p class="text-xl">"We are experienced in a wide array of technologies, projects and companies."</p> 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;