2026-04-08 12:23:24 -05:00
import { Html , Head , Main , NextScript } from "next/document" ;
export default function Document() {
return (
< Html lang = "en" >
2026-04-09 08:25:42 -05:00
< Head >
2026-04-09 08:58:38 -05:00
< meta charSet = "utf-8" / >
2026-04-11 08:43:19 -05:00
{ /* 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" / >
2026-04-09 08:58:38 -05:00
{ /* Open Graph */ }
2026-04-11 08:43:19 -05:00
< meta property = "og:site_name" content = "Bone Lord Bob" / >
2026-04-09 08:58:38 -05:00
< meta property = "og:title" content = "Bone Lord Bob — American Anime" / >
2026-04-11 08:43:19 -05:00
< 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/" / >
2026-04-09 08:58:38 -05:00
< meta property = "og:type" content = "website" / >
2026-04-11 08:43:19 -05:00
< meta property = "og:locale" content = "en_US" / >
{ /* Twitter / X Card */ }
2026-04-09 08:58:38 -05:00
< meta name = "twitter:card" content = "summary_large_image" / >
< meta name = "twitter:site" content = "@bonelordbob" / >
2026-04-11 08:43:19 -05:00
< meta name = "twitter:creator" content = "@bonelordbob" / >
2026-04-09 08:58:38 -05:00
< meta name = "twitter:title" content = "Bone Lord Bob — American Anime" / >
< meta name = "twitter:description" content = "American Anime. Dark. Brutal. Beautiful." / >
2026-04-11 08:43:19 -05:00
< 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" / >
2026-04-09 09:19:11 -05:00
< link rel = "apple-touch-icon" href = "/apple-touch-icon.png" / >
2026-04-11 08:43:19 -05:00
< link rel = "manifest" href = "/manifest.json" / >
{ /* Canonical */ }
< link rel = "canonical" href = "https://www.bonelordbob.com/" / >
2026-04-09 08:25:42 -05:00
{ /* 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());
2026-04-11 08:43:19 -05:00
// 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 });
}
2026-04-09 08:25:42 -05:00
` ,
} }
/ >
< / Head >
2026-04-08 12:23:24 -05:00
< body >
< Main / >
< NextScript / >
< / body >
< / Html >
) ;
}