15 lines
282 B
Elixir
15 lines
282 B
Elixir
defmodule Website.AboutPage do
|
|
use Tableau.Page,
|
|
layout: Website.PageLayout,
|
|
permalink: "/about",
|
|
title: "About"
|
|
|
|
use Phoenix.Component
|
|
|
|
def template(assigns) do
|
|
~H"""
|
|
<p>There is going to be something here, but for now there is not.</p>
|
|
"""
|
|
end
|
|
end
|