mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
124 lines
3.0 KiB
Vue
124 lines
3.0 KiB
Vue
<template>
|
|
<header class="main-header page-wrapper medium">
|
|
<PageTitle
|
|
:title="index.header_title"
|
|
:description="index.header_description"
|
|
></PageTitle>
|
|
|
|
<router-link class="sign-up-button" :to="{name: 'SignUp'}">
|
|
<AuthButton class="button" icon="chevron-right" :text="$t('page_index.sign_up_button')" />
|
|
</router-link>
|
|
|
|
<div class="features">
|
|
<div class="feature">
|
|
<credit-card-icon size="19" class="feature-icon"></credit-card-icon>
|
|
<b class="feature-title">{{ $t('page_index.sign_feature_1') }}</b>
|
|
</div>
|
|
<div class="feature">
|
|
<hard-drive-icon size="19" class="feature-icon"></hard-drive-icon>
|
|
<b class="feature-title">{{ $t('page_index.sign_feature_2', {defaultSpace: config.storageDefaultSpace}) }}</b>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
</template>
|
|
|
|
<script>
|
|
import HardDriveIcon from "vue-feather-icons/icons/HardDriveIcon";
|
|
import PageTitle from '@/components/Index/Components/PageTitle'
|
|
import AuthButton from '@/components/Auth/AuthButton'
|
|
import { CreditCardIcon } from 'vue-feather-icons'
|
|
import { mapGetters } from 'vuex'
|
|
|
|
export default {
|
|
name: 'IndexPageHeader',
|
|
components: {
|
|
PageTitle,
|
|
CreditCardIcon,
|
|
HardDriveIcon,
|
|
AuthButton,
|
|
},
|
|
computed: {
|
|
...mapGetters(['index', 'config']),
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '@assets/vue-file-manager/_landing-page';
|
|
@import '@assets/vue-file-manager/_variables';
|
|
@import '@assets/vue-file-manager/_mixins';
|
|
|
|
.features {
|
|
display: flex;
|
|
margin-top: 35px;
|
|
|
|
.feature {
|
|
display: flex;
|
|
margin-right: 35px;
|
|
|
|
&:nth-child(1) {
|
|
path, line, polyline, rect, circle {
|
|
stroke: $yellow;
|
|
}
|
|
}
|
|
|
|
&:nth-child(2) {
|
|
path, line, polyline, rect, circle {
|
|
stroke: $purple;
|
|
}
|
|
}
|
|
|
|
&:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.feature-title {
|
|
@include font-size(14);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.feature-icon {
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.main-header {
|
|
padding-top: 70px;
|
|
}
|
|
|
|
.sign-up-button {
|
|
margin-top: 65px;
|
|
display: block;
|
|
|
|
.button {
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 690px) {
|
|
|
|
.main-header {
|
|
padding-top: 50px;
|
|
}
|
|
|
|
.features {
|
|
display: block;
|
|
|
|
.feature {
|
|
margin-right: 0;
|
|
margin-bottom: 15px;
|
|
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.sign-up-button {
|
|
margin-top: 30px;
|
|
}
|
|
}
|
|
</style>
|