···1717 IsAuthenticated: props.IsAuthenticated,
1818 UserDID: props.UserDID,
1919 })
2020- @components.AboutInfoCard()
2020+ // Move about section after feed for authenticated users
2121+ // TODO: maybe leave it as a small section that can be
2222+ // opened via a drowdown?
2323+ if !props.IsAuthenticated {
2424+ @components.AboutInfoCard()
2525+ }
2126 @CommunityFeedSection()
2727+ if props.IsAuthenticated {
2828+ @components.AboutInfoCard()
2929+ }
2230 </div>
2331}
24323333+// TODO: add pagination and "load more" button to feed
3434+// - this is probably mostly a backend change
2535templ CommunityFeedSection() {
2636 <div class="bg-gradient-to-br from-brown-100 to-brown-200 rounded-xl shadow-xl p-6 mb-8 border border-brown-300">
2737 <h3 class="text-xl font-bold text-brown-900 mb-4">☕ Community Feed</h3>