23 lines
817 B
HTML
23 lines
817 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{.Title}}</title>
|
|
<link rel="stylesheet" href="/static/styles.css">
|
|
</head>
|
|
<body>
|
|
<main class="shell">
|
|
<section class="hero">
|
|
<p class="badge">LLM Skill Marketplace</p>
|
|
<h1>Sell, buy, and reuse high quality LLM skills</h1>
|
|
<p class="lead">Upload your prompt packages, automations, and reusable skill bundles. Other users can purchase them and copy directly into their own workspace.</p>
|
|
<div class="actions">
|
|
<a class="btn primary" href="/dashboard">Open Dashboard</a>
|
|
</div>
|
|
<p class="hint">Authentication uses your external OIDC provider token via Authorization header.</p>
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html>
|
|
|