mirror of
https://github.com/rustdesk/doc.rustdesk.com.git
synced 2026-04-02 22:06:04 +00:00
26 lines
733 B
Plaintext
26 lines
733 B
Plaintext
---
|
|
import Hero from '~/components/widgets/Hero.astro';
|
|
import Layout from '~/layouts/PageLayout.astro';
|
|
|
|
const metadata = {
|
|
title: 'Payment Cancelled - RustDesk License Purchase',
|
|
description: 'Your RustDesk license payment was cancelled. You can still try our free open-source version or return to complete your purchase anytime.',
|
|
keywords: 'rustdesk payment cancelled, rustdesk purchase cancelled, remote desktop license, self-hosted payment',
|
|
author: 'RustDesk Team',
|
|
robots: {
|
|
index: false,
|
|
follow: false,
|
|
},
|
|
};
|
|
---
|
|
|
|
<Layout metadata={metadata}>
|
|
<!-- Hero Widget ******************* -->
|
|
|
|
<Hero tagline="">
|
|
<Fragment slot="title"> You have cancelled the payment!
|
|
</Fragment>
|
|
</Hero>
|
|
|
|
</Layout>
|