init commit

This commit is contained in:
2025-07-26 03:35:08 -04:00
commit 378c8e09fb
24 changed files with 1733 additions and 0 deletions

15
lib/pages/home_page.ex Normal file
View File

@@ -0,0 +1,15 @@
defmodule Llmex.HomePage do
use Tableau.Page,
layout: Llmex.RootLayout,
permalink: "/"
use Phoenix.Component
def template(assigns) do
~H"""
<p>
hello, world!
</p>
"""
end
end