From b0b70640ab98a5f8d7636c60c0dab6ae259ffdee Mon Sep 17 00:00:00 2001 From: Timo Knuth Date: Thu, 2 Jul 2026 10:17:27 +0200 Subject: [PATCH] Terms page --- .claude/settings.local.json | 6 +- src/app/(main)/(marketing)/terms/page.tsx | 147 ++++++++++++++++++++++ src/components/ui/Footer.tsx | 39 +++--- src/i18n/de.json | 1 + src/i18n/en.json | 1 + 5 files changed, 174 insertions(+), 20 deletions(-) create mode 100644 src/app/(main)/(marketing)/terms/page.tsx diff --git a/.claude/settings.local.json b/.claude/settings.local.json index 3e89cb9..00d3398 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -31,5 +31,9 @@ ], "deny": [], "ask": [] - } + }, + "enabledMcpjsonServers": [ + "firecrawl", + "apify" + ] } diff --git a/src/app/(main)/(marketing)/terms/page.tsx b/src/app/(main)/(marketing)/terms/page.tsx new file mode 100644 index 0000000..7d06443 --- /dev/null +++ b/src/app/(main)/(marketing)/terms/page.tsx @@ -0,0 +1,147 @@ +import React from 'react'; +import Link from 'next/link'; +import { ObfuscatedMailto } from '@/components/ui/ObfuscatedMailto'; + +export const metadata = { + title: 'Terms of Service | QR Master', + description: 'Read the QR Master Terms of Service to understand the rules, rights, and responsibilities that apply when you use our QR code platform.', + openGraph: { + title: 'Terms of Service | QR Master', + description: 'Read the QR Master Terms of Service to understand the rules, rights, and responsibilities that apply when you use our QR code platform.', + url: 'https://www.qrmaster.net/terms', + type: 'website', + images: ['/og-image.png'], + }, +}; + +export default function TermsPage() { + return ( +
+
+
+ + ← Back to Home + +
+ +

Terms of Service

+

Last updated: July 2026

+ +
+
+

1. Acceptance of Terms

+

+ Welcome to QR Master ("we," "our," or "us"). By accessing or using our website and services, you agree to be + bound by these Terms of Service. If you do not agree to these terms, please do not use our services. +

+
+ +
+

2. Description of Service

+

+ QR Master provides a platform for creating and managing static and dynamic QR codes, including scan + analytics, customization tools, and bulk creation features. We may add, change, or remove features at any + time. +

+
+ +
+

3. Accounts

+
    +
  • You are responsible for maintaining the confidentiality of your account credentials and for all activity under your account.
  • +
  • You must be at least 16 years old to use our services.
  • +
  • You must provide accurate account information and keep it up to date.
  • +
  • You may delete your account at any time from your account settings.
  • +
+
+ +
+

4. Subscriptions & Payments

+

+ QR Master offers FREE, PRO, and BUSINESS subscription plans. Paid subscriptions are billed through Stripe + and renew automatically until cancelled. You can manage or cancel your subscription at any time through + the customer billing portal in your account settings. +

+

+ Fees are non-refundable except where required by applicable law. Downgrading or cancelling a plan may + affect the availability of dynamic QR codes and other paid features. +

+
+ +
+

5. Acceptable Use

+

You agree not to use QR Master to:

+
    +
  • Create or distribute QR codes linking to illegal, fraudulent, or harmful content
  • +
  • Spam, phish, or mislead scanners about the destination of a QR code
  • +
  • Attempt to circumvent rate limits, security measures, or plan restrictions
  • +
  • Interfere with or disrupt the integrity or performance of our services
  • +
  • Reverse engineer or resell access to our services without authorization
  • +
+

+ We reserve the right to disable QR codes or accounts that violate this policy. +

+
+ +
+

6. Intellectual Property

+

+ QR Master and its original content, features, and functionality are owned by us and are protected by + copyright, trademark, and other intellectual property laws. You retain all rights to the content and + destinations you associate with your own QR codes. +

+
+ +
+

7. Termination

+

+ We may suspend or terminate your access to QR Master at any time if you violate these terms or misuse our + services. You may stop using our services and delete your account at any time. +

+
+ +
+

8. Disclaimers & Limitation of Liability

+

+ Our services are provided "as is" and "as available" without warranties of any kind. We do not control + and are not responsible for the content that a QR code links to once you set its destination. To the + maximum extent permitted by law, QR Master shall not be liable for any indirect, incidental, or + consequential damages arising from your use of the services. +

+
+ +
+

9. Changes to These Terms

+

+ We may update these Terms of Service from time to time. We will update the "Last updated" date above when + changes are made. Continued use of our services after changes take effect constitutes acceptance of the + revised terms. +

+
+ +
+

10. Contact Us

+

+ If you have questions about these Terms of Service, please contact us: +

+
+

+ Email:{' '} + +

+

Website: qrmaster.net

+
+
+
+ +
+

+ + Back to Home + +

+
+
+
+ ); +} diff --git a/src/components/ui/Footer.tsx b/src/components/ui/Footer.tsx index 1797fa8..dc417bf 100644 --- a/src/components/ui/Footer.tsx +++ b/src/components/ui/Footer.tsx @@ -18,27 +18,27 @@ export function Footer({ variant = 'marketing', t }: FooterProps) {