app/views/application/_resource_header.html.erb in plutonium-0.8.0 vs app/views/application/_resource_header.html.erb in plutonium-0.11.0
- old
+ new
@@ -1,721 +1,289 @@
- <nav class="bg-white border-b border-gray-200 px-4 py-2.5 dark:bg-gray-800 dark:border-gray-700 fixed left-0 right-0 top-0 z-50">
- <div class="flex flex-wrap justify-between items-center">
- <div class="flex justify-start items-center">
- <button
- data-drawer-target="drawer-navigation"
- data-drawer-toggle="drawer-navigation"
- aria-controls="drawer-navigation"
- class="p-2 mr-2 text-gray-600 rounded-lg cursor-pointer lg:hidden hover:text-gray-900 hover:bg-gray-100 focus:bg-gray-100 dark:focus:bg-gray-700 focus:ring-2 focus:ring-gray-100 dark:focus:ring-gray-700 dark:text-gray-200 dark:hover:bg-gray-700 dark:hover:text-white"
- >
- <svg
- aria-hidden="true"
- class="w-6 h-6"
- fill="currentColor"
- viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path
- fill-rule="evenodd"
- d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h6a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z"
- clip-rule="evenodd"
- ></path>
- </svg>
- <svg
- aria-hidden="true"
- class="hidden w-6 h-6"
- fill="currentColor"
- viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path
- fill-rule="evenodd"
- d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
- clip-rule="evenodd"
- ></path>
- </svg>
- <span class="sr-only">Toggle sidebar</span>
- </button>
- <a href="https://flowbite.com" class="flex items-center justify-between mr-4">
- <img
- src="https://flowbite.s3.amazonaws.com/logo.svg"
- class="mr-3 h-8"
- alt="Flowbite Logo"
- />
- <span class="self-center text-2xl font-semibold whitespace-nowrap dark:text-white hidden xs:block">Plutonium</span>
- </a>
- <%# <form action="#" method="GET" class="hidden md:block md:pl-2">
- <label for="topbar-search" class="sr-only">Search</label>
- <div class="relative md:w-64 md:w-96">
+<%= render_component :resource_header, brand_name: nil do |header| %>
+ <% header.with_brand_logo do %>
+ <%= logo_tag classname: "mr-3 h-10" %>
+ <% end %>
+
+ <% header.with_action do %>
+ <%=
+ render_component :nav_grid_menu, label: "Apps" do |menu|
+ menu.with_item url: "#", name: "Sales", icon: "outline/sale-percent"
+ menu.with_item url: "#", name: "Users", icon: "outline/users"
+ end
+ %>
+ <% end %>
+
+ <% header.with_action do %>
+ <%= render_component :nav_user, email: current_user.email, logout_url: try(:logout_url) do |nav_user| %>
+ <% nav_user.with_section do |section| %>
+ <% section.with_link url: "#", label: "My profile" %>
+ <% section.with_link url: "#", label: "Account settings" %>
+ <% end %>
+
+ <% nav_user.with_section do |section| %>
+ <% section.with_link url: "#", label: "My likes" do |link| %>
+ <% link.with_leading do %>
+ <%= render_icon "outline/heart", classname: "mr-2 text-gray-400" %>
+ <% end %>
+ <% end %>
+
+ <% section.with_link url: "#", label: "Pro version" do |link| %>
+ <% link.with_leading do %>
+ <%= render_icon "outline/fire", classname: "mr-2 text-primary-600 dark:text-primary-500" %>
+ <% end %>
+ <% link.with_trailing do %>
+ <%= render_icon "outline/angle-right", size: :sm %>
+ <% end %>
+ <% end %>
+ <% end %>
+ <% end %>
+ <% end %>
+
+ <%#
+
+ <!-- Notifications -->
+ <div data-controller="resource-drop-down">
+ <button
+ type="button"
+ data-resource-drop-down-target="trigger"
+ class="p-2 mr-1 text-gray-500 rounded-lg hover:text-gray-900 hover:bg-gray-100 dark:text-gray-200 dark:hover:text-white dark:hover:bg-gray-700 focus:ring-4 focus:ring-gray-300 dark:focus:ring-gray-600">
+ <span class="sr-only">View notifications</span>
+ <!-- Bell icon -->
+ <svg
+ aria-hidden="true"
+ class="w-6 h-6"
+ fill="currentColor"
+ viewBox="0 0 20 20"
+ xmlns="http://www.w3.org/2000/svg">
+ <path
+ d="M10 2a6 6 0 00-6 6v3.586l-.707.707A1 1 0 004 14h12a1 1 0 00.707-1.707L16 11.586V8a6 6 0 00-6-6zM10 18a3 3 0 01-3-3h6a3 3 0 01-3 3z"></path>
+ </svg>
+ </button>
+ <!-- Dropdown menu -->
+ <div
+ data-resource-drop-down-target="menu"
+ class="hidden overflow-hidden z-50 my-4 max-w-sm text-base list-none bg-white divide-y divide-gray-100 shadow-lg dark:divide-gray-600 dark:bg-gray-700 rounded-xl">
+ <div
+ class="block py-2 px-4 text-base font-medium text-center text-gray-700 bg-gray-50 dark:bg-gray-600 dark:text-gray-300">
+ Notifications
+ </div>
+ <div>
+ <a
+ href="#"
+ class="flex py-3 px-4 border-b hover:bg-gray-100 dark:hover:bg-gray-600 dark:border-gray-600">
+ <div class="shrink-0">
+ <img
+ class="w-11 h-11 rounded-full"
+ src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/bonnie-green.png"
+ alt="Bonnie Green avatar"
+ />
<div
- class="flex absolute inset-y-0 left-0 items-center pl-3 pointer-events-none"
- >
+ class="flex absolute justify-center items-center ml-6 -mt-5 w-5 h-5 rounded-full border border-white bg-primary-700 dark:border-gray-700">
<svg
- class="w-5 h-5 text-gray-500 dark:text-gray-200"
+ aria-hidden="true"
+ class="w-3 h-3 text-white"
fill="currentColor"
viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
+ xmlns="http://www.w3.org/2000/svg">
<path
- fill-rule="evenodd"
- clip-rule="evenodd"
- d="M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z"
- ></path>
+ d="M8.707 7.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l2-2a1 1 0 00-1.414-1.414L11 7.586V3a1 1 0 10-2 0v4.586l-.293-.293z"></path>
+ <path
+ d="M3 5a2 2 0 012-2h1a1 1 0 010 2H5v7h2l1 2h4l1-2h2V5h-1a1 1 0 110-2h1a2 2 0 012 2v10a2 2 0 01-2 2H5a2 2 0 01-2-2V5z"></path>
</svg>
</div>
- <input
- type="text"
- name="email"
- id="topbar-search"
- class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-primary-500 focus:border-primary-500 block w-full pl-10 p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-primary-500 dark:focus:border-primary-500"
- placeholder="Search"
- />
</div>
- </form> %>
- </div>
- <div class="flex items-center lg:order-2">
- <!-- Notifications -->
- <button
- type="button"
- data-dropdown-toggle="notification-dropdown"
- class="p-2 mr-1 text-gray-500 rounded-lg hover:text-gray-900 hover:bg-gray-100 dark:text-gray-200 dark:hover:text-white dark:hover:bg-gray-700 focus:ring-4 focus:ring-gray-300 dark:focus:ring-gray-600"
- >
- <span class="sr-only">View notifications</span>
- <!-- Bell icon -->
- <svg
- aria-hidden="true"
- class="w-6 h-6"
- fill="currentColor"
- viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path
- d="M10 2a6 6 0 00-6 6v3.586l-.707.707A1 1 0 004 14h12a1 1 0 00.707-1.707L16 11.586V8a6 6 0 00-6-6zM10 18a3 3 0 01-3-3h6a3 3 0 01-3 3z"
- ></path>
- </svg>
- </button>
- <!-- Dropdown menu -->
- <div
- class="hidden overflow-hidden z-50 my-4 max-w-sm text-base list-none bg-white rounded divide-y divide-gray-100 shadow-lg dark:divide-gray-600 dark:bg-gray-700 rounded-xl"
- id="notification-dropdown"
- >
- <div
- class="block py-2 px-4 text-base font-medium text-center text-gray-700 bg-gray-50 dark:bg-gray-600 dark:text-gray-300"
- >
- Notifications
+ <div class="pl-3 w-full">
+ <div
+ class="text-gray-500 font-normal text-sm mb-1.5 dark:text-gray-200">
+ New message from
+ <span class="font-semibold text-gray-900 dark:text-white"
+ >Bonnie Green</span
+ >: "Hey, what's up? All set for the presentation?"
+ </div>
+ <div
+ class="text-xs font-medium text-primary-600 dark:text-primary-500">
+ a few moments ago
+ </div>
</div>
- <div>
- <a
- href="#"
- class="flex py-3 px-4 border-b hover:bg-gray-100 dark:hover:bg-gray-600 dark:border-gray-600"
- >
- <div class="shrink-0">
- <img
- class="w-11 h-11 rounded-full"
- src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/bonnie-green.png"
- alt="Bonnie Green avatar"
- />
- <div
- class="flex absolute justify-center items-center ml-6 -mt-5 w-5 h-5 rounded-full border border-white bg-primary-700 dark:border-gray-700"
- >
- <svg
- aria-hidden="true"
- class="w-3 h-3 text-white"
- fill="currentColor"
- viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path
- d="M8.707 7.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l2-2a1 1 0 00-1.414-1.414L11 7.586V3a1 1 0 10-2 0v4.586l-.293-.293z"
- ></path>
- <path
- d="M3 5a2 2 0 012-2h1a1 1 0 010 2H5v7h2l1 2h4l1-2h2V5h-1a1 1 0 110-2h1a2 2 0 012 2v10a2 2 0 01-2 2H5a2 2 0 01-2-2V5z"
- ></path>
- </svg>
- </div>
- </div>
- <div class="pl-3 w-full">
- <div
- class="text-gray-500 font-normal text-sm mb-1.5 dark:text-gray-200"
- >
- New message from
- <span class="font-semibold text-gray-900 dark:text-white"
- >Bonnie Green</span
- >: "Hey, what's up? All set for the presentation?"
- </div>
- <div
- class="text-xs font-medium text-primary-600 dark:text-primary-500"
- >
- a few moments ago
- </div>
- </div>
- </a>
- <a
- href="#"
- class="flex py-3 px-4 border-b hover:bg-gray-100 dark:hover:bg-gray-600 dark:border-gray-600"
- >
- <div class="shrink-0">
- <img
- class="w-11 h-11 rounded-full"
- src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/jese-leos.png"
- alt="Jese Leos avatar"
- />
- <div
- class="flex absolute justify-center items-center ml-6 -mt-5 w-5 h-5 bg-gray-900 rounded-full border border-white dark:border-gray-700"
- >
- <svg
- aria-hidden="true"
- class="w-3 h-3 text-white"
- fill="currentColor"
- viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path
- d="M8 9a3 3 0 100-6 3 3 0 000 6zM8 11a6 6 0 016 6H2a6 6 0 016-6zM16 7a1 1 0 10-2 0v1h-1a1 1 0 100 2h1v1a1 1 0 102 0v-1h1a1 1 0 100-2h-1V7z"
- ></path>
- </svg>
- </div>
- </div>
- <div class="pl-3 w-full">
- <div
- class="text-gray-500 font-normal text-sm mb-1.5 dark:text-gray-200"
- >
- <span class="font-semibold text-gray-900 dark:text-white"
- >Jese leos</span
- >
- and
- <span class="font-medium text-gray-900 dark:text-white"
- >5 others</span
- >
- started following you.
- </div>
- <div
- class="text-xs font-medium text-primary-600 dark:text-primary-500"
- >
- 10 minutes ago
- </div>
- </div>
- </a>
- <a
- href="#"
- class="flex py-3 px-4 border-b hover:bg-gray-100 dark:hover:bg-gray-600 dark:border-gray-600"
- >
- <div class="shrink-0">
- <img
- class="w-11 h-11 rounded-full"
- src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/joseph-mcfall.png"
- alt="Joseph McFall avatar"
- />
- <div
- class="flex absolute justify-center items-center ml-6 -mt-5 w-5 h-5 bg-red-600 rounded-full border border-white dark:border-gray-700"
- >
- <svg
- aria-hidden="true"
- class="w-3 h-3 text-white"
- fill="currentColor"
- viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path
- fill-rule="evenodd"
- d="M3.172 5.172a4 4 0 015.656 0L10 6.343l1.172-1.171a4 4 0 115.656 5.656L10 17.657l-6.828-6.829a4 4 0 010-5.656z"
- clip-rule="evenodd"
- ></path>
- </svg>
- </div>
- </div>
- <div class="pl-3 w-full">
- <div
- class="text-gray-500 font-normal text-sm mb-1.5 dark:text-gray-200"
- >
- <span class="font-semibold text-gray-900 dark:text-white"
- >Joseph Mcfall</span
- >
- and
- <span class="font-medium text-gray-900 dark:text-white"
- >141 others</span
- >
- love your story. See it and view more stories.
- </div>
- <div
- class="text-xs font-medium text-primary-600 dark:text-primary-500"
- >
- 44 minutes ago
- </div>
- </div>
- </a>
- <a
- href="#"
- class="flex py-3 px-4 border-b hover:bg-gray-100 dark:hover:bg-gray-600 dark:border-gray-600"
- >
- <div class="shrink-0">
- <img
- class="w-11 h-11 rounded-full"
- src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/roberta-casas.png"
- alt="Roberta Casas image"
- />
- <div
- class="flex absolute justify-center items-center ml-6 -mt-5 w-5 h-5 bg-green-400 rounded-full border border-white dark:border-gray-700"
- >
- <svg
- aria-hidden="true"
- class="w-3 h-3 text-white"
- fill="currentColor"
- viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path
- fill-rule="evenodd"
- d="M18 13V5a2 2 0 00-2-2H4a2 2 0 00-2 2v8a2 2 0 002 2h3l3 3 3-3h3a2 2 0 002-2zM5 7a1 1 0 011-1h8a1 1 0 110 2H6a1 1 0 01-1-1zm1 3a1 1 0 100 2h3a1 1 0 100-2H6z"
- clip-rule="evenodd"
- ></path>
- </svg>
- </div>
- </div>
- <div class="pl-3 w-full">
- <div
- class="text-gray-500 font-normal text-sm mb-1.5 dark:text-gray-200"
- >
- <span class="font-semibold text-gray-900 dark:text-white"
- >Leslie Livingston</span
- >
- mentioned you in a comment:
- <span
- class="font-medium text-primary-600 dark:text-primary-500"
- >@bonnie.green</span
- >
- what do you say?
- </div>
- <div
- class="text-xs font-medium text-primary-600 dark:text-primary-500"
- >
- 1 hour ago
- </div>
- </div>
- </a>
- <a
- href="#"
- class="flex py-3 px-4 hover:bg-gray-100 dark:hover:bg-gray-600"
- >
- <div class="shrink-0">
- <img
- class="w-11 h-11 rounded-full"
- src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/robert-brown.png"
- alt="Robert image"
- />
- <div
- class="flex absolute justify-center items-center ml-6 -mt-5 w-5 h-5 bg-purple-500 rounded-full border border-white dark:border-gray-700"
- >
- <svg
- aria-hidden="true"
- class="w-3 h-3 text-white"
- fill="currentColor"
- viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path
- d="M2 6a2 2 0 012-2h6a2 2 0 012 2v8a2 2 0 01-2 2H4a2 2 0 01-2-2V6zM14.553 7.106A1 1 0 0014 8v4a1 1 0 00.553.894l2 1A1 1 0 0018 13V7a1 1 0 00-1.447-.894l-2 1z"
- ></path>
- </svg>
- </div>
- </div>
- <div class="pl-3 w-full">
- <div
- class="text-gray-500 font-normal text-sm mb-1.5 dark:text-gray-200"
- >
- <span class="font-semibold text-gray-900 dark:text-white"
- >Robert Brown</span
- >
- posted a new video: Glassmorphism - learn how to implement
- the new design trend.
- </div>
- <div
- class="text-xs font-medium text-primary-600 dark:text-primary-500"
- >
- 3 hours ago
- </div>
- </div>
- </a>
- </div>
- <a
- href="#"
- class="block py-2 text-md font-medium text-center text-gray-900 bg-gray-50 hover:bg-gray-100 dark:bg-gray-600 dark:text-white dark:hover:underline"
- >
- <div class="inline-flex items-center">
+ </a>
+ <a
+ href="#"
+ class="flex py-3 px-4 border-b hover:bg-gray-100 dark:hover:bg-gray-600 dark:border-gray-600">
+ <div class="shrink-0">
+ <img
+ class="w-11 h-11 rounded-full"
+ src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/jese-leos.png"
+ alt="Jese Leos avatar"
+ />
+ <div
+ class="flex absolute justify-center items-center ml-6 -mt-5 w-5 h-5 bg-gray-900 rounded-full border border-white dark:border-gray-700">
<svg
aria-hidden="true"
- class="mr-2 w-4 h-4 text-gray-500 dark:text-gray-200"
+ class="w-3 h-3 text-white"
fill="currentColor"
viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path d="M10 12a2 2 0 100-4 2 2 0 000 4z"></path>
+ xmlns="http://www.w3.org/2000/svg">
<path
- fill-rule="evenodd"
- d="M.458 10C1.732 5.943 5.522 3 10 3s8.268 2.943 9.542 7c-1.274 4.057-5.064 7-9.542 7S1.732 14.057.458 10zM14 10a4 4 0 11-8 0 4 4 0 018 0z"
- clip-rule="evenodd"
- ></path>
+ d="M8 9a3 3 0 100-6 3 3 0 000 6zM8 11a6 6 0 016 6H2a6 6 0 016-6zM16 7a1 1 0 10-2 0v1h-1a1 1 0 100 2h1v1a1 1 0 102 0v-1h1a1 1 0 100-2h-1V7z"></path>
</svg>
- View all
</div>
- </a>
- </div>
- <!-- Apps -->
- <button
- type="button"
- data-dropdown-toggle="apps-dropdown"
- class="p-2 text-gray-500 rounded-lg hover:text-gray-900 hover:bg-gray-100 dark:text-gray-200 dark:hover:text-white dark:hover:bg-gray-700 focus:ring-4 focus:ring-gray-300 dark:focus:ring-gray-600"
- >
- <span class="sr-only">View notifications</span>
- <!-- Icon -->
- <svg
- class="w-6 h-6"
- fill="currentColor"
- viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path
- d="M5 3a2 2 0 00-2 2v2a2 2 0 002 2h2a2 2 0 002-2V5a2 2 0 00-2-2H5zM5 11a2 2 0 00-2 2v2a2 2 0 002 2h2a2 2 0 002-2v-2a2 2 0 00-2-2H5zM11 5a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2V5zM11 13a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2v-2z"
- ></path>
- </svg>
- </button>
- <!-- Dropdown menu -->
- <div
- class="hidden overflow-hidden z-50 my-4 max-w-sm text-base list-none bg-white rounded divide-y divide-gray-100 shadow-lg dark:bg-gray-700 dark:divide-gray-600 rounded-xl"
- id="apps-dropdown"
- >
- <div
- class="block py-2 px-4 text-base font-medium text-center text-gray-700 bg-gray-50 dark:bg-gray-600 dark:text-gray-300"
- >
- Apps
</div>
- <div class="grid grid-cols-3 gap-4 p-4">
- <a
- href="#"
- class="block p-4 text-center rounded-lg hover:bg-gray-100 dark:hover:bg-gray-600 group"
- >
+ <div class="pl-3 w-full">
+ <div
+ class="text-gray-500 font-normal text-sm mb-1.5 dark:text-gray-200">
+ <span class="font-semibold text-gray-900 dark:text-white"
+ >Jese leos</span>
+ and
+ <span class="font-medium text-gray-900 dark:text-white"
+ >5 others</span>
+ started following you.
+ </div>
+ <div
+ class="text-xs font-medium text-primary-600 dark:text-primary-500">
+ 10 minutes ago
+ </div>
+ </div>
+ </a>
+ <a
+ href="#"
+ class="flex py-3 px-4 border-b hover:bg-gray-100 dark:hover:bg-gray-600 dark:border-gray-600">
+ <div class="shrink-0">
+ <img
+ class="w-11 h-11 rounded-full"
+ src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/joseph-mcfall.png"
+ alt="Joseph McFall avatar"
+ />
+ <div
+ class="flex absolute justify-center items-center ml-6 -mt-5 w-5 h-5 bg-red-600 rounded-full border border-white dark:border-gray-700">
<svg
aria-hidden="true"
- class="mx-auto mb-1 w-7 h-7 text-gray-400 group-hover:text-gray-500 dark:text-gray-200 dark:group-hover:text-gray-400"
+ class="w-3 h-3 text-white"
fill="currentColor"
viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
+ xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
- d="M10 2a4 4 0 00-4 4v1H5a1 1 0 00-.994.89l-1 9A1 1 0 004 18h12a1 1 0 00.994-1.11l-1-9A1 1 0 0015 7h-1V6a4 4 0 00-4-4zm2 5V6a2 2 0 10-4 0v1h4zm-6 3a1 1 0 112 0 1 1 0 01-2 0zm7-1a1 1 0 100 2 1 1 0 000-2z"
+ d="M3.172 5.172a4 4 0 015.656 0L10 6.343l1.172-1.171a4 4 0 115.656 5.656L10 17.657l-6.828-6.829a4 4 0 010-5.656z"
clip-rule="evenodd"
></path>
</svg>
- <div class="text-sm text-gray-900 dark:text-white">Sales</div>
- </a>
- <a
- href="#"
- class="block p-4 text-center rounded-lg hover:bg-gray-100 dark:hover:bg-gray-600 group"
- >
+ </div>
+ </div>
+ <div class="pl-3 w-full">
+ <div
+ class="text-gray-500 font-normal text-sm mb-1.5 dark:text-gray-200">
+ <span class="font-semibold text-gray-900 dark:text-white"
+ >Joseph Mcfall</span>
+ and
+ <span class="font-medium text-gray-900 dark:text-white"
+ >141 others</span>
+ love your story. See it and view more stories.
+ </div>
+ <div
+ class="text-xs font-medium text-primary-600 dark:text-primary-500">
+ 44 minutes ago
+ </div>
+ </div>
+ </a>
+ <a
+ href="#"
+ class="flex py-3 px-4 border-b hover:bg-gray-100 dark:hover:bg-gray-600 dark:border-gray-600">
+ <div class="shrink-0">
+ <img
+ class="w-11 h-11 rounded-full"
+ src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/roberta-casas.png"
+ alt="Roberta Casas image"
+ />
+ <div
+ class="flex absolute justify-center items-center ml-6 -mt-5 w-5 h-5 bg-green-400 rounded-full border border-white dark:border-gray-700">
<svg
aria-hidden="true"
- class="mx-auto mb-1 w-7 h-7 text-gray-400 group-hover:text-gray-500 dark:text-gray-200 dark:group-hover:text-gray-400"
+ class="w-3 h-3 text-white"
fill="currentColor"
viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
+ xmlns="http://www.w3.org/2000/svg">
<path
- d="M13 6a3 3 0 11-6 0 3 3 0 016 0zM18 8a2 2 0 11-4 0 2 2 0 014 0zM14 15a4 4 0 00-8 0v3h8v-3zM6 8a2 2 0 11-4 0 2 2 0 014 0zM16 18v-3a5.972 5.972 0 00-.75-2.906A3.005 3.005 0 0119 15v3h-3zM4.75 12.094A5.973 5.973 0 004 15v3H1v-3a3 3 0 013.75-2.906z"
- ></path>
- </svg>
- <div class="text-sm text-gray-900 dark:text-white">Users</div>
- </a>
- <a
- href="#"
- class="block p-4 text-center rounded-lg hover:bg-gray-100 dark:hover:bg-gray-600 group"
- >
- <svg
- aria-hidden="true"
- class="mx-auto mb-1 w-7 h-7 text-gray-400 group-hover:text-gray-500 dark:text-gray-200 dark:group-hover:text-gray-400"
- fill="currentColor"
- viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path
fill-rule="evenodd"
- d="M5 3a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2V5a2 2 0 00-2-2H5zm0 2h10v7h-2l-1 2H8l-1-2H5V5z"
- clip-rule="evenodd"
- ></path>
+ d="M18 13V5a2 2 0 00-2-2H4a2 2 0 00-2 2v8a2 2 0 002 2h3l3 3 3-3h3a2 2 0 002-2zM5 7a1 1 0 011-1h8a1 1 0 110 2H6a1 1 0 01-1-1zm1 3a1 1 0 100 2h3a1 1 0 100-2H6z"
+ clip-rule="evenodd"></path>
</svg>
- <div class="text-sm text-gray-900 dark:text-white">Inbox</div>
- </a>
- <a
- href="#"
- class="block p-4 text-center rounded-lg hover:bg-gray-100 dark:hover:bg-gray-600 group"
- >
+ </div>
+ </div>
+ <div class="pl-3 w-full">
+ <div
+ class="text-gray-500 font-normal text-sm mb-1.5 dark:text-gray-200">
+ <span class="font-semibold text-gray-900 dark:text-white"
+ >Leslie Livingston</span>
+ mentioned you in a comment:
+ <span
+ class="font-medium text-primary-600 dark:text-primary-500"
+ >@bonnie.green</span>
+ what do you say?
+ </div>
+ <div
+ class="text-xs font-medium text-primary-600 dark:text-primary-500">
+ 1 hour ago
+ </div>
+ </div>
+ </a>
+ <a
+ href="#"
+ class="flex py-3 px-4 hover:bg-gray-100 dark:hover:bg-gray-600">
+ <div class="shrink-0">
+ <img
+ class="w-11 h-11 rounded-full"
+ src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/robert-brown.png"
+ alt="Robert image"
+ />
+ <div
+ class="flex absolute justify-center items-center ml-6 -mt-5 w-5 h-5 bg-purple-500 rounded-full border border-white dark:border-gray-700">
<svg
aria-hidden="true"
- class="mx-auto mb-1 w-7 h-7 text-gray-400 group-hover:text-gray-500 dark:text-gray-200 dark:group-hover:text-gray-400"
+ class="w-3 h-3 text-white"
fill="currentColor"
viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
+ xmlns="http://www.w3.org/2000/svg">
<path
- fill-rule="evenodd"
- d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-6-3a2 2 0 11-4 0 2 2 0 014 0zm-2 4a5 5 0 00-4.546 2.916A5.986 5.986 0 0010 16a5.986 5.986 0 004.546-2.084A5 5 0 0010 11z"
- clip-rule="evenodd"
+ d="M2 6a2 2 0 012-2h6a2 2 0 012 2v8a2 2 0 01-2 2H4a2 2 0 01-2-2V6zM14.553 7.106A1 1 0 0014 8v4a1 1 0 00.553.894l2 1A1 1 0 0018 13V7a1 1 0 00-1.447-.894l-2 1z"
></path>
</svg>
- <div class="text-sm text-gray-900 dark:text-white">
- Profile
- </div>
- </a>
- <a
- href="#"
- class="block p-4 text-center rounded-lg hover:bg-gray-100 dark:hover:bg-gray-600 group"
- >
- <svg
- aria-hidden="true"
- class="mx-auto mb-1 w-7 h-7 text-gray-400 group-hover:text-gray-500 dark:text-gray-200 dark:group-hover:text-gray-400"
- fill="currentColor"
- viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path
- fill-rule="evenodd"
- d="M11.49 3.17c-.38-1.56-2.6-1.56-2.98 0a1.532 1.532 0 01-2.286.948c-1.372-.836-2.942.734-2.106 2.106.54.886.061 2.042-.947 2.287-1.561.379-1.561 2.6 0 2.978a1.532 1.532 0 01.947 2.287c-.836 1.372.734 2.942 2.106 2.106a1.532 1.532 0 012.287.947c.379 1.561 2.6 1.561 2.978 0a1.533 1.533 0 012.287-.947c1.372.836 2.942-.734 2.106-2.106a1.533 1.533 0 01.947-2.287c1.561-.379 1.561-2.6 0-2.978a1.532 1.532 0 01-.947-2.287c.836-1.372-.734-2.942-2.106-2.106a1.532 1.532 0 01-2.287-.947zM10 13a3 3 0 100-6 3 3 0 000 6z"
- clip-rule="evenodd"
- ></path>
- </svg>
- <div class="text-sm text-gray-900 dark:text-white">
- Settings
- </div>
- </a>
- <a
- href="#"
- class="block p-4 text-center rounded-lg hover:bg-gray-100 dark:hover:bg-gray-600 group"
- >
- <svg
- aria-hidden="true"
- class="mx-auto mb-1 w-7 h-7 text-gray-400 group-hover:text-gray-500 dark:text-gray-200 dark:group-hover:text-gray-400"
- fill="currentColor"
- viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path d="M4 3a2 2 0 100 4h12a2 2 0 100-4H4z"></path>
- <path
- fill-rule="evenodd"
- d="M3 8h14v7a2 2 0 01-2 2H5a2 2 0 01-2-2V8zm5 3a1 1 0 011-1h2a1 1 0 110 2H9a1 1 0 01-1-1z"
- clip-rule="evenodd"
- ></path>
- </svg>
- <div class="text-sm text-gray-900 dark:text-white">
- Products
- </div>
- </a>
- <a
- href="#"
- class="block p-4 text-center rounded-lg hover:bg-gray-100 dark:hover:bg-gray-600 group"
- >
- <svg
- aria-hidden="true"
- class="mx-auto mb-1 w-7 h-7 text-gray-400 group-hover:text-gray-500 dark:text-gray-200 dark:group-hover:text-gray-400"
- fill="currentColor"
- viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path
- d="M8.433 7.418c.155-.103.346-.196.567-.267v1.698a2.305 2.305 0 01-.567-.267C8.07 8.34 8 8.114 8 8c0-.114.07-.34.433-.582zM11 12.849v-1.698c.22.071.412.164.567.267.364.243.433.468.433.582 0 .114-.07.34-.433.582a2.305 2.305 0 01-.567.267z"
- ></path>
- <path
- fill-rule="evenodd"
- d="M10 18a8 8 0 100-16 8 8 0 000 16zm1-13a1 1 0 10-2 0v.092a4.535 4.535 0 00-1.676.662C6.602 6.234 6 7.009 6 8c0 .99.602 1.765 1.324 2.246.48.32 1.054.545 1.676.662v1.941c-.391-.127-.68-.317-.843-.504a1 1 0 10-1.51 1.31c.562.649 1.413 1.076 2.353 1.253V15a1 1 0 102 0v-.092a4.535 4.535 0 001.676-.662C13.398 13.766 14 12.991 14 12c0-.99-.602-1.765-1.324-2.246A4.535 4.535 0 0011 9.092V7.151c.391.127.68.317.843.504a1 1 0 101.511-1.31c-.563-.649-1.413-1.076-2.354-1.253V5z"
- clip-rule="evenodd"
- ></path>
- </svg>
- <div class="text-sm text-gray-900 dark:text-white">
- Pricing
- </div>
- </a>
- <a
- href="#"
- class="block p-4 text-center rounded-lg hover:bg-gray-100 dark:hover:bg-gray-600 group"
- >
- <svg
- aria-hidden="true"
- class="mx-auto mb-1 w-7 h-7 text-gray-400 group-hover:text-gray-500 dark:text-gray-200 dark:group-hover:text-gray-400"
- fill="currentColor"
- viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path
- fill-rule="evenodd"
- d="M5 2a2 2 0 00-2 2v14l3.5-2 3.5 2 3.5-2 3.5 2V4a2 2 0 00-2-2H5zm2.5 3a1.5 1.5 0 100 3 1.5 1.5 0 000-3zm6.207.293a1 1 0 00-1.414 0l-6 6a1 1 0 101.414 1.414l6-6a1 1 0 000-1.414zM12.5 10a1.5 1.5 0 100 3 1.5 1.5 0 000-3z"
- clip-rule="evenodd"
- ></path>
- </svg>
- <div class="text-sm text-gray-900 dark:text-white">
- Billing
- </div>
- </a>
- <a
- href="#"
- class="block p-4 text-center rounded-lg hover:bg-gray-100 dark:hover:bg-gray-600 group"
- >
- <svg
- aria-hidden="true"
- class="mx-auto mb-1 w-7 h-7 text-gray-400 group-hover:text-gray-500 dark:text-gray-200 dark:group-hover:text-gray-400"
- fill="none"
- stroke="currentColor"
- viewBox="0 0 24 24"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path
- stroke-linecap="round"
- stroke-linejoin="round"
- stroke-width="2"
- d="M11 16l-4-4m0 0l4-4m-4 4h14m-5 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h7a3 3 0 013 3v1"
- ></path>
- </svg>
- <div class="text-sm text-gray-900 dark:text-white">
- Logout
- </div>
- </a>
+ </div>
</div>
- </div>
- <button
- type="button"
- class="flex mx-3 text-sm bg-gray-800 rounded-full md:mr-0 focus:ring-4 focus:ring-gray-300 dark:focus:ring-gray-600"
- id="user-menu-dropdown-toggle"
- aria-expanded="false"
- data-dropdown-toggle="user-menu-dropdown"
- >
- <span class="sr-only">Open user menu</span>
- <img
- class="w-8 h-8 rounded-full"
- src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/michael-gough.png"
- alt="user photo"
- />
- </button>
- <!-- Dropdown menu -->
- <div
- class="hidden z-50 my-4 w-56 text-base list-none bg-white rounded divide-y divide-gray-100 shadow dark:bg-gray-700 dark:divide-gray-600 rounded-xl"
- id="user-menu-dropdown"
- >
- <div class="py-3 px-4">
- <span
- class="block text-sm font-semibold text-gray-900 dark:text-white"
- >Neil Sims</span
- >
- <span
- class="block text-sm text-gray-900 truncate dark:text-white"
- >name@flowbite.com</span
- >
+ <div class="pl-3 w-full">
+ <div
+ class="text-gray-500 font-normal text-sm mb-1.5 dark:text-gray-200">
+ <span class="font-semibold text-gray-900 dark:text-white"
+ >Robert Brown</span>
+ posted a new video: Glassmorphism - learn how to implement
+ the new design trend.
+ </div>
+ <div
+ class="text-xs font-medium text-primary-600 dark:text-primary-500">
+ 3 hours ago
+ </div>
</div>
- <ul
- class="py-1 text-gray-700 dark:text-gray-300"
- aria-labelledby="user-menu-dropdown-toggle"
- >
- <li>
- <a
- href="#"
- class="block py-2 px-4 text-sm hover:bg-gray-100 dark:hover:bg-gray-600 dark:text-gray-200 dark:hover:text-white"
- >My profile</a
- >
- </li>
- <li>
- <a
- href="#"
- class="block py-2 px-4 text-sm hover:bg-gray-100 dark:hover:bg-gray-600 dark:text-gray-200 dark:hover:text-white"
- >Account settings</a
- >
- </li>
- </ul>
- <ul
- class="py-1 text-gray-700 dark:text-gray-300"
- aria-labelledby="dropdown"
- >
- <li>
- <a
- href="#"
- class="flex items-center py-2 px-4 text-sm hover:bg-gray-100 dark:hover:bg-gray-600 dark:hover:text-white"
- ><svg
- class="mr-2 w-5 h-5 text-gray-400"
- fill="currentColor"
- viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path
- fill-rule="evenodd"
- d="M3.172 5.172a4 4 0 015.656 0L10 6.343l1.172-1.171a4 4 0 115.656 5.656L10 17.657l-6.828-6.829a4 4 0 010-5.656z"
- clip-rule="evenodd"
- ></path>
- </svg>
- My likes</a
- >
- </li>
- <li>
- <a
- href="#"
- class="flex items-center py-2 px-4 text-sm hover:bg-gray-100 dark:hover:bg-gray-600 dark:hover:text-white"
- ><svg
- class="mr-2 w-5 h-5 text-gray-400"
- fill="currentColor"
- viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path
- d="M7 3a1 1 0 000 2h6a1 1 0 100-2H7zM4 7a1 1 0 011-1h10a1 1 0 110 2H5a1 1 0 01-1-1zM2 11a2 2 0 012-2h12a2 2 0 012 2v4a2 2 0 01-2 2H4a2 2 0 01-2-2v-4z"
- ></path>
- </svg>
- Collections</a
- >
- </li>
- <li>
- <a
- href="#"
- class="flex justify-between items-center py-2 px-4 text-sm hover:bg-gray-100 dark:hover:bg-gray-600 dark:hover:text-white"
- >
- <span class="flex items-center">
- <svg
- aria-hidden="true"
- class="mr-2 w-5 h-5 text-primary-600 dark:text-primary-500"
- fill="currentColor"
- viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path
- fill-rule="evenodd"
- d="M12.395 2.553a1 1 0 00-1.45-.385c-.345.23-.614.558-.822.88-.214.33-.403.713-.57 1.116-.334.804-.614 1.768-.84 2.734a31.365 31.365 0 00-.613 3.58 2.64 2.64 0 01-.945-1.067c-.328-.68-.398-1.534-.398-2.654A1 1 0 005.05 6.05 6.981 6.981 0 003 11a7 7 0 1011.95-4.95c-.592-.591-.98-.985-1.348-1.467-.363-.476-.724-1.063-1.207-2.03zM12.12 15.12A3 3 0 017 13s.879.5 2.5.5c0-1 .5-4 1.25-4.5.5 1 .786 1.293 1.371 1.879A2.99 2.99 0 0113 13a2.99 2.99 0 01-.879 2.121z"
- clip-rule="evenodd"
- ></path>
- </svg>
- Pro version
- </span>
- <svg
- aria-hidden="true"
- class="w-5 h-5 text-gray-400"
- fill="currentColor"
- viewBox="0 0 20 20"
- xmlns="http://www.w3.org/2000/svg"
- >
- <path
- fill-rule="evenodd"
- d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z"
- clip-rule="evenodd"
- ></path>
- </svg>
- </a>
- </li>
- </ul>
- <ul
- class="py-1 text-gray-700 dark:text-gray-300"
- aria-labelledby="dropdown"
- >
- <li>
- <a
- href="#"
- class="block py-2 px-4 text-sm hover:bg-gray-100 dark:hover:bg-gray-600 dark:hover:text-white"
- >Sign out</a
- >
- </li>
- </ul>
- </div>
+ </a>
</div>
+ <a
+ href="#"
+ class="block py-2 text-md font-medium text-center text-gray-900 bg-gray-50 hover:bg-gray-100 dark:bg-gray-600 dark:text-white dark:hover:underline">
+ <div class="inline-flex items-center">
+ <svg
+ aria-hidden="true"
+ class="mr-2 w-4 h-4 text-gray-500 dark:text-gray-200"
+ fill="currentColor"
+ viewBox="0 0 20 20"
+ xmlns="http://www.w3.org/2000/svg">
+ <path d="M10 12a2 2 0 100-4 2 2 0 000 4z"></path>
+ <path
+ fill-rule="evenodd"
+ d="M.458 10C1.732 5.943 5.522 3 10 3s8.268 2.943 9.542 7c-1.274 4.057-5.064 7-9.542 7S1.732 14.057.458 10zM14 10a4 4 0 11-8 0 4 4 0 018 0z"
+ clip-rule="evenodd"></path>
+ </svg>
+ View all
+ </div>
+ </a>
</div>
- </nav>
+ </div>
+
+ %>
+<% end %>