Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion data/projects.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@
{
"repo_url": "https://github.com/elcharitas/momenta",
"banner": "https://opengraph.githubassets.com/1/elcharitas/momenta",
"tags": ["crate", "framework", "web"]
"tags": ["crate", "web"]
}
]
2 changes: 1 addition & 1 deletion src/components/cards_list/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ where
</Show>

<div class=cn!(#(
"flex mt-3 items-center gap-x-2 flex-wrap opacity-0 duration-300 delay-100",
"flex mt-3 items-center gap-2 flex-wrap opacity-0 duration-300 delay-100",
(section_in_view(), "opacity-100")
))>
{move ||
Expand Down
4 changes: 4 additions & 0 deletions src/types/projects.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ pub enum ProjectTags {
RateLimiting,
Template,
Cli,
Rpc,
Web,
}

impl fmt::Display for ProjectTags {
Expand All @@ -31,6 +33,8 @@ impl fmt::Display for ProjectTags {
ProjectTags::RateLimiting => "Rate Limiting",
ProjectTags::Template => "Template",
ProjectTags::Cli => "CLI",
ProjectTags::Rpc => "RPC",
ProjectTags::Web => "Web",
};
write!(f, "{}", s)
}
Expand Down
Loading