forked from emre/www_projectmycelium_com
refactor: convert "Deploy in Cloud" buttons to external links across home and network pages
- Changed all "Deploy in Cloud" buttons from internal /cloud routes to external myceliumcloud.tf links - Updated Button components to use as="a" with target="_blank" and rel="noopener noreferrer" - Removed arrow character from some button labels for consistency - Applied changes to CallToAction, HomeAurora, HomeHero, and HomeNew components
This commit is contained in:
@@ -57,9 +57,12 @@ export function CallToAction() {
|
|||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
to="/cloud"
|
as="a"
|
||||||
|
to="https://myceliumcloud.tf"
|
||||||
variant="outline"
|
variant="outline"
|
||||||
color="white"
|
color="white"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
>
|
>
|
||||||
Deploy in Cloud
|
Deploy in Cloud
|
||||||
</Button>
|
</Button>
|
||||||
|
|||||||
@@ -30,8 +30,14 @@ export function HomeAurora() {
|
|||||||
>
|
>
|
||||||
Start Hosting
|
Start Hosting
|
||||||
</Button>
|
</Button>
|
||||||
<Button to="/cloud" variant="outline">
|
<Button
|
||||||
Deploy in Cloud →
|
as="a"
|
||||||
|
to="https://myceliumcloud.tf"
|
||||||
|
variant="outline"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
>
|
||||||
|
Deploy in Cloud
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -19,7 +19,14 @@ export function HomeHero() {
|
|||||||
Start Hosting
|
Start Hosting
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
<Button href="#" variant="outline" color="white">
|
<Button
|
||||||
|
as="a"
|
||||||
|
to="https://myceliumcloud.tf"
|
||||||
|
variant="outline"
|
||||||
|
color="white"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
>
|
||||||
Deploy in Cloud <span aria-hidden="true">→</span>
|
Deploy in Cloud <span aria-hidden="true">→</span>
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -39,8 +39,14 @@ export function HomeAurora({ onGetStartedClick }: { onGetStartedClick: () => voi
|
|||||||
>
|
>
|
||||||
Start Hosting
|
Start Hosting
|
||||||
</Button>
|
</Button>
|
||||||
<Button to="#" variant="outline">
|
<Button
|
||||||
Deploy in Cloud →
|
as="a"
|
||||||
|
to="https://myceliumcloud.tf"
|
||||||
|
variant="outline"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
>
|
||||||
|
Deploy in Cloud
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -56,9 +56,12 @@ Use the network to link environments, deploy workloads, or host nodes to strengt
|
|||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
to="/cloud"
|
as="a"
|
||||||
|
to="https://myceliumcloud.tf"
|
||||||
variant="outline"
|
variant="outline"
|
||||||
color="white"
|
color="white"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
>
|
>
|
||||||
Deploy in Cloud
|
Deploy in Cloud
|
||||||
</Button>
|
</Button>
|
||||||
|
|||||||
Reference in New Issue
Block a user