Files
silma-bone-lord-bob/pages/terms.tsx
T

163 lines
7.3 KiB
TypeScript
Raw Normal View History

import Head from "next/head";
import Link from "next/link";
import styles from "@/styles/Home.module.css";
const UPDATED = "April 11, 2025";
export default function Terms() {
return (
<>
<Head>
<title>Terms &amp; Conditions | Bone Lord Bob</title>
<meta
name="description"
content="Terms and Conditions for Bone Lord Bob — rules governing your use of www.bonelordbob.com and all associated content."
/>
<meta name="keywords" content="Bone Lord Bob terms and conditions, terms of service, legal, usage policy" />
<meta property="og:title" content="Terms &amp; Conditions — Bone Lord Bob" />
<meta property="og:description" content="Terms and Conditions governing your use of Bone Lord Bob." />
<meta property="og:url" content="https://www.bonelordbob.com/terms" />
<link rel="canonical" href="https://www.bonelordbob.com/terms" />
</Head>
<div className={styles.page}>
<nav className={styles.nav}>
<Link href="/" className={styles.navLogo}>
Bone Lord <span>Bob</span>
</Link>
<ul className={styles.navLinks}>
<li><Link href="/">Home</Link></li>
<li><Link href="/privacy">Privacy</Link></li>
</ul>
</nav>
<main className={styles.legal}>
<h1 className={styles.legalTitle}>Terms &amp; Conditions</h1>
<span className={styles.legalUpdated}>Last updated: {UPDATED}</span>
<div className={styles.legalSection}>
<p>
These Terms and Conditions (&ldquo;Terms&rdquo;) govern your use of{" "}
<strong>www.bonelordbob.com</strong> (the &ldquo;Site&rdquo;), operated by Mathison Projects
Inc. (&ldquo;we,&rdquo; &ldquo;our,&rdquo; or &ldquo;us&rdquo;). By accessing or using the Site, you agree
to be bound by these Terms. If you do not agree, do not use the Site.
</p>
</div>
<div className={styles.legalSection}>
<h2>1. Use of the Site</h2>
<p>You agree to use the Site only for lawful purposes. You must not:</p>
<ul>
<li>Use the Site in any way that violates applicable local, national, or international laws or regulations</li>
<li>Attempt to gain unauthorized access to any part of the Site or its infrastructure</li>
<li>Transmit any unsolicited or unauthorized advertising or promotional material</li>
<li>Scrape, copy, or harvest Site content in bulk without prior written permission</li>
<li>Impersonate Bone Lord Bob, Mathison Projects Inc., or any of their personnel</li>
</ul>
</div>
<div className={styles.legalSection}>
<h2>2. Intellectual Property</h2>
<p>
All content on this Site including but not limited to artwork, characters, logos,
animation, text, names, and branding is the exclusive intellectual property of
Mathison Projects Inc. and/or its creative collaborators, and is protected by
copyright, trademark, and other applicable intellectual property laws.
</p>
<p>
<strong>Bone Lord Bob</strong>, all character names, and all associated artwork
are original creations. All rights reserved.
</p>
<p>
You may not reproduce, distribute, modify, publicly display, or create derivative
works from any Site content without our prior written consent.
</p>
</div>
<div className={styles.legalSection}>
<h2>3. User-Generated Content</h2>
<p>
This Site does not currently accept user submissions. Fan art, fan fiction, and other
community content shared on third-party platforms (social media, forums) remain the
property of their creators, but by tagging or associating such content with Bone Lord
Bob, you grant us a non-exclusive, royalty-free right to reshare or reference that
content for promotional purposes, with credit given where possible.
</p>
</div>
<div className={styles.legalSection}>
<h2>4. Third-Party Links</h2>
<p>
The Site contains links to third-party platforms (YouTube, X, Instagram, Facebook,
TikTok, Patreon, and others). These links are provided for convenience. We are not
responsible for the content, privacy practices, or terms of those platforms. Their
use is governed by their own terms and policies.
</p>
</div>
<div className={styles.legalSection}>
<h2>5. Disclaimers</h2>
<p>
THE SITE AND ITS CONTENT ARE PROVIDED &ldquo;AS IS&rdquo; WITHOUT WARRANTIES OF ANY KIND,
EXPRESS OR IMPLIED. WE DO NOT WARRANT THAT THE SITE WILL BE UNINTERRUPTED, ERROR-FREE,
OR FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS.
</p>
<p>
Bone Lord Bob content is intended for mature audiences. The series depicts dark
fantasy themes including violence and death. Viewer discretion is advised.
</p>
</div>
<div className={styles.legalSection}>
<h2>6. Limitation of Liability</h2>
<p>
TO THE FULLEST EXTENT PERMITTED BY LAW, MATHISON PROJECTS INC. SHALL NOT BE LIABLE
FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES ARISING
FROM YOUR USE OF OR INABILITY TO USE THE SITE OR ITS CONTENT.
</p>
</div>
<div className={styles.legalSection}>
<h2>7. Governing Law</h2>
<p>
These Terms shall be governed by and construed in accordance with the laws of the
State of Nebraska, United States of America, without regard to its conflict of law
principles. Any disputes shall be resolved in the courts of Omaha, Nebraska.
</p>
</div>
<div className={styles.legalSection}>
<h2>8. Changes to These Terms</h2>
<p>
We reserve the right to modify these Terms at any time. Changes will be reflected by
updating the &ldquo;Last updated&rdquo; date above. Your continued use of the Site after
any changes constitutes acceptance of the revised Terms.
</p>
</div>
<div className={styles.legalSection}>
<h2>9. Contact Us</h2>
<p>
Mathison Projects Inc.<br />
Omaha, Nebraska, USA<br />
Email:{" "}
<a href="mailto:hello@bonelordbob.com">hello@bonelordbob.com</a>
</p>
</div>
</main>
<footer className={styles.footer}>
<span className={styles.footerLogo}>Bone Lord <span>Bob</span></span>
<div className={styles.footerLinks}>
<Link href="/privacy">Privacy Policy</Link>
<Link href="/terms">Terms &amp; Conditions</Link>
</div>
<span className={styles.footerNote}>
© {new Date().getFullYear()} Mathison Projects Inc. All rights reserved.
</span>
</footer>
</div>
</>
);
}