<%- if edit_href.present? %>
diff --git a/app/views/spaces/_room_card.html.erb b/app/views/spaces/_room_card.html.erb
index 3fadb8f06..1eb57f5db 100644
--- a/app/views/spaces/_room_card.html.erb
+++ b/app/views/spaces/_room_card.html.erb
@@ -1,14 +1,14 @@
<%= link_to [room.space, room], class: "no-underline" do %>
<%= render CardComponent.new(
data: { access_level: room.access_level, slug: room.slug, model: "room", id: room.id },
- classes: "group self-stretch hover:bg-purple-100"
+ classes: "group self-stretch hover:bg-orange-50"
) do %>
-
+
<%= room.name %>
-
-
- 💾
- <%= link_to "Contribute", "https://github.com/zinc-collective/convene" %>
- 💚
- <%= link_to "Sponsor", "https://opencollective.com/zinc-community" %>
+
- <%- if current_space&.agreements&.present? %>
-
- <%- current_space.agreements.each do |agreement| %>
- <%- next unless agreement.persisted? %>
- <%= link_to(agreement.name, agreement.location, class: "px-4 py-2") %>
+
- <%- end %>
+ <%= link_to "Sign out", [current_space, :authenticated_session].compact, data: { turbo: true, turbo_method: :delete }, class: "sign-out px-4 py-1" %>
+ <%- else %>
+ <%= link_to "Sign in", [:new, current_space, :authenticated_session].compact, class: "px-4 py-1" %>
+ <%- end %>
+
+
+
+ <%= link_to "💾 Contribute", "https://github.com/zinccollective/convene", class: "px-2 py-1" %>
+ <%= link_to "💚 Sponsor", "https://opencollective.com/zinccommunity", class: "px-2 py-1" %>
+
+ <%- current_space&.agreements&.each do |agreement| %>
+ <%- next unless agreement.persisted? %>
+ <%= link_to(agreement.name, agreement.location, class: "px-2 py-1") %>
+ <%- end %>
+
+
+ <%= render Neighborhood::LinkComponent.new %>
+