-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththank-you.html
82 lines (70 loc) · 4.32 KB
/
thank-you.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!--
Copyright (c) 2024-present, Prime Nevada
All rights reserved.
This source code is licensed under the BSD 4-Clause license found in the
LICENSE.md file in the root directory of this source tree.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#000000">
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="manifest" href="manifest.json">
<!-- Performance Optimizations -->
<meta http-equiv="x-dns-prefetch-control" content="on">
<link rel="dns-prefetch" href="https://fonts.googleapis.com">
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
<!-- Resource Hints -->
<link rel="preload" href="styles/main.css" as="style" crossorigin="anonymous">
<link rel="preload" href="components/navigation/navigation.js" as="script" crossorigin="anonymous">
<link rel="preload" href="components/footer/footer.js" as="script" crossorigin="anonymous">
<link rel="preload" href="js/main.js" as="script" crossorigin="anonymous">
<!-- SEO Meta Tags -->
<title>Thank You | Prime Nevada</title>
<meta name="description" content="Thank you for reaching out to Prime Nevada. We value your connection and look forward to exploring opportunities together.">
<meta name="robots" content="noindex, follow"> <!-- Don't index thank you page -->
<meta name="author" content="Prime Nevada">
<link rel="canonical" href="https://primenevada.com/thank-you">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://primenevada.com/thank-you">
<meta property="og:title" content="Thank You - Prime Nevada">
<meta property="og:description" content="Thank you for reaching out. We value your connection and look forward to exploring opportunities together.">
<meta property="og:image" content="images/thank-you-hero.jpg">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://primenevada.com/thank-you">
<meta name="twitter:title" content="Thank You - Prime Nevada">
<meta name="twitter:description" content="Thank you for reaching out. We value your connection and look forward to exploring opportunities together.">
<meta name="twitter:image" content="images/thank-you-hero.jpg">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=League+Spartan:wght@500;600;700&family=Playfair+Display:wght@500;600;700&display=swap&display=swap" rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="styles/main.css" media="print" onload="this.media='all'" crossorigin="anonymous">
<noscript><link rel="stylesheet" href="styles/main.css" crossorigin="anonymous"></noscript>
<!-- Components -->
<script type="module" src="components/navigation/navigation.js" defer></script>
<script type="module" src="components/footer/footer.js" defer></script>
<script type="module" src="js/main.js" defer></script>
</head>
<body>
<header>
<prime-navigation></prime-navigation>
</header>
<main>
<a href="#main-content" class="skip-link">Skip to main content</a>
<section class="hero" aria-labelledby="hero-title">
<img src="images/thank-you-hero.jpg" alt="Aerial view of Las Vegas skyline at sunset" class="hero-background" loading="eager" decoding="async">
<div class="hero-content">
<h1 id="hero-title">We’ve Received Your Inquiry—Let’s Build Something Great</h1>
<p>Thank you for reaching out to Prime Nevada. Your inquiry is important to us, and we will review it shortly. Whether you’re selling a business or looking to invest, we’re excited to explore opportunities with you.</p>
</div>
</section>
</main>
<prime-footer></prime-footer>
</body>
</html>