|
| 1 | +<script setup lang="ts"> |
| 2 | +import Navigation from './Navigation.vue' |
| 3 | +import Hero from './Hero.vue' |
| 4 | +import Sponsor from './Sponsor.vue' |
| 5 | +import Project from './Project.vue' |
| 6 | +import Info from './Info.vue' |
| 7 | +</script> |
| 8 | + |
| 9 | +<template> |
| 10 | + <div class="antialiased"> |
| 11 | + <header class="h-auto layouts"> |
| 12 | + <Navigation /> |
| 13 | + </header> |
| 14 | + |
| 15 | + <!-- eslint-disable-next-line prettier/prettier --> |
| 16 | + <main |
| 17 | + class="contents" |
| 18 | + aria-labelledby="main-title" |
| 19 | + > |
| 20 | + <section class="hero layouts"> |
| 21 | + <Hero /> |
| 22 | + </section> |
| 23 | + |
| 24 | + <section class="about layouts"> |
| 25 | + <div class="inner"> |
| 26 | + <p> |
| 27 | + Intlify is a project that aims to improve Developer Experience in |
| 28 | + software internationalization.We aim to improve the Developer |
| 29 | + Experience of internationalization by providing libraries, |
| 30 | + frameworks, and tools that break down barriers to |
| 31 | + internationalization. |
| 32 | + </p> |
| 33 | + <p> |
| 34 | + We will also aim to improve the localization experience by providing |
| 35 | + software that is easy to localize. |
| 36 | + </p> |
| 37 | + </div> |
| 38 | + </section> |
| 39 | + |
| 40 | + <section class="sponsors layouts"> |
| 41 | + <div class="inner"> |
| 42 | + <h2>Sponsors</h2> |
| 43 | + <!-- eslint-disable-next-line prettier/prettier --> |
| 44 | + <Sponsor |
| 45 | + :banners="$site.customData.sponsors.gold" |
| 46 | + tier="gold" |
| 47 | + /> |
| 48 | + <!-- eslint-disable-next-line prettier/prettier --> |
| 49 | + <Sponsor |
| 50 | + :banners="$site.customData.sponsors.sliver" |
| 51 | + tier="silver" |
| 52 | + /> |
| 53 | + <!-- eslint-disable-next-line prettier/prettier --> |
| 54 | + <Sponsor |
| 55 | + :banners="$site.customData.sponsors.bronze" |
| 56 | + tier="bronze" |
| 57 | + /> |
| 58 | + <a |
| 59 | + class="button white" |
| 60 | + href="https://github.com/sponsors/kazupon?o=esc" |
| 61 | + > |
| 62 | + Become a Sponsor |
| 63 | + </a> |
| 64 | + </div> |
| 65 | + </section> |
| 66 | + |
| 67 | + <section class="projects layouts"> |
| 68 | + <div class="inner"> |
| 69 | + <h2>Projects</h2> |
| 70 | + <Project :banners="$site.customData.projects" /> |
| 71 | + <!-- eslint-disable-next-line prettier/prettier --> |
| 72 | + <a |
| 73 | + class="button white" |
| 74 | + href="https://github.com/intlify" |
| 75 | + > |
| 76 | + See more Projects |
| 77 | + </a> |
| 78 | + </div> |
| 79 | + </section> |
| 80 | + </main> |
| 81 | + |
| 82 | + <footer class="footer"> |
| 83 | + <Info /> |
| 84 | + </footer> |
| 85 | + |
| 86 | + <Debug /> |
| 87 | + </div> |
| 88 | +</template> |
| 89 | + |
| 90 | +<style scoped> |
| 91 | +.layouts { |
| 92 | + @apply px-6 sm:px-6 xl:px-6; |
| 93 | +} |
| 94 | +
|
| 95 | +.contents { |
| 96 | + @apply h-auto; |
| 97 | +} |
| 98 | +
|
| 99 | +.hero { |
| 100 | + @apply pt-6; |
| 101 | +} |
| 102 | +
|
| 103 | +.about { |
| 104 | + @apply py-8; |
| 105 | +} |
| 106 | +
|
| 107 | +.about p { |
| 108 | + @apply py-2; |
| 109 | +} |
| 110 | +
|
| 111 | +.sponsors { |
| 112 | + background-color: #f6f6f6; |
| 113 | + @apply text-center py-14; |
| 114 | +} |
| 115 | +
|
| 116 | +.projects { |
| 117 | + @apply text-center py-14; |
| 118 | +} |
| 119 | +
|
| 120 | +.about .inner, |
| 121 | +.sponsors .inner, |
| 122 | +.projects .inner { |
| 123 | + @apply mx-auto max-w-screen-md; |
| 124 | +} |
| 125 | +
|
| 126 | +.sponsors h2, |
| 127 | +.projects h2 { |
| 128 | + @apply text-2xl mb-6; |
| 129 | +} |
| 130 | +
|
| 131 | +.sponsors a.button, |
| 132 | +.projects a.button { |
| 133 | + @apply mx-4 mt-14 w-52; |
| 134 | +} |
| 135 | +
|
| 136 | +.footer { |
| 137 | + @apply h-auto layouts bg-gray-700; |
| 138 | +} |
| 139 | +</style> |
0 commit comments