Files
monotab/lib/pages/home.ex

19 lines
461 B
Elixir

defmodule Llmex.Pages.Index do
use Tableau.Page,
layout: Llmex.RootLayout,
permalink: "/"
use Phoenix.Component
def template(assigns) do
~H"""
<section>
<h2>Welcome to Llmex Blog</h2>
<p>
A simple blog built with Elixir, Phoenix LiveView, and Tableau static site generator.
Explore our latest posts and insights on functional programming, web development, and more.
</p>
</section>
"""
end
end