Packages

Multi-surface application runtime for Elixir. One TEA module renders to terminal, browser (LiveView), SSH, and MCP (agents). 30+ widgets, flexbox + CSS grid, AI agent runtime, distributed swarm with CRDTs, time-travel debugging, session recording, sandboxed REPL, and agentic commerce.

Current section

Files

Jump to
raxol lib raxol_web templates page home.html.heex
Raw

lib/raxol_web/templates/page/home.html.heex

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Raxol Home</title>
<link phx-track-static rel="stylesheet" href={Routes.static_path(@conn, "/@static/app.css")}/>
</head>
<body>
<h1>Welcome to Raxol!</h1>
<p>This is the placeholder home page.</p>
<%# Example link to the terminal live view %>
<%# Uncomment if TerminalLive is set up %>
<%# <.link href={~p"/terminal"}>Go to Terminal</.link> %>
<script defer phx-track-static type="text/javascript" src={Routes.static_path(@conn, "/@static/app.js")}></script>
</body>
</html>