mirror of
https://github.com/versia-pub/docs.git
synced 2026-03-13 02:49:16 +01:00
feat: ✨ Add banner to announce Lysand 3.0
This commit is contained in:
parent
94e5ac67f7
commit
2039582edd
7 changed files with 39 additions and 2 deletions
13
.vitepress/theme/Layout.vue
Normal file
13
.vitepress/theme/Layout.vue
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<script setup>
|
||||
import DefaultTheme from 'vitepress/theme'
|
||||
import Banner from '../../components/Banner.vue';
|
||||
import "iconify-icon";
|
||||
|
||||
const { Layout } = DefaultTheme
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Banner />
|
||||
<Layout>
|
||||
</Layout>
|
||||
</template>
|
||||
|
|
@ -12,6 +12,7 @@
|
|||
--vp-home-hero-image-filter: brightness(0.8) saturate(1.2); */
|
||||
--vp-home-hero-name-color: rgb(249, 168, 212);
|
||||
--vp-c-brand-1: rgb(249, 168, 212);
|
||||
--vp-layout-top-height: var(--spacing-10);
|
||||
--lysand-gradient: linear-gradient(
|
||||
to right,
|
||||
rgb(249, 168, 212),
|
||||
|
|
|
|||
|
|
@ -1,4 +1,8 @@
|
|||
import DefaultTheme from "vitepress/theme";
|
||||
import Layout from "./Layout.vue";
|
||||
import "./custom.css";
|
||||
|
||||
export default DefaultTheme;
|
||||
export default {
|
||||
extends: DefaultTheme,
|
||||
Layout,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue