feat: socials grid, cookie consent (GDPR/CCPA/PIPEDA), privacy & terms pages, enhanced SEO meta tags

- 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
This commit is contained in:
2026-04-11 08:43:19 -05:00
parent e616b6efe5
commit f44909eca9
7 changed files with 1022 additions and 45 deletions
+34 -8
View File
@@ -5,21 +5,43 @@ export default function Document() {
<Html lang="en">
<Head>
<meta charSet="utf-8" />
<meta name="description" content="Bone Lord Bob is an American Anime project — dark, brutal, beautiful. Coming soon." />
{/* 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." />
<meta property="og:image" content="https://bonelordbob.com/og-image.png" />
<meta property="og:url" content="https://bonelordbob.com/" />
<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" />
{/* Twitter Card */}
<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://bonelordbob.com/og-image.png" />
<link rel="icon" href="/favicon.ico" />
<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
@@ -28,7 +50,11 @@ export default function Document() {
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-6EJVCK4931');
// 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 });
}
`,
}}
/>