defmodule <%= inspect(web_module) %>.Demo do
use <%= inspect(web_module) %>, :surface_live_view
alias <%= inspect(web_module) %>.Components.Card
def render(assigns) do
~F"""
<:header>
Surface UI
Start building rich interactive user-interfaces, writing minimal custom Javascript.
Built on top of Phoenix LiveView, Surface leverages the amazing
Phoenix Framework to provide a fast and productive solution to
build modern web applications.
<:footer>
#surface
#phoenix
#tailwindcss
"""
end
end