123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- <script setup lang="ts">
- import { computed } from 'vue'
- import { useData, withBase } from 'vitepress'
- import NavLink from './NavLink.vue'
- const { site, frontmatter } = useData()
- const showHero = computed(() => {
- const { heroImage, heroText, tagline, actionLink, actionText } =
- frontmatter.value
- return heroImage || heroText || tagline || (actionLink && actionText)
- })
- const heroText = computed(() => frontmatter.value.heroText || site.value.title)
- const tagline = computed(
- () => frontmatter.value.tagline || site.value.description
- )
- </script>
- <template>
- <header v-if="showHero" class="home-hero">
- <figure v-if="frontmatter.heroImage" class="figure">
- <img
- class="image"
- :src="withBase(frontmatter.heroImage)"
- :alt="frontmatter.heroAlt"
- />
- </figure>
- <h1 v-if="heroText" id="main-title" class="title">{{ heroText }}</h1>
- <p v-if="tagline" class="tagline">{{ tagline }}</p>
- <NavLink
- v-if="frontmatter.actionLink && frontmatter.actionText"
- :item="{ link: frontmatter.actionLink, text: frontmatter.actionText }"
- class="action"
- />
- <NavLink
- v-if="frontmatter.altActionLink && frontmatter.altActionText"
- :item="{
- link: frontmatter.altActionLink,
- text: frontmatter.altActionText
- }"
- class="action alt"
- />
- </header>
- </template>
- <style scoped>
- .home-hero {
- margin: 2.5rem 0 2.75rem;
- padding: 0 1.5rem;
- text-align: center;
- }
- @media (min-width: 420px) {
- .home-hero {
- margin: 3.5rem 0;
- }
- }
- @media (min-width: 720px) {
- .home-hero {
- margin: 4rem 0 4.25rem;
- }
- }
- .figure {
- padding: 0 1.5rem;
- }
- .image {
- display: block;
- margin: 0 auto;
- width: auto;
- max-width: 100%;
- max-height: 280px;
- }
- .title {
- margin-top: 1.5rem;
- font-size: 2rem;
- }
- @media (min-width: 420px) {
- .title {
- font-size: 3rem;
- }
- }
- @media (min-width: 720px) {
- .title {
- margin-top: 2rem;
- }
- }
- .tagline {
- margin: 0;
- margin-top: 0.25rem;
- line-height: 1.3;
- font-size: 1.2rem;
- color: var(--c-text-light);
- }
- @media (min-width: 420px) {
- .tagline {
- line-height: 1.2;
- font-size: 1.6rem;
- }
- }
- .action {
- margin-top: 1.5rem;
- display: inline-block;
- }
- .action.alt {
- margin-left: 1.5rem;
- }
- @media (min-width: 420px) {
- .action {
- margin-top: 2rem;
- display: inline-block;
- }
- }
- .action :deep(.item) {
- display: inline-block;
- border-radius: 6px;
- padding: 0 20px;
- line-height: 44px;
- font-size: 1rem;
- font-weight: 500;
- color: var(--c-bg);
- background-color: var(--c-brand);
- border: 2px solid var(--c-brand);
- transition: background-color 0.1s ease;
- }
- .action.alt :deep(.item) {
- background-color: var(--c-bg);
- color: var(--c-brand);
- }
- .action :deep(.item:hover) {
- text-decoration: none;
- color: var(--c-bg);
- background-color: var(--c-brand-light);
- }
- @media (min-width: 420px) {
- .action :deep(.item) {
- padding: 0 24px;
- line-height: 52px;
- font-size: 1.2rem;
- font-weight: 500;
- }
- }
- </style>
|