Skip to content

Commit

Permalink
fix: lowercase everything
Browse files Browse the repository at this point in the history
  • Loading branch information
simbleau committed Oct 27, 2023
1 parent c49a22f commit 55769e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/email_button.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ pub fn EmailButton(props: &EmailButtonProps) -> Html {
<div>
<button {onclick} class={btn_css}>
<span>
{"Show email"}
{"reveal email"}
</span>
<span
class={tooltip_css}
Expand Down
6 changes: 3 additions & 3 deletions src/navigation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ use yew::prelude::*;
pub fn navigation() -> Html {
// If updating the links, update the sitemap!
let nav_links: [(NavDestination, Html); 3] = [
(NavDestination::Internal(Route::Home), html!({ "Home" })),
(NavDestination::Internal(Route::Resume), html!({ "Résumé" })),
(NavDestination::Internal(Route::Home), html!({ "home" })),
(NavDestination::Internal(Route::Resume), html!({ "résumé" })),
(
NavDestination::External(AttrValue::Static(
"https://simbleau.github.io/blog/",
)),
html! {{ "Blog" }},
html! {{ "blog" }},
),
];

Expand Down

0 comments on commit 55769e8

Please sign in to comment.