mirror of
https://github.com/rustdesk/doc.rustdesk.com.git
synced 2025-07-01 15:26:49 +00:00
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
---
|
|
import Layout from '~/layouts/PageLayout.astro';
|
|
import Features2 from '~/components/widgets/Features2.astro';
|
|
|
|
const metadata = {
|
|
title: 'Support',
|
|
};
|
|
---
|
|
|
|
<Layout metadata={metadata} i18n>
|
|
<Features2
|
|
title="We are here to help!"
|
|
items={[
|
|
{
|
|
title: 'Issues',
|
|
description: `Found a bug? We'd love to hear about it in our GitHub issues.`,
|
|
},
|
|
{
|
|
title: 'Community Support',
|
|
description: 'Join our Discord server to browse for help and best practices.',
|
|
},
|
|
{
|
|
title: 'Ticket for Pro User',
|
|
description: 'Email us if you encounter any issues while using RustDesk Server Pro.',
|
|
},
|
|
{
|
|
title: 'GitHub',
|
|
description: '<a target="_blank" href="https://github.com/rustdesk/rustdesk/issues">Open an issue</a>',
|
|
icon: 'tabler:brand-github',
|
|
},
|
|
{
|
|
title: 'Discord',
|
|
description: '<a target="_blank" href="https://discord.com/invite/nDceKgxnkV">Join our server</a>',
|
|
icon: 'tabler:brand-discord',
|
|
},
|
|
{
|
|
title: 'Email',
|
|
description: '<a href="mailto:support@rustdesk.com">support@rustdesk.com</a>',
|
|
icon: 'tabler:mail',
|
|
},
|
|
]}
|
|
/>
|
|
</Layout>
|