lotr-sut/sut/frontend/public/index.html
Fellowship Scholar f6a5823439 init commit
2026-03-29 20:07:56 +00:00

65 lines
3.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="The Fellowship Quest Tracker - Track your journey through Middle-earth. Create, manage, and complete quests in a LOTR-themed web application with bargaining, mini-games, and NPC companions." />
<meta name="keywords" content="Middle-earth, quests, tracking, fellowship, Lord of the Rings, adventure, interactive" />
<meta name="author" content="TestingFantasy Team" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Fellowship Quest Tracker - Middle-earth Adventure" />
<meta property="og:description" content="Track your epic journey through Middle-earth. Create quests, bargain with NPCs, play mini-games, and manage your inventory." />
<meta property="og:url" content="https://lotr-prod.testingfantasy.com/" id="og-url" />
<meta property="og:site_name" content="Fellowship Quest Tracker" />
<meta property="og:image" content="https://lotr-prod.testingfantasy.com/og-image.png" id="og-image" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Fellowship Quest Tracker" />
<meta name="twitter:description" content="Track your journey through Middle-earth with quests, bargaining, and adventures." />
<meta name="twitter:image" content="https://lotr-prod.testingfantasy.com/og-image.png" id="twitter-image" />
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
<link rel="canonical" href="https://lotr-prod.testingfantasy.com/" id="canonical" />
<link rel="alternate" hreflang="en" href="https://lotr-prod.testingfantasy.com/" id="hreflang" />
<title>Fellowship Quest Tracker - Track Your Middle-earth Adventure</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-29N4KD7MQ9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-29N4KD7MQ9');
// Set dynamic URLs based on current origin for environment-aware deployment
(function() {
const origin = window.location.origin;
const siteUrl = origin.endsWith('/') ? origin.slice(0, -1) : origin;
// Update canonical link
const canonical = document.getElementById('canonical');
if (canonical) canonical.href = siteUrl + '/';
// Update hreflang link
const hreflang = document.getElementById('hreflang');
if (hreflang) hreflang.href = siteUrl + '/';
// Update OG tags
const ogUrl = document.getElementById('og-url');
if (ogUrl) ogUrl.content = siteUrl + '/';
const ogImage = document.getElementById('og-image');
if (ogImage) ogImage.content = siteUrl + '/og-image.png';
const twitterImage = document.getElementById('twitter-image');
if (twitterImage) twitterImage.content = siteUrl + '/og-image.png';
})();
</script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>