Files
bookhoard/templates/index.templ
T
john-okeefe ab465d8e0e feat(ui): adopt book-open brand icon and add SVG favicon
Bring the tighten-ui brand treatment into new-ui:

- Replace the emoji book (📚) in the sidebar header with the book-open
  icon rendered in the theme accent color, matching the tighten-ui
  header brand (templates/header.templ).
- Add web/static/favicon.svg (book-open glyph, tokyo-night accent
  #7aa2f7 stroke) and reference it from the <head> of all 27 page
  templates, so the favicon is present on login/setup/error pages too.
- Regenerate templ output for all affected templates.
2026-08-10 13:43:13 -04:00

112 lines
5.2 KiB
Templ

package templates
templ Index(loggedIn bool) {
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Bookhoard - Home</title>
<script src="/static/htmx.min.js"></script>
<script type="module" src="/static/main.js"></script>
<link href="/static/style.css" rel="stylesheet"/>
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg"/>
</head>
<body class="theme-tokyo-night" x-data="index" x-init="initIndexTheme(); checkAuthRedirect()">
<div class="absolute top-4 right-4 z-10">
<select
id="theme-select"
@change="changeTheme"
class="input w-auto py-1.5 pr-8 text-sm cursor-pointer"
aria-label="Theme"
>
for _, opt := range ThemeOptions {
<option value={ opt.Name }>{ opt.Label }</option>
}
</select>
</div>
<!-- Hero -->
<div class="brand-gradient relative overflow-hidden">
<div class="max-w-7xl mx-auto px-4 py-20 sm:px-6 sm:py-28 lg:py-36 lg:px-8 text-center">
<div class="inline-flex items-center gap-3 mb-6">
<span class="text-5xl">📚</span>
<span class="text-4xl sm:text-6xl font-extrabold tracking-tight" style="color: var(--text-primary)">Bookhoard</span>
</div>
<p class="mt-4 max-w-2xl mx-auto text-lg sm:text-xl" style="color: var(--text-secondary)">
Your personal ebook management system. Track reading progress, organize your library, and sync across every device.
</p>
<div class="mt-10 flex items-center justify-center gap-3">
if loggedIn {
<a href="/dashboard" class="btn btn-primary px-8 py-3 text-base">Go to Library</a>
} else {
<a href="#auth" class="btn btn-primary px-8 py-3 text-base">Get Started</a>
<a href="#features" class="btn btn-secondary px-6 py-3 text-base">Learn more</a>
}
</div>
</div>
</div>
<!-- Features -->
<div id="features" class="py-16 sm:py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-extrabold tracking-tight" style="color: var(--text-primary)">Why Bookhoard?</h2>
<p class="mt-3 text-lg" style="color: var(--text-secondary)">Everything you need to manage your ebook library</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="card p-6">
<div class="grid place-items-center h-12 w-12 rounded-xl mb-4" style="background-color: var(--accent-muted); color: var(--accent);">
@Icon("book-open", "h-6 w-6")
</div>
<h3 class="text-lg font-semibold mb-2" style="color: var(--text-primary)">Reading Progress</h3>
<p class="text-sm" style="color: var(--text-secondary)">Track progress across all your ebooks with detailed statistics and sync.</p>
</div>
<div class="card p-6">
<div class="grid place-items-center h-12 w-12 rounded-xl mb-4" style="background-color: var(--accent-muted); color: var(--accent);">
@Icon("palette", "h-6 w-6")
</div>
<h3 class="text-lg font-semibold mb-2" style="color: var(--text-primary)">Beautiful Themes</h3>
<p class="text-sm" style="color: var(--text-secondary)">Choose from 11 stunning themes including Tokyo Night, Dracula, and Catppuccin.</p>
</div>
<div class="card p-6">
<div class="grid place-items-center h-12 w-12 rounded-xl mb-4" style="background-color: var(--accent-muted); color: var(--accent);">
@Icon("device", "h-6 w-6")
</div>
<h3 class="text-lg font-semibold mb-2" style="color: var(--text-primary)">Cross-Device Sync</h3>
<p class="text-sm" style="color: var(--text-secondary)">Built with Go and HTMX for fast performance and seamless device syncing.</p>
</div>
</div>
</div>
</div>
<!-- Auth -->
if !loggedIn {
<div id="auth" class="pb-20 px-4">
<div class="max-w-md mx-auto">
<div class="text-center mb-8">
<h2 class="text-2xl font-extrabold tracking-tight" style="color: var(--text-primary)">Welcome back</h2>
<p class="mt-2" style="color: var(--text-secondary)">Sign in to start managing your ebook library</p>
</div>
<div class="card p-8">
<form hx-post="/api/auth/login" hx-target="#auth-result" hx-swap="innerHTML" class="space-y-4">
<div>
<label class="block text-xs font-semibold uppercase tracking-wide mb-2" style="color: var(--text-secondary)">Email or Username</label>
<input type="text" name="login" class="input" required/>
</div>
<div>
<label class="block text-xs font-semibold uppercase tracking-wide mb-2" style="color: var(--text-secondary)">Password</label>
<input type="password" name="password" class="input" required/>
</div>
<button type="submit" class="btn btn-primary w-full py-2.5">Sign In</button>
</form>
<p class="text-center text-sm mt-4" style="color: var(--text-secondary)">
No account?
<a href="/register" class="font-medium hover:underline" style="color: var(--accent)">Register</a>
</p>
</div>
<div id="auth-result" class="mt-4 text-center text-sm"></div>
</div>
</div>
}
</body>
</html>
}