mirror of
https://github.com/rustdesk/doc.rustdesk.com.git
synced 2026-04-05 23:36:22 +00:00
19 lines
343 B
Plaintext
19 lines
343 B
Plaintext
---
|
|
import Hero from '~/components/widgets/Hero.astro';
|
|
import Layout from '~/layouts/PageLayout.astro';
|
|
|
|
const metadata = {
|
|
title: 'Success',
|
|
};
|
|
---
|
|
|
|
<Layout metadata={metadata}>
|
|
<!-- Hero Widget ******************* -->
|
|
|
|
<Hero tagline="">
|
|
<Fragment slot="title"> You have cancelled the payment!
|
|
</Fragment>
|
|
</Hero>
|
|
|
|
</Layout>
|