2024-11-08 19:10:38 +02:00
|
|
|
defmodule Website.AboutPage do
|
2024-11-08 18:33:02 +02:00
|
|
|
use Tableau.Page,
|
|
|
|
layout: Website.PageLayout,
|
|
|
|
permalink: "/about",
|
|
|
|
title: "About"
|
|
|
|
|
|
|
|
use Phoenix.Component
|
|
|
|
|
|
|
|
def template(assigns) do
|
|
|
|
~H"""
|
2024-11-18 17:10:08 +02:00
|
|
|
<p>There is going to be something here, but for now there is not.</p>
|
2024-11-08 18:33:02 +02:00
|
|
|
"""
|
|
|
|
end
|
|
|
|
end
|