defmodule MoonWeb.Components.Facing.Updates do
@moduledoc false
use MoonWeb, :stateless_component
alias Moon.Design.Carousel
alias MoonWeb.Components.Facing.CardArticle
alias MoonWeb.Components.Facing.SectionTitle
def render(assigns) do
~F"""
<:title>Introduction to the world of dialogs and notifications.
<:section>blog
<:author>Natalja Saks
<:title>10 Guidelines to efficiently display data tables.
<:section>blog
<:author>Ksenia Pavlov
<:title>UX aspect of design system.
<:section>blog
<:author>Dmytro Nikolaienko
<:title>Learn how to get Moon Design System up and running in your project.
<:section>tools
<:title>Customizing color palette for your project.
<:section>tools
"""
end
end