index.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <style lang="scss" scoped>
  2. @import "~/assets/styles/_colors.scss";
  3. div.home {
  4. color: $textColor;
  5. .columns {
  6. .column {
  7. &.centered {
  8. display: flex;
  9. align-items: center;
  10. }
  11. }
  12. }
  13. h4 {
  14. color: $textColorHighlight;
  15. margin-bottom: 1em;
  16. }
  17. p {
  18. font-size: 1.25em;
  19. font-weight: 600;
  20. line-height: 1.5;
  21. strong {
  22. color: $textColorHighlight;
  23. }
  24. }
  25. div.background {
  26. position: fixed;
  27. top: 0;
  28. left: 0;
  29. background: no-repeat scroll 50% 50%;
  30. background-size: cover;
  31. background-image: url('~assets/images/background.jpg');
  32. z-index: -1;
  33. height: 100vh;
  34. width: 100%;
  35. pointer-events: none;
  36. }
  37. }
  38. </style>
  39. <template>
  40. <div class="home">
  41. <section class="hero is-fullheight has-text-centered">
  42. <div class="background" />
  43. <Navbar :isWhite="true" />
  44. <div class="hero-body">
  45. <div class="container">
  46. <div class="columns">
  47. <div class="column is-3 is-offset-2">
  48. <div class="logo">
  49. <Logo />
  50. </div>
  51. </div>
  52. <div class="column is-5 centered">
  53. <div class="content-wrapper">
  54. <h4>Blazing fast file uploader. For real.</h4>
  55. <p>
  56. A <strong>modern</strong> and <strong>self-hosted</strong> file upload service that can handle anything you throw at it. Fast uploads, file manager and sharing capabilities all crafted with a beautiful user experience in mind.
  57. </p>
  58. </div>
  59. </div>
  60. </div>
  61. <div class="spacer mt7" />
  62. <Uploader v-if="(config.publicMode) || (!config.publicMode && loggedIn)" />
  63. <div v-else>
  64. This site has disabled public uploads. You need an account.
  65. </div>
  66. </div>
  67. </div>
  68. <div class="hero-foot">
  69. <div class="container">
  70. <Links />
  71. </div>
  72. </div>
  73. </section>
  74. </div>
  75. </template>
  76. <script>
  77. import Navbar from '~/components/navbar/Navbar.vue';
  78. import Logo from '~/components/logo/Logo.vue';
  79. import Uploader from '~/components/uploader/Uploader.vue';
  80. import Links from '~/components/home/links/Links.vue';
  81. export default {
  82. name: 'Home',
  83. components: {
  84. Navbar,
  85. Logo,
  86. Uploader,
  87. Links
  88. },
  89. data() {
  90. return { albums: [] };
  91. },
  92. computed: {
  93. loggedIn() {
  94. return this.$store.state.loggedIn;
  95. },
  96. config() {
  97. return this.$store.state.config;
  98. }
  99. },
  100. mounted() {
  101. this.$ga.page({
  102. page: '/',
  103. title: 'Home',
  104. location: window.location.href
  105. });
  106. }
  107. };
  108. </script>