-
Notifications
You must be signed in to change notification settings - Fork 4
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
a32f5f2
commit 78fe3b9
Showing
3 changed files
with
25 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
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,22 @@ | ||
use leptos::{component, view, IntoView}; | ||
|
||
#[component] | ||
pub fn Footer() -> impl IntoView { | ||
view! { | ||
<div class="container center intro"> | ||
<h1 class="intro-title">Further Links</h1> | ||
<div> | ||
"🚀 " | ||
<a href="https://simfony-lang.com/" target="blank">Simfony Lander</a> | ||
</div> | ||
<div> | ||
"🛠️ " | ||
<a href="https://github.com/uncomputable/simfony-webide" target="blank">Simfony web IDE GitHub repository</a> | ||
</div> | ||
<div> | ||
"🛠️ " | ||
<a href="https://github.com/BlockstreamResearch/simfony" target="blank">Simfony compiler GitHub repository</a> | ||
</div> | ||
</div> | ||
} | ||
} |
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