Skip to content

Commit

Permalink
add about.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
BlinkyStitt committed Apr 19, 2024
1 parent 27279a9 commit ff6cba1
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions musical-leptos/src/pages/about.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
use leptos::*;

/// About page
#[component]
pub fn About() -> impl IntoView {
view! {
<h1>Musical Lights</h1>

<p>This website is the latest Rust/WASM version of my musical-lights projects.</p>

<h2>Old Arduino Code</h2>

<ol>
<li><a href="https://www.youtube.com/shorts/PEfV9YJbhIA">EL Jacket</a></li>
<li><a href="https://www.youtube.com/watch?v=ImKlL52tjEg">EL Jacket V2</a></li>
<li><a href="https://www.youtube.com/watch?v=M8pkG5HjOQM">DJ Screen</a></li>
<li><a href="https://www.youtube.com/watch?v=A6t1pDLEqTk">Simple LED Strip</a></li>
<li><a href="https://www.youtube.com/watch?v=ELDt1dZbY2g">Musical Hat 120 and EL Backpack</a></li>
<li><a href="https://twitter.com/BlinkyStitt/status/1160077236013166597">Musical Hat 512</a></li>
</ol>

<h2>Links</h2>

<ul>
<li><a href="https://twitter.com/BlinkyStitt/">BlinkyStitt @ Twitter</a></li>
<li><a href="https://github.com/BlinkyStitt/musical-lights-rs">GitHub for this Repo</a></li>
</ul>
}
}

0 comments on commit ff6cba1

Please sign in to comment.