Base coming along

This commit is contained in:
jeangab 2023-06-05 16:46:26 -04:00
parent fe877d6d09
commit fc13368cb8
6 changed files with 53 additions and 3 deletions

23
docs/Content.md Normal file
View File

@ -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

View File

@ -1,5 +1,6 @@
use crate::routes::whymdc::*; use crate::routes::whymdc::*;
use crate::routes::home::*; use crate::routes::home::*;
use crate::routes::blog::*;
use leptos::*; use leptos::*;
use leptos_meta::*; use leptos_meta::*;
use leptos_router::*; use leptos_router::*;
@ -17,15 +18,22 @@ pub fn App(cx: Scope) -> impl IntoView {
<Stylesheet id="leptos" href="/pkg/leptos_start.css"/> <Stylesheet id="leptos" href="/pkg/leptos_start.css"/>
// sets the document title // sets the document title
<Title text="Welcome to Leptos"/> <Title text="NationTech"/>
// content for this welcome page // content for this welcome page
<Router> <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> <Routes>
<Route path="" view=|cx| view! { cx, <HomePage/> }/> <Route path="" view=|cx| view! { cx, <HomePage/> }/>
<Route path="/why-micro-datacenters" view=|cx| view! { cx, <WhyMicroDatacenters/> }/> <Route path="/why-micro-datacenters" view=|cx| view! { cx, <WhyMicroDatacenters/> }/>
<Route path="/blog" view=|cx| view! { cx, <Blog/> }/>
</Routes> </Routes>
</div>
</main> </main>
</Router> </Router>
} }

2
src/routes/blog/mod.rs Normal file
View File

@ -0,0 +1,2 @@
mod page;
pub use page::*;

16
src/routes/blog/page.rs Normal file
View File

@ -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>
}
}

View File

@ -8,7 +8,7 @@ pub fn HomePage(cx: Scope) -> impl IntoView {
<Title text="NationTech - Unconventional team for extraordinary challenges"/> <Title text="NationTech - Unconventional team for extraordinary challenges"/>
<div class="text-white bg-indigo-950 min-h-screen"> <div class="text-white bg-indigo-950 min-h-screen">
<div class="flex space-y-4 flex-col max-w-3xl container mx-auto"> <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> <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 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> <p class="text-xl">"We are experienced in a wide array of technologies, projects and companies."</p>

View File

@ -1,2 +1,3 @@
pub mod whymdc; pub mod whymdc;
pub mod home; pub mod home;
pub mod blog;