🔥 rm bulma

 rework ui+ux
 update shader
 update profile.avif
 update 404
This commit is contained in:
lia
2025-08-20 08:38:03 +00:00
parent 510897d94b
commit bfd8c187c6
14 changed files with 374 additions and 341 deletions

67
src/pages/findme.rs Normal file
View File

@@ -0,0 +1,67 @@
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>
</>
}
}
}