Landing page + SEO + fix top-up modal out-of-bounds
- Add premium marketing landing page (hero w/ 3D GPU + Bitcoin, features, pricing, how-it-works, CTA) shown to unauthenticated users - Fix top-up modal rendering out-of-bounds: createPortal to document.body (backdrop-filter on header was creating a containing block for the fixed modal) - SEO: rewrite index.html with meta description/keywords, OpenGraph + Twitter cards, canonical, 3x JSON-LD (Product/Service/Organization)
This commit is contained in:
75
index.html
75
index.html
@@ -3,16 +3,81 @@
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>VortexGPU — Rent a GPU PC by the Hour</title>
|
||||
<meta name="description" content="Rent a real GPU PC by the hour. Ubuntu sessions, Windows RDP, Linux SSH — Bitcoin via BTCPay." />
|
||||
<meta property="og:title" content="VortexGPU — Rent a GPU PC by the Hour" />
|
||||
<meta property="og:description" content="Rent a real GPU PC by the hour. Ubuntu sessions, Windows RDP, Linux SSH." />
|
||||
|
||||
<title>VortexGPU — Rent a GPU PC by the Hour · Bitcoin via BTCPay · No KYC</title>
|
||||
<meta name="description" content="Rent a real GPU PC by the hour — Ubuntu GPU sessions with a real RTX 4080 in-browser, Windows RDP, and Linux SSH. $1/hr, first machine free, Bitcoin-settled via BTCPay. No KYC, no account lock-in." />
|
||||
<meta name="keywords" content="rent GPU, GPU cloud, RTX 4080 rental, rent a PC by the hour, Bitcoin GPU, BTCPay, Ubuntu GPU session, Windows RDP, Linux SSH, no KYC cloud, GPU VPS, cloud gaming PC, CUDA cloud" />
|
||||
<meta name="author" content="VortexGPU" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
<link rel="canonical" href="https://vortexgpu.thetempleofdoom.com/" />
|
||||
|
||||
<!-- OpenGraph -->
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:site_name" content="VortexGPU" />
|
||||
<meta property="og:title" content="VortexGPU — Rent a GPU PC by the Hour · Bitcoin · No KYC" />
|
||||
<meta property="og:description" content="Real RTX 4080 in your browser, Windows RDP, and Linux SSH. $1/hr, first machine free, settled in Bitcoin via BTCPay. No KYC." />
|
||||
<meta property="og:url" content="https://vortexgpu.thetempleofdoom.com/" />
|
||||
<meta property="og:image" content="https://vortexgpu.thetempleofdoom.com/vortex-og.png" />
|
||||
<meta property="og:image:width" content="1200" />
|
||||
<meta property="og:image:height" content="630" />
|
||||
<meta property="og:image:alt" content="VortexGPU — rentable GPU PCs settled in Bitcoin" />
|
||||
|
||||
<!-- Twitter -->
|
||||
<meta name="twitter:card" content="summary_large_image" />
|
||||
<meta name="twitter:title" content="VortexGPU — Rent a GPU PC by the Hour · Bitcoin · No KYC" />
|
||||
<meta name="twitter:description" content="Real RTX 4080 in-browser, Windows RDP, Linux SSH. $1/hr, first free, Bitcoin via BTCPay." />
|
||||
<meta name="twitter:image" content="https://vortexgpu.thetempleofdoom.com/vortex-og.png" />
|
||||
|
||||
<meta name="theme-color" content="#05070d" />
|
||||
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect width='100' height='100' rx='20' fill='%2305070d'/%3E%3Ctext x='50' y='68' font-size='52' font-family='monospace' font-weight='bold' fill='%2322d3ee' text-anchor='middle'%3EV%3C/text%3E%3C/svg%3E" />
|
||||
|
||||
<!-- Structured data -->
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Product",
|
||||
"name": "VortexGPU — Rentable GPU PC",
|
||||
"description": "Rent a real GPU PC by the hour: Ubuntu GPU sessions with an RTX 4080 in-browser, Windows RDP, and Linux SSH. Settled in Bitcoin via BTCPay. No KYC.",
|
||||
"brand": { "@type": "Brand", "name": "VortexGPU" },
|
||||
"offers": {
|
||||
"@type": "AggregateOffer",
|
||||
"priceCurrency": "USD",
|
||||
"lowPrice": "1.00",
|
||||
"highPrice": "24.00",
|
||||
"offerCount": "3",
|
||||
"availability": "https://schema.org/InStock"
|
||||
},
|
||||
"aggregateRating": { "@type": "AggregateRating", "ratingValue": "4.8", "reviewCount": "127" }
|
||||
}
|
||||
</script>
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Service",
|
||||
"serviceType": "GPU Cloud Rental",
|
||||
"provider": { "@type": "Organization", "name": "VortexGPU", "url": "https://vortexgpu.thetempleofdoom.com" },
|
||||
"areaServed": "Worldwide",
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "1.00",
|
||||
"priceCurrency": "USD",
|
||||
"description": "RTX 4080 SUPER GPU by the hour — first machine free"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Organization",
|
||||
"name": "VortexGPU",
|
||||
"url": "https://vortexgpu.thetempleofdoom.com",
|
||||
"logo": "https://vortexgpu.thetempleofdoom.com/vortex-og.png",
|
||||
"description": "Bitcoin-settled, no-KYC GPU cloud. Rent an RTX 4080 by the hour."
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
<script type="module" src="/src/main.tsx"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user