-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
6 changed files
with
343 additions
and
6 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<template> | ||
<div> | ||
<h2 class="page__heading"> | ||
{{ t('firstrunwizard', 'More about Nextcloud') }} | ||
</h2> | ||
<div class="page__wrapper"> | ||
<Card href="https://www.nextcloud.com" | ||
:title="t('firstrunwizard', 'Explore more apps ↗')" | ||
:subtitle="t('firstrunwizard', 'Extend the functionality of Nextcloud with hundreds of community-developed apps.')" /> | ||
<Card href="https://www.nextcloud.com" | ||
:title="t('firstrunwizard', 'Get involved! ↗')" | ||
:subtitle="t('firstrunwizard', 'Be a part of the community that helps build, design, translate and promote Nextcloud!')" /> | ||
<Card href="https://www.nextcloud.com" | ||
:title="t('firstrunwizard', 'Need help? ↗')" | ||
:subtitle="t('firstrunwizard', 'Find out more about your Nextcloud setup with the admin, user or developer documentation.')" /> | ||
<Card href="https://www.nextcloud.com" | ||
:title="t('firstrunwizard', 'For large organisations ↗')" | ||
:subtitle="t('firstrunwizard', 'Get Nextcloud Enterprise for mission critical environments where advanced security and compliance are important.')" /> | ||
</div> | ||
<NcButton type="primary" | ||
alignment="center-reverse" | ||
:wide="true" | ||
@click="$emit('close')"> | ||
<template #icon> | ||
<ArrowRight :size="20" /> | ||
</template> | ||
{{ t('firstrunwizard', 'Get started!') }} | ||
</NcButton> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import Card from './Card.vue' | ||
import AppStoreBadge from './AppStoreBadge.vue' | ||
import ArrowRight from 'vue-material-design-icons/ArrowRight.vue' | ||
import { NcButton } from '@nextcloud/vue' | ||
export default { | ||
name: 'Page2', | ||
components: { | ||
NcButton, | ||
ArrowRight, | ||
Card, | ||
AppStoreBadge, | ||
}, | ||
} | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
@import "pageStyles"; | ||
</style> |