mirror of
https://github.com/rustdesk/doc.rustdesk.com.git
synced 2026-04-04 23:06:27 +00:00
fix zh and add more to compatible with v2
This commit is contained in:
23
v3/src/pages/careers.astro
Normal file
23
v3/src/pages/careers.astro
Normal file
@@ -0,0 +1,23 @@
|
||||
---
|
||||
import Hero from '~/components/widgets/Hero.astro';
|
||||
import Layout from '~/layouts/PageLayout.astro';
|
||||
|
||||
const metadata = {
|
||||
title: 'Careers',
|
||||
};
|
||||
---
|
||||
|
||||
<Layout metadata={metadata}>
|
||||
<!-- Hero Widget ******************* -->
|
||||
|
||||
<Hero tagline="Careers">
|
||||
<Fragment slot="title"> Current Job Openings </Fragment>
|
||||
|
||||
<Fragment slot="subtitle">
|
||||
We are not currently hiring, but please check back later.
|
||||
<p class="text-slate-500">
|
||||
Meanwhile, feel free to contribute to our open-source repository and collaborate with us there!
|
||||
</p>
|
||||
</Fragment>
|
||||
</Hero>
|
||||
</Layout>
|
||||
38
v3/src/pages/open-source.astro
Normal file
38
v3/src/pages/open-source.astro
Normal file
@@ -0,0 +1,38 @@
|
||||
---
|
||||
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>
|
||||
@@ -3,7 +3,7 @@ import Layout from '~/layouts/PageLayout.astro';
|
||||
import Features2 from '~/components/widgets/Features2.astro';
|
||||
|
||||
const metadata = {
|
||||
title: 'Contact',
|
||||
title: 'Support',
|
||||
};
|
||||
---
|
||||
|
||||
|
||||
Reference in New Issue
Block a user