f44909eca9
- index.tsx: full socials section (YouTube, X, Instagram, Facebook, TikTok, Patreon) - index.tsx: enhanced meta description + keywords - _document.tsx: global meta keywords, proper OG image dimensions, twitter:creator - _app.tsx: cookie consent component mounted globally - CookieConsent.tsx: GDPR/CCPA/PIPEDA compliant banner with accept/decline + localStorage + GA disable - pages/privacy.tsx: full Privacy Policy (GDPR, CCPA/CPRA, PIPEDA sections) - pages/terms.tsx: Terms & Conditions (IP, governing law NE, disclaimers) - Home.module.css: socialGrid/socialBtn styles, footerLinks, legal page styles - footer: Privacy Policy + Terms links on all pages
69 lines
3.3 KiB
TypeScript
69 lines
3.3 KiB
TypeScript
import { Html, Head, Main, NextScript } from "next/document";
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html lang="en">
|
|
<Head>
|
|
<meta charSet="utf-8" />
|
|
{/* Primary SEO */}
|
|
<meta name="description" content="Bone Lord Bob is an American Anime project — dark, brutal, beautiful. An original animated series unlike anything you've seen before." />
|
|
<meta name="keywords" content="Bone Lord Bob, American Anime, indie animation, dark fantasy anime, animated series, original anime, BLB, dark fantasy, indie anime, anime art, American animation, bone lord" />
|
|
<meta name="author" content="Mathison Projects Inc." />
|
|
<meta name="robots" content="index, follow" />
|
|
<meta name="theme-color" content="#0a0806" />
|
|
|
|
{/* Open Graph */}
|
|
<meta property="og:site_name" content="Bone Lord Bob" />
|
|
<meta property="og:title" content="Bone Lord Bob — American Anime" />
|
|
<meta property="og:description" content="American Anime. Dark. Brutal. Beautiful. An original animated series unlike anything you've seen before." />
|
|
<meta property="og:image" content="https://www.bonelordbob.com/og-image.png" />
|
|
<meta property="og:image:width" content="1536" />
|
|
<meta property="og:image:height" content="1024" />
|
|
<meta property="og:image:alt" content="Bone Lord Bob — American Anime" />
|
|
<meta property="og:url" content="https://www.bonelordbob.com/" />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:locale" content="en_US" />
|
|
|
|
{/* Twitter / X Card */}
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:site" content="@bonelordbob" />
|
|
<meta name="twitter:creator" content="@bonelordbob" />
|
|
<meta name="twitter:title" content="Bone Lord Bob — American Anime" />
|
|
<meta name="twitter:description" content="American Anime. Dark. Brutal. Beautiful." />
|
|
<meta name="twitter:image" content="https://www.bonelordbob.com/og-image.png" />
|
|
<meta name="twitter:image:alt" content="Bone Lord Bob — American Anime" />
|
|
|
|
{/* Icons */}
|
|
<link rel="icon" href="/favicon.ico" sizes="any" />
|
|
<link rel="icon" href="/icon-192.png" type="image/png" sizes="192x192" />
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
|
<link rel="manifest" href="/manifest.json" />
|
|
|
|
{/* Canonical */}
|
|
<link rel="canonical" href="https://www.bonelordbob.com/" />
|
|
|
|
{/* Google Analytics GA4 — G-6EJVCK4931 */}
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-6EJVCK4931" />
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
// Respect declined cookie consent
|
|
var consent = typeof localStorage !== 'undefined' ? localStorage.getItem('blb_cookie_consent') : null;
|
|
if (consent !== 'declined') {
|
|
gtag('config', 'G-6EJVCK4931', { anonymize_ip: true });
|
|
}
|
|
`,
|
|
}}
|
|
/>
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
);
|
|
}
|