make channels more easily definable

pull/8/head
Patrick Cleavelin 2023-07-31 23:36:07 -05:00
parent a15a1820a8
commit bd3d71ae16
1 changed files with 25 additions and 23 deletions

View File

@ -162,7 +162,8 @@ pub(crate) async fn guild_dashboard(
None None
} }
}); });
b = b.builder_text(Tag::Strong, channel_name).builder( b = b.builder(Tag::Article, |b| {
b.builder_text(Tag::Header, channel_name).builder(
Tag::Div, Tag::Div,
|b| { |b| {
b.builder_text(Tag::Strong, "Your Current Intros") b.builder_text(Tag::Strong, "Your Current Intros")
@ -184,7 +185,8 @@ pub(crate) async fn guild_dashboard(
), ),
)) ))
}, },
); )
});
} }
} }