defmodule Paleta.Components.ErrorPage do use Phoenix.Component attr(:title, :string, required: true) def error_404(assigns) do ~H""" Error 404 - <%= @title %>
image image

404

Oops. This Page Not Found.

This page you are looking not available

Back To Home
""" end attr(:title, :string, required: true) def error_500(assigns) do ~H""" Error 500 - <%= @title %>
image

500

Internal Server Error

The server has been deserted for a while. Please be patient or try again later

""" end end