mirror of
https://codeberg.org/Tahinli/personality.git
synced 2025-07-08 11:27:09 +00:00
feat: ✨ add voice chat to projects
This commit is contained in:
parent
8ee6e91318
commit
5b4dbf03c1
1 changed files with 25 additions and 0 deletions
|
@ -18,6 +18,7 @@ pub fn Projects() -> Element {
|
||||||
div { class: "project_link", Link {to: Route::Project { id: 7 }, class: "project_link", "Blockchain"} }
|
div { class: "project_link", Link {to: Route::Project { id: 7 }, class: "project_link", "Blockchain"} }
|
||||||
div { class: "project_link", Link {to: Route::Project { id: 8 }, class: "project_link", "Optimization Algorithms"} }
|
div { class: "project_link", Link {to: Route::Project { id: 8 }, class: "project_link", "Optimization Algorithms"} }
|
||||||
div { class: "project_link", Link {to: Route::Project { id: 9 }, class: "project_link", "Forum"} }
|
div { class: "project_link", Link {to: Route::Project { id: 9 }, class: "project_link", "Forum"} }
|
||||||
|
div { class: "project_link", Link {to: Route::Project { id: 10 }, class: "project_link", "Voice Chat"} }
|
||||||
}
|
}
|
||||||
Footer {}
|
Footer {}
|
||||||
}
|
}
|
||||||
|
@ -299,6 +300,30 @@ pub fn Project(id: i32) -> Element {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
10 => {
|
||||||
|
rsx! {
|
||||||
|
div {
|
||||||
|
class:"project",
|
||||||
|
h1 {"Voice Chat"}
|
||||||
|
h5 {"Voice Chat written in Rust."}
|
||||||
|
Link {id: "codeberg_link_in_project_page", to: "https://codeberg.org/Tahinli/rust_voice_chat", "Codeberg"}
|
||||||
|
div {
|
||||||
|
"
|
||||||
|
In this project I wanted to implement voice chat with QUIC protocol.
|
||||||
|
"
|
||||||
|
}
|
||||||
|
h3 {"Why I did this ?"}
|
||||||
|
div {
|
||||||
|
"I wanted to use QUIC protocol."
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {"What I learned ?"}
|
||||||
|
div {
|
||||||
|
"Streaming data with QUIC protocol."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
_ => {
|
_ => {
|
||||||
rsx! {
|
rsx! {
|
||||||
h1 {"You're not supposed to be here"}
|
h1 {"You're not supposed to be here"}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue