This repository was archived by the owner on Mar 11, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ <template >
2+ <div style =" display : flex ; justify-content : center ; align-items : center ; margin-top : 16px ; gap : 12px ;" >
3+ <span style =" font-size : 13px ; color : #666 ; font-style : italic ;;" >Deployed on</span >
4+ <a href =" https://www.rainyun.com/NjY3OTQ1_" ><img src =" https://www.rainyun.com/img/logo.d193755d.png" width =" 50" alt =" Rainyun Logo" ></a >
5+
6+ </div >
7+ </template >
Original file line number Diff line number Diff line change 1+ <template >
2+ <div style =" background-color : #F6F6F7 ; padding : 24px ; border-radius : 8px ; font-size : 11px ; display : flex ; justify-content : center ; align-items : center ; flex-direction : column ; gap : 8px ;" >
3+ <a href =" https://www.rainyun.com/NjY3OTQ1_" ><img width =" 80" src =" https://www.rainyun.com/img/logo.d193755d.png" ></a >
4+ <span >本站由<a href =" https://www.rainyun.com/NjY3OTQ1_" >雨云</a >提供云计算服务</span >
5+ </div >
6+ </template >
Original file line number Diff line number Diff line change 22import { h } from 'vue'
33import DefaultTheme from 'vitepress/theme'
44import './style.css'
5+ import Sponsors from './Sponsors.vue'
6+ import HomeFeaturesAfter from './HomeFeaturesAfter.vue'
57
68/** @type {import('vitepress').Theme } */
79export default {
810 extends : DefaultTheme ,
911 Layout : ( ) => {
1012 return h ( DefaultTheme . Layout , null , {
1113 // https://vitepress.dev/guide/extending-default-theme#layout-slots
14+ "aside-ads-after" : ( ) => h ( Sponsors ) ,
15+ "home-features-after" : ( ) => h ( HomeFeaturesAfter ) ,
1216 } )
1317 } ,
1418 enhanceApp ( { app, router, siteData } ) {
You can’t perform that action at this time.
0 commit comments