skills/templates/home.html
2026-05-10 21:06:23 +02:00

27 lines
1,014 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="/auth/login">Sign In</a>
<a class="btn" href="/dashboard">Open Dashboard</a>
</div>
{{if .DevMode}}
<p class="hint">Dev mode is active. Authentication uses the demo user automatically.</p>
{{else}}
<p class="hint">Authentication is handled by your OIDC provider using secure session cookies.</p>
{{end}}
</section>
</main>
</body>
</html>