-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
27279a9
commit ff6cba1
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
} | ||
} |