feat: Add banner to announce Lysand 3.0

This commit is contained in:
Jesse Wierzbinski 2024-05-01 18:21:10 -10:00
parent 94e5ac67f7
commit 2039582edd
No known key found for this signature in database
7 changed files with 39 additions and 2 deletions

View 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>

View file

@ -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),

View file

@ -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,
};