Files
monotab/lib/pages/home.ex
2025-07-26 13:27:35 -04:00

19 lines
352 B
Elixir

defmodule MonoTab.Pages.Index do
use Tableau.Page,
layout: MonoTab.RootLayout,
permalink: "/"
use Phoenix.Component
def template(assigns) do
~H"""
<section>
<h2>Welcome</h2>
<p>
A simple blog built with Elixir, Phoenix LiveView, and Tableau static site generator.
</p>
</section>
"""
end
end