<% @rooms.each do |room| %>
Created by <%= link_to "@#{room.user.name}", "#", class: "text-decoration-none fw-medium text-dark" %> <%= time_ago_in_words(room.created_at) %> ago

<%= link_to room.name, room_path(room), class: "text-decoration-none text-dark stretched-link" %>

<%= truncate(room.description, length: 80) %>


<%# pluralize(room.participants.uniq.count, "participant") %> Number of participant <%= room.topic.name %>
<% end %>