docs: homepage styling

This commit is contained in:
Arthur Fiorette 2025-04-30 15:28:53 -03:00
parent 01b8e657e8
commit 40517bf35a
No known key found for this signature in database
GPG Key ID: 79FA8EC214FA0233
2 changed files with 17 additions and 39 deletions

View File

@ -72,7 +72,7 @@
.dark {
--vp-c-brand-1: hsl(44, 69%, 64%);
--vp-c-brand-2: hsl(35, 67%, 47%);
--vp-c-brand-2: rgb(200, 133, 40);
--vp-c-brand-3: hsl(43, 66%, 49%);
--vp-c-brand-soft: hsla(54, 30%, 35%, 0.161);
}
@ -99,9 +99,9 @@
:root {
--vp-home-hero-name-color: transparent;
--vp-home-hero-name-background: -webkit-linear-gradient(120deg, #e5582a, #f7ee8d);
--vp-home-hero-name-background: -webkit-linear-gradient(120deg, #e5582a 30%, #e3c164);
--vp-home-hero-image-background-image: -webkit-linear-gradient(45deg, #e52a2a, #c5e52a);
--vp-home-hero-image-background-image: linear-gradient(32deg, #e52a2a 37%, #d0a73e 5%);
--vp-home-hero-image-filter: blur(44px);
}

View File

@ -58,41 +58,19 @@ features:
---
<script setup>
import {
VPTeamPage,
VPTeamPageTitle,
VPTeamMembers
} from 'vitepress/theme'
const members = [
{
avatar: 'https://github.com/arthurfiorette.png',
name: 'Arthur Fiorette',
title: 'Creator',
links: [
{ icon: 'github', link: 'https://github.com/arthurfiorette' },
{ icon: 'twitter', link: 'https://twitter.com/arthurfiorette' },
{ icon: 'instagram', link: 'https://instagram.com/arthurfiorette' }
]
},
]
import { VPTeamPageTitle } from 'vitepress/theme'
</script>
<VPTeamPage>
<VPTeamPageTitle>
<template #title>
Our Team
</template>
<template #lead>
Composed of a diverse group of people from all over the world through our open source community.
</template>
</VPTeamPageTitle>
<VPTeamMembers
:members="members"
/>
<div class="contributors">
<a href="https://github.com/arthurfiorette/axios-cache-interceptor/graphs/contributors">
<img src="https://contrib.rocks/image?repo=arthurfiorette/axios-cache-interceptor" />
</a>
</div>
</VPTeamPage>
<VPTeamPageTitle>
<template #title>
Our Team
</template>
<template #lead>
Composed of a diverse group of people from all over the world through our open source community.
</template>
</VPTeamPageTitle>
<div class="contributors">
<a href="https://github.com/arthurfiorette/axios-cache-interceptor/graphs/contributors">
<img src="https://contrib.rocks/image?repo=arthurfiorette/axios-cache-interceptor" />
</a>
</div>