73 lines
3.6 KiB
HTML
73 lines
3.6 KiB
HTML
|
|
{{ 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 & 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 & 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 }}
|