defmodule CometApp.MainLayout do use Hologram.Component alias CometApp.Components.Title alias Hologram.UI.Runtime prop :page_title, :string, default: nil def template do ~HOLO""" <Runtime /> </head> <body class="from-amber-900 bg-linear-to-tl to-stone-950 to-80% bg-fixed text-white p-10 w-screen h-screen flex justify-center flex-col"> <slot/> </body> </html> """ end end