feat: social links, cookie banner, privacy policy, terms pages, meta keywords
This commit is contained in:
+297
-128
@@ -1,160 +1,329 @@
|
||||
import Head from "next/head";
|
||||
import Link from "next/link";
|
||||
import styles from "@/styles/Home.module.css";
|
||||
import React from "react";
|
||||
|
||||
const UPDATED = "April 11, 2025";
|
||||
const s = {
|
||||
page: {
|
||||
minHeight: "100vh",
|
||||
background: "#0a0806",
|
||||
color: "#e8dcc8",
|
||||
fontFamily: "'Segoe UI', system-ui, -apple-system, sans-serif",
|
||||
lineHeight: 1.7 as const,
|
||||
} as React.CSSProperties,
|
||||
nav: {
|
||||
display: "flex",
|
||||
alignItems: "center",
|
||||
justifyContent: "space-between",
|
||||
padding: "20px 32px",
|
||||
borderBottom: "1px solid rgba(232,220,200,0.1)",
|
||||
} as React.CSSProperties,
|
||||
logo: {
|
||||
fontFamily: "'Georgia', 'Times New Roman', serif",
|
||||
fontSize: "1.2rem",
|
||||
fontWeight: 700,
|
||||
letterSpacing: "0.04em",
|
||||
textDecoration: "none",
|
||||
color: "#e8dcc8",
|
||||
} as React.CSSProperties,
|
||||
logoSpan: { color: "#c0392b" } as React.CSSProperties,
|
||||
backLink: {
|
||||
fontSize: "0.88rem",
|
||||
color: "#9e9080",
|
||||
textDecoration: "none",
|
||||
display: "inline-flex",
|
||||
alignItems: "center",
|
||||
gap: "4px",
|
||||
} as React.CSSProperties,
|
||||
main: {
|
||||
maxWidth: "780px",
|
||||
margin: "0 auto",
|
||||
padding: "56px 32px 80px",
|
||||
} as React.CSSProperties,
|
||||
eyebrow: {
|
||||
display: "block",
|
||||
fontSize: "0.78rem",
|
||||
fontWeight: 700,
|
||||
letterSpacing: "0.14em",
|
||||
textTransform: "uppercase" as const,
|
||||
color: "#c0392b",
|
||||
marginBottom: "12px",
|
||||
} as React.CSSProperties,
|
||||
h1: {
|
||||
fontFamily: "'Georgia', 'Times New Roman', serif",
|
||||
fontSize: "clamp(2rem, 5vw, 2.8rem)",
|
||||
fontWeight: 700,
|
||||
color: "#e8dcc8",
|
||||
marginBottom: "8px",
|
||||
lineHeight: 1.2,
|
||||
} as React.CSSProperties,
|
||||
updated: {
|
||||
fontSize: "0.85rem",
|
||||
color: "#9e9080",
|
||||
marginBottom: "48px",
|
||||
paddingBottom: "32px",
|
||||
borderBottom: "1px solid rgba(232,220,200,0.1)",
|
||||
} as React.CSSProperties,
|
||||
h2: {
|
||||
fontFamily: "'Georgia', 'Times New Roman', serif",
|
||||
fontSize: "1.35rem",
|
||||
fontWeight: 700,
|
||||
color: "#e8dcc8",
|
||||
marginTop: "40px",
|
||||
marginBottom: "12px",
|
||||
} as React.CSSProperties,
|
||||
p: {
|
||||
fontSize: "0.95rem",
|
||||
color: "#c8bfae",
|
||||
marginBottom: "14px",
|
||||
} as React.CSSProperties,
|
||||
ul: {
|
||||
paddingLeft: "20px",
|
||||
marginBottom: "14px",
|
||||
} as React.CSSProperties,
|
||||
li: {
|
||||
fontSize: "0.95rem",
|
||||
color: "#c8bfae",
|
||||
marginBottom: "6px",
|
||||
} as React.CSSProperties,
|
||||
a: {
|
||||
color: "#c0392b",
|
||||
textDecoration: "underline",
|
||||
} as React.CSSProperties,
|
||||
footer: {
|
||||
borderTop: "1px solid rgba(232,220,200,0.1)",
|
||||
padding: "28px 32px",
|
||||
textAlign: "center" as const,
|
||||
fontSize: "0.82rem",
|
||||
color: "#9e9080",
|
||||
} as React.CSSProperties,
|
||||
};
|
||||
|
||||
export default function Terms() {
|
||||
return (
|
||||
<>
|
||||
<Head>
|
||||
<title>Terms & Conditions | Bone Lord Bob</title>
|
||||
<title>Terms & 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."
|
||||
content="Terms and Conditions for Bone Lord Bob — your rights and responsibilities when using this site."
|
||||
/>
|
||||
<meta
|
||||
name="keywords"
|
||||
content="Bone Lord Bob, terms and conditions, terms of use, legal, American Anime"
|
||||
/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link rel="icon" href="/favicon.ico" sizes="any" />
|
||||
<meta
|
||||
property="og:title"
|
||||
content="Terms & Conditions — Bone Lord Bob"
|
||||
/>
|
||||
<meta
|
||||
property="og:description"
|
||||
content="Terms and Conditions for Bone Lord Bob."
|
||||
/>
|
||||
<meta property="og:type" content="website" />
|
||||
<meta
|
||||
property="og:url"
|
||||
content="https://www.bonelordbob.com/terms"
|
||||
/>
|
||||
<meta property="og:image" content="/og-image.png" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@BoneLordBob" />
|
||||
<meta
|
||||
name="twitter:title"
|
||||
content="Terms & Conditions — Bone Lord Bob"
|
||||
/>
|
||||
<meta name="keywords" content="Bone Lord Bob terms and conditions, terms of service, legal, usage policy" />
|
||||
<meta property="og:title" content="Terms & 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>
|
||||
<div style={s.page}>
|
||||
{/* Nav */}
|
||||
<nav style={s.nav}>
|
||||
<Link href="/" style={s.logo}>
|
||||
Bone Lord <span style={s.logoSpan}>Bob</span>
|
||||
</Link>
|
||||
<Link href="/" style={s.backLink}>
|
||||
← Back to Home
|
||||
</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 & Conditions</h1>
|
||||
<span className={styles.legalUpdated}>Last updated: {UPDATED}</span>
|
||||
{/* Content */}
|
||||
<main style={s.main}>
|
||||
<span style={s.eyebrow}>Legal</span>
|
||||
<h1 style={s.h1}>Terms & Conditions</h1>
|
||||
<p style={s.updated}>Last updated: April 2026</p>
|
||||
|
||||
<div className={styles.legalSection}>
|
||||
<p>
|
||||
These Terms and Conditions (“Terms”) govern your use of{" "}
|
||||
<strong>www.bonelordbob.com</strong> (the “Site”), operated by Mathison Projects
|
||||
Inc. (“we,” “our,” or “us”). 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>
|
||||
<p style={s.p}>
|
||||
Please read these Terms & Conditions ("Terms")
|
||||
carefully before using <strong>www.bonelordbob.com</strong> (the
|
||||
"Site"), operated by Mathison Projects Inc.
|
||||
("we", "us", "our"). By accessing or
|
||||
using the Site, you agree to be bound by these Terms.
|
||||
</p>
|
||||
|
||||
<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>
|
||||
<h2 style={s.h2}>1. Acceptance of Terms</h2>
|
||||
<p style={s.p}>
|
||||
By accessing this Site, you confirm that you are at least 13 years
|
||||
of age (or the minimum legal age in your jurisdiction) and agree to
|
||||
these Terms. If you do not agree, please do not use the Site.
|
||||
</p>
|
||||
<p style={s.p}>
|
||||
We reserve the right to update these Terms at any time. Changes
|
||||
will be effective upon posting to this page with a revised
|
||||
"Last updated" date. Continued use of the Site after
|
||||
changes constitutes acceptance of the new Terms.
|
||||
</p>
|
||||
|
||||
<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>
|
||||
<h2 style={s.h2}>2. Intellectual Property</h2>
|
||||
<p style={s.p}>
|
||||
All content on this Site — including but not limited to text,
|
||||
artwork, logos, character designs, animations, names, slogans, and
|
||||
the "Bone Lord Bob" brand — is the exclusive property of{" "}
|
||||
<strong>Mathison Projects Inc.</strong> and is protected by United
|
||||
States and international copyright, trademark, and other
|
||||
intellectual property laws.
|
||||
</p>
|
||||
<p style={s.p}>
|
||||
© {new Date().getFullYear()} Mathison Projects Inc. All rights
|
||||
reserved.
|
||||
</p>
|
||||
<p style={s.p}>
|
||||
You may not reproduce, distribute, modify, create derivative works
|
||||
from, publicly display, or commercially exploit any content from
|
||||
this Site without our prior written permission.
|
||||
</p>
|
||||
|
||||
<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>
|
||||
<h2 style={s.h2}>3. Permitted Use</h2>
|
||||
<p style={s.p}>
|
||||
You may access and view the Site for personal, non-commercial
|
||||
purposes. You may share links to the Site on social media or other
|
||||
platforms, provided you do not misrepresent the content or the
|
||||
Bone Lord Bob brand.
|
||||
</p>
|
||||
<p style={s.p}>
|
||||
You may not:
|
||||
</p>
|
||||
<ul style={s.ul}>
|
||||
<li style={s.li}>
|
||||
Use the Site for any unlawful purpose or in violation of any
|
||||
applicable laws or regulations
|
||||
</li>
|
||||
<li style={s.li}>
|
||||
Scrape, data-mine, or systematically extract content from the
|
||||
Site without permission
|
||||
</li>
|
||||
<li style={s.li}>
|
||||
Attempt to gain unauthorized access to any part of the Site or
|
||||
its related systems
|
||||
</li>
|
||||
<li style={s.li}>
|
||||
Impersonate Bone Lord Bob, Mathison Projects Inc., or any of
|
||||
their representatives
|
||||
</li>
|
||||
<li style={s.li}>
|
||||
Use our trademarks or brand assets without written authorization
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<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>
|
||||
<h2 style={s.h2}>4. User Conduct</h2>
|
||||
<p style={s.p}>
|
||||
When interacting with us via email or social media, you agree not
|
||||
to send harassing, abusive, defamatory, obscene, or threatening
|
||||
content. We reserve the right to block users who violate this policy.
|
||||
</p>
|
||||
|
||||
<div className={styles.legalSection}>
|
||||
<h2>5. Disclaimers</h2>
|
||||
<p>
|
||||
THE SITE AND ITS CONTENT ARE PROVIDED “AS IS” 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>
|
||||
<h2 style={s.h2}>5. Third-Party Links</h2>
|
||||
<p style={s.p}>
|
||||
The Site contains links to third-party platforms (YouTube,
|
||||
Instagram, X, Facebook, Patreon, TikTok). These links are provided
|
||||
for convenience. We have no control over the content or practices
|
||||
of these platforms and are not responsible for their content,
|
||||
privacy policies, or terms of service.
|
||||
</p>
|
||||
|
||||
<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>
|
||||
<h2 style={s.h2}>6. Disclaimers</h2>
|
||||
<p style={s.p}>
|
||||
THE SITE AND ALL CONTENT ARE PROVIDED "AS IS" AND
|
||||
"AS AVAILABLE" WITHOUT WARRANTIES OF ANY KIND, EXPRESS
|
||||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
|
||||
NON-INFRINGEMENT.
|
||||
</p>
|
||||
<p style={s.p}>
|
||||
We do not warrant that the Site will be uninterrupted, error-free,
|
||||
or free of viruses or other harmful components. We may modify,
|
||||
suspend, or discontinue the Site at any time without notice.
|
||||
</p>
|
||||
|
||||
<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>
|
||||
<h2 style={s.h2}>7. Limitation of Liability</h2>
|
||||
<p style={s.p}>
|
||||
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, MATHISON
|
||||
PROJECTS INC. AND ITS OFFICERS, DIRECTORS, EMPLOYEES, AND AGENTS
|
||||
SHALL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
|
||||
CONSEQUENTIAL, OR PUNITIVE DAMAGES ARISING FROM YOUR USE OF (OR
|
||||
INABILITY TO USE) THE SITE, EVEN IF WE HAVE BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
</p>
|
||||
<p style={s.p}>
|
||||
OUR TOTAL LIABILITY TO YOU FOR ANY CLAIM ARISING FROM THESE TERMS
|
||||
OR YOUR USE OF THE SITE SHALL NOT EXCEED $100 USD.
|
||||
</p>
|
||||
|
||||
<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 “Last updated” date above. Your continued use of the Site after
|
||||
any changes constitutes acceptance of the revised Terms.
|
||||
</p>
|
||||
</div>
|
||||
<h2 style={s.h2}>8. Governing Law</h2>
|
||||
<p style={s.p}>
|
||||
These Terms are governed by and construed in accordance with the
|
||||
laws of the State of <strong>Nebraska, United States of America</strong>,
|
||||
without regard to its conflict of law principles. Any disputes
|
||||
arising from these Terms or your use of the Site shall be resolved
|
||||
exclusively in the courts located in Douglas County, Nebraska.
|
||||
</p>
|
||||
|
||||
<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>
|
||||
<h2 style={s.h2}>9. Severability</h2>
|
||||
<p style={s.p}>
|
||||
If any provision of these Terms is found to be unenforceable or
|
||||
invalid, that provision will be limited or eliminated to the
|
||||
minimum extent necessary, and the remaining provisions will continue
|
||||
in full force and effect.
|
||||
</p>
|
||||
|
||||
<h2 style={s.h2}>10. Contact</h2>
|
||||
<p style={s.p}>
|
||||
For questions about these Terms, contact:
|
||||
</p>
|
||||
<p style={s.p}>
|
||||
<strong>Mathison Projects Inc.</strong>
|
||||
<br />
|
||||
Email:{" "}
|
||||
<a href="mailto:hello@bonelordbob.com" style={s.a}>
|
||||
hello@bonelordbob.com
|
||||
</a>
|
||||
<br />
|
||||
Website:{" "}
|
||||
<a
|
||||
href="https://www.bonelordbob.com"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
style={s.a}
|
||||
>
|
||||
www.bonelordbob.com
|
||||
</a>
|
||||
</p>
|
||||
</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 & Conditions</Link>
|
||||
<footer style={s.footer}>
|
||||
<div>
|
||||
© {new Date().getFullYear()} Mathison Projects Inc. All rights
|
||||
reserved. | {" "}
|
||||
<Link href="/" style={{ color: "#9e9080", textDecoration: "none" }}>
|
||||
Home
|
||||
</Link>{" "}
|
||||
| {" "}
|
||||
<Link
|
||||
href="/privacy"
|
||||
style={{ color: "#9e9080", textDecoration: "none" }}
|
||||
>
|
||||
Privacy Policy
|
||||
</Link>
|
||||
</div>
|
||||
<span className={styles.footerNote}>
|
||||
© {new Date().getFullYear()} Mathison Projects Inc. All rights reserved.
|
||||
</span>
|
||||
</footer>
|
||||
</div>
|
||||
</>
|
||||
|
||||
Reference in New Issue
Block a user