Skip to content

Commit 8be0d66

Browse files
authored
Merge pull request #46 from RustLangES/communidad
change home add community page
2 parents d5c6804 + c6e6259 commit 8be0d66

14 files changed

+38
-19
lines changed

.rusty-hook.toml

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[hooks]
2-
pre-commit = "cargo fmt --all && leptosfmt src && cargo clippy -- -D warnings"
32
post-commit = "echo yay"
43

54
[logging]

src/app.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use leptos_router::*;
44

55
use crate::{
66
components::{footer::Footer, header::Header},
7-
pages::{contributors::Contributors, index::Index},
7+
pages::{contributors::Contributors, index::Index, Communidad::Communidad},
88
};
99

1010
#[component]
@@ -19,6 +19,7 @@ pub fn App() -> impl IntoView {
1919
<Routes>
2020
<Route path="/" view=|| view! { <Index/> }/>
2121
<Route path="/colaboradores" view=|| view! { <Contributors/> }/>
22+
<Route path="/Communidad" view=|| view! { <Communidad/> }/>
2223
</Routes>
2324
<Outlet/>
2425
</main>

src/components/button_link.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pub fn ButtonLink(
99
children: Children,
1010
) -> impl IntoView {
1111
let colors = HashMap::from([
12-
("primary", "bg-orange-300 hover:bg-black hover:text-white"),
12+
("primary", "bg-orange-200 hover:bg-black hover:text-white"),
1313
("white", "bg-orange-100"),
1414
]);
1515
let sizes = HashMap::from([("tiny", "min-h-7"), ("normal", "h-9"), ("big", "h-12")]);

src/components/cards/community_card.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pub fn CommunityCard(
1919
<a
2020
href=link
2121
target="_blank"
22-
class="group flex flex-col gap-y-6 border border-black p-6 hover:bg-orange-500 bg-orange-100 drop-shadow-[0_0_0_rgba(0,0,0)] hover:drop-shadow-[-4px_-4px_0_rgba(0,0,0)] transition justify-between"
22+
class="group flex flex-col gap-y-6 border border-black p-6 hover:bg-orange-500 bg-orange-200 drop-shadow-[0_0_0_rgba(0,0,0)] hover:drop-shadow-[-4px_-4px_0_rgba(0,0,0)] transition justify-between"
2323
>
2424
<div>
2525
<img src=brand_src width="60" height="60" class="rounded-full mb-4" alt=brand_alt/>

src/components/cards/project_card.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pub fn ProjectCard(
2626
<a
2727
href=link
2828
target="_blank"
29-
class="group flex flex-col gap-y-6 border border-black p-2 sm:p-6 hover:bg-orange-500 bg-orange-200 drop-shadow-[0_0_0_rgba(0,0,0)] hover:drop-shadow-[-4px_-4px_0_rgba(0,0,0)] transition justify-between"
29+
class="group flex flex-col gap-y-6 border border-black p-2 sm:p-6 hover:bg-orange-500 bg-orange-100 drop-shadow-[0_0_0_rgba(0,0,0)] hover:drop-shadow-[-4px_-4px_0_rgba(0,0,0)] transition justify-between"
3030
>
3131
<div class="flex flex-col justify-between gap-y-2">
3232
{if brand_as_letter {

src/components/community_projects.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ use leptos::*;
33
use crate::{components::cards::project_card::ProjectCard, extras::COMUNITY_PROJECTS};
44

55
#[component]
6-
pub fn CommunityProjects() -> impl IntoView {
6+
pub fn CommunityProjects(#[prop(default = false)] main: bool) -> impl IntoView {
77
view! {
8-
<section class="bg-orange-200 py-20">
8+
<section class="bg-orange-100 py-20">
99
<div class="container mx-auto px-4">
1010
<h2 class="text-3xl text-left mb-6">
1111
<span class="font-work-sans font-light">"Proyectos de la "</span>
@@ -14,6 +14,7 @@ pub fn CommunityProjects() -> impl IntoView {
1414
<div class="w-full grid sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 sm:gap-x-8 gap-y-8">
1515
{COMUNITY_PROJECTS
1616
.iter()
17+
.take(if main { 4 } else { COMUNITY_PROJECTS.len() })
1718
.map(|item| {
1819
view! {
1920
<ProjectCard

src/components/header.rs

+4
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ pub fn Header() -> impl IntoView {
4040
"Aprende"
4141
</a>
4242
</li>
43+
<li>
44+
<A href="/Communidad">"Communidad"</A>
45+
</li>
46+
4347
<li>
4448
<A href="/colaboradores">"Colaboradores"</A>
4549
</li>

src/components/hero.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ pub fn Hero() -> impl IntoView {
1111
"⚡Blazingly fast⚡ 🚀 Super fast 🔥 pero ahora en español!",
1212
"Si te falla va ser de forma segura 😉",
1313
"Furrificando...",
14+
"(*rust)malloc(sizeof(c))",
1415
"Dumb Pointer != Smart Pointer",
1516
"std::mem::transmute::<Go, Rust>(developer)",
1617
"In Rust, We Trust",
@@ -48,10 +49,12 @@ pub fn Hero() -> impl IntoView {
4849
"En Español"
4950
</span>
5051
</h1>
51-
<div class="flex items-center justify-center lg:justify-start group">
52+
<div class="flex items-center justify-center lg:justify-start group"
53+
54+
on:click=click_handler
55+
>
5256
<button
5357
class="bg-orange-300 border-4 border-orange-400 group-hover:border-orange-500 flex justify-center items-center rounded-full w-12 h-12 text-xl relative z-10"
54-
on:click=click_handler
5558
>
5659
<span class="motion-safe:animate-spin">"🎲"</span>
5760
</button>

src/components/other_communities.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,19 @@ use leptos::*;
33
use crate::{components::cards::community_card::CommunityCard, extras::OTHER_COMUNITIES};
44

55
#[component]
6-
pub fn OtherCommunities() -> impl IntoView {
6+
pub fn OtherCommunities(#[prop(default = false)] main: bool) -> impl IntoView {
77
view! {
8-
<section class="bg-orange-100 py-20">
8+
<section class="bg-orange-200 py-20">
99
<div class="container mx-auto px-4">
1010
<h2 class="text-3xl text-left mb-6">
1111
<span class="font-work-sans font-light">"Otras "</span>
1212
<span class="font-alfa-slab text-orange-500">"Comunidades"</span>
1313
<span class="font-work-sans font-light">" recomendadas "</span>
1414
</h2>
15-
<div class="w-full grid sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-5 gap-x-8 gap-y-8">
15+
<div class="w-full grid sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-4 gap-x-8 gap-y-8">
1616
{OTHER_COMUNITIES
1717
.iter()
18+
.take(if main { 4 } else { OTHER_COMUNITIES.len() })
1819
.map(|item| {
1920
view! {
2021
<CommunityCard

src/components/our_communities.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use crate::components::{
88
#[component]
99
pub fn OurCommunities() -> impl IntoView {
1010
view! {
11-
<section class="bg-orange-300/30">
11+
<section class=" bg-orange-300/30">
1212
<div class="container mx-auto px-4">
1313
<div class="flex flex-col items-center py-20 gap-y-6">
1414
<h2 class="text-4xl text-center mb-4">

src/pages/Communidad.rs

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
use leptos::*;
2+
3+
use crate::components::{community_projects::CommunityProjects, other_communities::OtherCommunities};
4+
5+
#[component]
6+
pub fn Communidad() -> impl IntoView {
7+
view! {
8+
<div>
9+
<CommunityProjects/>
10+
<OtherCommunities/>
11+
</div>
12+
}
13+
}

src/pages/index.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ pub fn Index() -> impl IntoView {
1111
<div>
1212
<Hero/>
1313
<OurCommunities/>
14-
<OtherCommunities/>
15-
<CommunityProjects/>
14+
<CommunityProjects main={true}/>
15+
<OtherCommunities main={true}/>
1616
</div>
1717
}
1818
}

src/pages/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
pub mod contributors;
2+
pub mod Communidad;
23
pub mod index;

style/output.css

-4
Original file line numberDiff line numberDiff line change
@@ -1640,10 +1640,6 @@ video {
16401640
.xl\:grid-cols-4 {
16411641
grid-template-columns: repeat(4, minmax(0, 1fr));
16421642
}
1643-
1644-
.xl\:grid-cols-5 {
1645-
grid-template-columns: repeat(5, minmax(0, 1fr));
1646-
}
16471643
}
16481644

16491645
@media (min-width: 1536px) {

0 commit comments

Comments
 (0)