Skip to content

Commit edfee8f

Browse files
committed
fix(website): Atmosphere nav links home, restore email for Get a Quote
1 parent 8d290f3 commit edfee8f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

website/src/components/Header.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
const navLinks = [
3-
{ href: '#atmosphere', label: 'Atmosphere' },
3+
{ href: '/', label: 'Atmosphere' },
44
{ href: '#support', label: 'Support' },
55
{ href: '/contact/', label: 'Contact' },
66
{ href: 'https://github.com/Atmosphere/atmosphere', label: 'GitHub', external: true },

website/src/components/Support.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ const plans = [
103103
</ul>
104104

105105
<a
106-
href="/contact/"
106+
href={`mailto:${plan.email_address}?subject=Quote%20for%20${plan.name}%20Subscription`}
107107
class={`plan-cta ${plan.highlight ? 'plan-cta-highlight' : ''}`}
108108
>
109109
Get a Quote
@@ -125,7 +125,7 @@ const plans = [
125125
</p>
126126
</div>
127127
<a
128-
href="/contact/"
128+
href="mailto:support@async-io.org?subject=Legacy%20Atmosphere%20Support%20Inquiry"
129129
class="legacy-cta"
130130
>
131131
Contact Us
@@ -135,7 +135,7 @@ const plans = [
135135
<div class="support-footer">
136136
<p>
137137
Need professional services on a per-hour basis?
138-
<a href="/contact/">Contact us</a> for a custom quote.
138+
<a href="mailto:support@async-io.org?subject=Professional%20Services%20Inquiry">Contact us</a> for a custom quote.
139139
</p>
140140
</div>
141141
</div>

0 commit comments

Comments
 (0)