Files
craft2prints/src/app/terms/page.tsx
T

116 lines
4.7 KiB
TypeScript

import Link from 'next/link';
import LegalPage from '@/components/LegalPage';
export const metadata = { title: 'Terms & Conditions — Craft2Prints' };
export default function TermsPage() {
return (
<LegalPage tag="Legal" title="Terms & Conditions" lastUpdated="13 July 2026">
<h2>About us</h2>
<p>
These terms apply to every order placed at craft2prints.co.uk. Craft2Prints is a UK-based
sole trader business. You can contact us at{' '}
<a href="mailto:sales@craft2prints.co.uk">sales@craft2prints.co.uk</a> or by post at
[BUSINESS ADDRESS]. By placing an order you agree to these terms please also read our{' '}
<Link href="/returns">Returns &amp; Refunds policy</Link> and{' '}
<Link href="/privacy">Privacy Policy</Link>.
</p>
<h2>Ordering</h2>
<ul>
<li>
Placing an order is an offer to buy. A contract is formed when your payment is accepted
and we confirm the order.
</li>
<li>
Personalised items are printed after you order, exactly as shown in your design preview
including spelling, wording, and placement. Please check your preview carefully before
checking out; what you approve is what we print.
</li>
<li>
For designs we prepare for you (custom photo requests), we&apos;ll send you a proof to
review first. Approving the proof counts as approving the final design for print.
</li>
<li>
We may decline or cancel an order at our discretion for example if a design breaches
the content rules below, an item is unavailable, or there was an obvious pricing error.
If we cancel, you&apos;ll receive a full refund.
</li>
</ul>
<h2>Your designs and uploads</h2>
<ul>
<li>
You keep ownership of anything you upload. You grant us permission to use it solely to
produce, preview, and fulfil your order.
</li>
<li>
By uploading an image or text, you confirm you own it or have the right to use it
including photographs, logos, characters, and brand names. You are responsible for any
claim that a design you supplied infringes someone else&apos;s rights.
</li>
<li>
We won&apos;t print material that is illegal, hateful, or that we reasonably believe
infringes someone else&apos;s intellectual property, and we may cancel (and refund) such
orders.
</li>
</ul>
<h2>Prices and payment</h2>
<ul>
<li>
All prices are in pounds sterling (GBP) and you will be charged in GBP. Prices shown in
other currencies are approximate conversions for convenience only.
</li>
<li>
The price charged is the listed price (including any active sale or promotion) at the
moment you check out, calculated on our servers.
</li>
<li>
Payment is taken securely by Stripe at checkout. We never see or store your card details.
</li>
</ul>
<h2>Delivery</h2>
<ul>
<li>
Personalised items are made to order, so please allow production time before dispatch.
Any timescales shown are our best estimates, not guarantees.
</li>
<li>
If your order hasn&apos;t arrived within a reasonable time of the estimate,{' '}
<Link href="/contact">contact us</Link> and we&apos;ll put it right.
</li>
</ul>
<h2>Returns and faulty items</h2>
<p>
Your rights differ between personalised and ready-made items see the full{' '}
<Link href="/returns">Returns &amp; Refunds policy</Link>. Nothing in these terms affects
your statutory rights as a UK consumer.
</p>
<h2>Our liability</h2>
<p>
If we get something wrong, our liability to you is limited to the amount you paid for the
order, except where the law doesn&apos;t allow liability to be limited (for example, for
death or personal injury caused by negligence, or fraud). We aren&apos;t responsible for
losses that weren&apos;t reasonably foreseeable when the order was placed.
</p>
<h2>General</h2>
<ul>
<li>
We may update these terms from time to time; the version published when you order is the
one that applies to that order.
</li>
<li>
These terms are governed by the law of England and Wales, and any dispute belongs to the
courts of England and Wales though we&apos;d much rather you{' '}
<Link href="/contact">talk to us</Link> first.
</li>
</ul>
</LegalPage>
);
}