19 lines
352 B
Elixir
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
|