34 lines
841 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Penpot plugin example</title>
</head>
<body>
<p>Penpot plugin starter template</p>
<p>
Checkout the
<a target="_blank" href="https://help.penpot.app/plugins/"
>documentation</a
>
to get started.
</p>
<button type="button" data-appearance="primary" data-handler="create-text">
Create text
</button>
<button type="button" data-appearance="secondary" data-handler="connect-mcp">
Connect to MCP server
</button>
<div id="connection-status" style="margin-top: 10px; font-size: 12px; color: #666;">
Not connected
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>