defmodule AshHqWeb.Pages.Community do @moduledoc "The Community page - a spot to collect the various links to different Ash community hubs that exist around the web." use Phoenix.Component alias AshHqWeb.Components.{CalloutText, CommunityLink} def community(assigns) do ~H"""
Join the
The Ash Framework has a thriving community ready to welcome developers at all skill levels. All questions, ideas and contributions are valuable, so please join in!
<:description> The Ash discord is where you'll find people sharing ideas, collaborating on code, and discussing the Elixir ecosystem. <:icon> <:description> The Ash section on Elixir Forum is the perfect place to ask questions or see what other people have been building. <:icon> <:description> The Ash Project on GitHub is your one stop shop for all of the source code across the various Ash libraries. <:icon>
""" end end