mirror of
https://github.com/rustdesk/doc.rustdesk.com.git
synced 2026-04-04 23:06:27 +00:00
39 lines
995 B
Plaintext
39 lines
995 B
Plaintext
---
|
|
import Hero from '~/components/widgets/Hero.astro';
|
|
import Layout from '~/layouts/PageLayout.astro';
|
|
|
|
const metadata = {
|
|
title: 'Open Source',
|
|
};
|
|
---
|
|
|
|
<Layout metadata={metadata}>
|
|
<!-- Hero Widget ******************* -->
|
|
|
|
<Hero
|
|
tagline="We love Open-Source"
|
|
actions={[
|
|
{
|
|
text: 'Find Open Issues',
|
|
href: 'https://github.com/rustdesk/rustdesk/issues',
|
|
icon: 'tabler:brand-github',
|
|
target: '_blank',
|
|
},
|
|
{
|
|
text: 'Follow on GitHub',
|
|
href: 'https://github.com/rustdesk/rustdesk',
|
|
icon: 'tabler:brand-github',
|
|
variant: 'primary',
|
|
target: '_blank',
|
|
},
|
|
]}
|
|
>
|
|
<Fragment slot="title"> RustDesk is built by the open-source community </Fragment>
|
|
|
|
<Fragment slot="subtitle">
|
|
Be inspired and inspire others by joining our community of maintainers and contributors. Together, let's make
|
|
RustDesk better for people all around the world.
|
|
</Fragment>
|
|
</Hero>
|
|
</Layout>
|