Inclusion isn't endorsement; no warranty on safety/quality/durability/fit or continued existence; no responsibility after click-through. Plain, non-legalese tone preserved.
86 lines
3.2 KiB
Plaintext
86 lines
3.2 KiB
Plaintext
---
|
|
import BaseLayout from '../layouts/BaseLayout.astro';
|
|
import { buildOgImage, buildBreadcrumbs } from '../lib/seo';
|
|
|
|
const ogImage = buildOgImage(undefined, 'site', 'Unique legal page');
|
|
const breadcrumbs = buildBreadcrumbs([
|
|
{ name: 'Home', url: '/' },
|
|
{ name: 'Legal', url: '/legal/' },
|
|
]);
|
|
---
|
|
|
|
<BaseLayout
|
|
title="Legal"
|
|
description="Privacy, terms, affiliate disclosure, and trademark notes for Unique."
|
|
subheader="The legal mumbo jumbo, kept short and honest."
|
|
ogImage={ogImage}
|
|
jsonLd={breadcrumbs}
|
|
>
|
|
<article>
|
|
<h2>Privacy</h2>
|
|
<p>
|
|
Unique uses Cloudflare Web Analytics — a privacy-preserving, cookieless
|
|
beacon that records aggregate page views, referrers, and country (derived
|
|
from IP at request time and discarded). It sets no cookies and does not
|
|
fingerprint or identify visitors. The site itself sets no cookies, and
|
|
runs no ad pixels or third-party trackers beyond that beacon. Your visit
|
|
also produces a normal web-server access log entry (IP, user-agent,
|
|
referrer, requested path) at our hosting provider, kept only for the
|
|
rolling window needed to investigate abuse and outages, and never sold
|
|
or shared.
|
|
</p>
|
|
<p>
|
|
Outbound links go to third-party sites that have their own privacy
|
|
practices; we have no control over those.
|
|
</p>
|
|
|
|
<h2>Affiliate disclosure</h2>
|
|
<p>
|
|
Some outbound links — most often to Amazon — are affiliate links. If you
|
|
buy something after clicking one, we may earn a small commission at no
|
|
additional cost to you. Affiliate links are marked with an
|
|
<strong>Affiliate</strong> badge and a one-line disclosure on each page
|
|
where they appear. Affiliate revenue does not influence what we cover or
|
|
how we cover it; nothing on this site is sponsored or paid placement.
|
|
</p>
|
|
|
|
<h2>Trademarks & copyright</h2>
|
|
<p>
|
|
All product names, logos, screenshots, and brand marks belong to their
|
|
respective owners and appear here under fair use for editorial review
|
|
and commentary. If you're a rights-holder and would like an image
|
|
removed or attribution corrected, please get in touch.
|
|
</p>
|
|
<p>
|
|
Original writing on Unique is © {new Date().getFullYear()} Unique, all
|
|
rights reserved.
|
|
</p>
|
|
|
|
<h2>Use of the site</h2>
|
|
<p>
|
|
Inclusion isn't endorsement. If something appears on Unique, it caught
|
|
our eye — that's all. We don't test every claim or vouch for the safety,
|
|
quality, durability, fit, or even the continued existence of anything we
|
|
cover. Prices and availability change, outbound sites have their own
|
|
quirks, and we accept no responsibility for what happens after you click
|
|
through. Use your own judgement before buying, installing, or trying
|
|
anything you find here.
|
|
</p>
|
|
|
|
<h2>Contact</h2>
|
|
<p>
|
|
Questions, corrections, or takedown requests: reach out via the address
|
|
on the <a href="/about/">About</a> page.
|
|
</p>
|
|
</article>
|
|
|
|
<style>
|
|
article h2 {
|
|
margin-top: 2rem;
|
|
font-size: 1.15rem;
|
|
}
|
|
article h2:first-of-type { margin-top: 0; }
|
|
article p { margin: 0.7rem 0; }
|
|
</style>
|
|
</BaseLayout>
|