68 lines
2.5 KiB
Rust
68 lines
2.5 KiB
Rust
use yew::prelude::*;
|
||
|
||
pub struct FindMe;
|
||
impl Component for FindMe {
|
||
type Message = ();
|
||
type Properties = ();
|
||
|
||
fn create(_ctx: &Context<Self>) -> Self {
|
||
Self
|
||
}
|
||
|
||
fn view(&self, _ctx: &Context<Self>) -> Html {
|
||
html! {
|
||
<>
|
||
<p style="
|
||
font-weight: bold !important;
|
||
font-style: italic !important;
|
||
font-size: xx-large !important;
|
||
">{r"follow us"}<br /><p style="
|
||
font-weight: normal !important;
|
||
font-style: normal !important;
|
||
font-size: medium !important;
|
||
">{" × "}<a style="
|
||
color: #F5C2E7FF !important;
|
||
text-decoration: none !important;
|
||
filter: url(post.bloom.svg#process) !important;
|
||
" href="https://ice.stellaris.fyi/@iouring">{r"fediverse"}</a><br />
|
||
{" × "}<a style="
|
||
color: #B4BEFEFF !important;
|
||
text-decoration: none !important;
|
||
" href="https://bsky.app/profile/i0ur.ing">{r"bluesky"}</a><br />
|
||
</p>{r"write us"}<br /><p style="
|
||
font-weight: normal !important;
|
||
font-style: normal !important;
|
||
font-size: medium !important;
|
||
"><a style="
|
||
color: #94E2D5FF !important;
|
||
filter: url(post.bloom.svg#process) !important;
|
||
">{r" × matrix » @iouring:hi.stellaris.fyi"}</a><br />
|
||
<a style="color: #89B4FAFF !important;">{r" × telegr » @luc1ell3"}</a><br />
|
||
<a style="color: #F38BA8FF !important;">{r" × ewcord » @donotusedisc0rdkthxbye"}</a>
|
||
</p>{r"git gud"}<br /><p style="
|
||
font-weight: normal !important;
|
||
font-style: normal !important;
|
||
font-size: medium !important;
|
||
">{" × "}<a style="
|
||
color: #F5C2E7FF !important;
|
||
text-decoration: none !important;
|
||
filter: url(post.bloom.svg#process) !important;
|
||
" href="https://git.celesteflare.cc/i0uring">{r"my own!!!"}</a><br />
|
||
{" × "}<a style="
|
||
color: #CBA6F7FF !important;
|
||
text-decoration: none !important;
|
||
" href="https://git.gay/luciel">{r"the gay one"}</a><br />
|
||
{" × "}<a style="
|
||
color: #B4BEFEFF !important;
|
||
text-decoration: none !important;
|
||
" href="https://git.rimuru.club/i0uring">{r"git of fren"}</a><br />
|
||
{" × "}<a style="
|
||
color: #89B4FAFF !important;
|
||
text-decoration: none !important;
|
||
" href="https://codeberg.org/i0uring">{r"a mountain what"}</a>
|
||
</p></p>
|
||
</>
|
||
}
|
||
}
|
||
}
|