Add imprint page with privacy/attribution info and footer link

Adds /imprint/ with operator contact, self-hosted Umami analytics
disclosure, content attribution, and disclaimer sections. Links
Imprint in the footer bottom bar next to the pivoine.art credit.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-07 19:09:54 +02:00
parent b216578289
commit 1c529d6f20
4 changed files with 99 additions and 1 deletions
+72
View File
@@ -0,0 +1,72 @@
{{ define "main" }}
<div class="max-w-[820px] mx-auto px-8 max-[860px]:px-5 pb-24">
<!-- Breadcrumbs -->
<nav class="flex gap-[11px] items-center font-mono text-[11px] tracking-[0.1em] uppercase text-ink-faint pt-10 pb-10 flex-wrap">
<a href="/" class="text-ink-mute hover:text-gold-2 transition-colors duration-[160ms]">Bar Pivoine</a>
<span>/</span>
<span class="text-gold">Imprint</span>
</nav>
<h1 class="display text-[clamp(44px,6vw,72px)] leading-none tracking-[-0.02em] mb-14">Imprint</h1>
<!-- Operator -->
<section class="mb-12">
<h2 class="font-mono text-[11px] tracking-[0.2em] uppercase text-gold mb-5 pb-3 border-b border-warm/10">Operator</h2>
<dl class="grid grid-cols-[120px_1fr] items-baseline gap-x-8 gap-y-[14px]">
<dt class="font-mono text-[11px] text-ink-mute uppercase tracking-[0.12em] m-0">Name</dt>
<dd class="text-ink text-[15px] m-0">Valknar</dd>
<dt class="font-mono text-[11px] text-ink-mute uppercase tracking-[0.12em] m-0">Contact</dt>
<dd class="text-ink text-[15px] m-0"><a href="mailto:valknar@pivoine.art" class="underline underline-offset-2 hover:text-gold transition-colors duration-[160ms]">valknar@pivoine.art</a></dd>
<dt class="font-mono text-[11px] text-ink-mute uppercase tracking-[0.12em] m-0">Website</dt>
<dd class="text-ink text-[15px] m-0"><a href="https://pivoine.art" class="underline underline-offset-2 hover:text-gold transition-colors duration-[160ms]">pivoine.art</a></dd>
</dl>
</section>
<!-- Privacy -->
<section class="mb-12">
<h2 class="font-mono text-[11px] tracking-[0.2em] uppercase text-gold mb-5 pb-3 border-b border-warm/10">Privacy &amp; Analytics</h2>
<div class="space-y-4 text-ink-soft text-[15px] leading-[1.75]">
<p>
Bar Pivoine uses <a href="https://umami.is" class="underline underline-offset-2 hover:text-gold transition-colors duration-[160ms]">Umami</a>,
a self-hosted, open-source analytics platform. The Umami instance runs on infrastructure
controlled solely by the operator — no data is shared with third parties.
</p>
</div>
</section>
<!-- Content -->
<section class="mb-12">
<h2 class="font-mono text-[11px] tracking-[0.2em] uppercase text-gold mb-5 pb-3 border-b border-warm/10">Content &amp; Attribution</h2>
<div class="space-y-4 text-ink-soft text-[15px] leading-[1.75]">
<p>
Cocktail recipes are sourced from the
<a href="https://www.kaggle.com/datasets/aadyasingh55/cocktails" class="underline underline-offset-2 hover:text-gold transition-colors duration-[160ms]">open cocktail dataset</a>
published on Kaggle under an open licence. Recipe photography is AI-generated via
FLUX.2 pro (Black Forest Labs) through the Replicate platform.
</p>
<p>
All editorial text, design, and code are original work by the operator unless otherwise
noted. Reproduction for non-commercial purposes is permitted with attribution.
</p>
</div>
</section>
<!-- Disclaimer -->
<section>
<h2 class="font-mono text-[11px] tracking-[0.2em] uppercase text-gold mb-5 pb-3 border-b border-warm/10">Disclaimer</h2>
<div class="space-y-4 text-ink-soft text-[15px] leading-[1.75]">
<p>
This site is intended for adults of legal drinking age in their respective country.
Drink responsibly.
</p>
<p>
Recipe accuracy is not guaranteed. Always verify ingredient compatibility and safety,
especially when substituting spirits or when preparing cocktails for guests with dietary
restrictions or allergies.
</p>
</div>
</section>
</div>
{{ end }}
+4 -1
View File
@@ -50,7 +50,10 @@
<!-- Bottom bar -->
<div class="flex justify-between items-center mt-[54px] pt-6 border-t border-warm/10">
<span class="font-mono text-[11px] text-ink-faint tracking-[0.04em]">© 2026 Bar Pivoine</span>
<span class="font-mono text-[11px] text-ink-faint tracking-[0.04em]">Powered by <a href="https://pivoine.art" class="hover:text-ink transition-colors duration-[180ms]">pivoine.art</a></span>
<div class="flex items-center gap-5">
<a href="/imprint/" class="font-mono text-[11px] text-ink-faint tracking-[0.04em] hover:text-ink transition-colors duration-[180ms]">Imprint</a>
<span class="font-mono text-[11px] text-ink-faint tracking-[0.04em]">Powered by <a href="https://pivoine.art" class="hover:text-ink transition-colors duration-[180ms]">pivoine.art</a></span>
</div>
</div>
</div>