Initalize

This commit is contained in:
Your Name
2026-05-03 12:12:57 -04:00
commit 38652eb9b5
10603 changed files with 1762136 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<template>
<button type="button" class="VPNavBarAskAiButton">
<span class="vpi-sparkles" aria-hidden="true"></span>
</button>
</template>
<style scoped>
.VPNavBarAskAiButton {
display: flex;
align-items: center;
height: var(--vp-nav-height);
padding: 8px 14px;
font-size: 20px;
}
@media (min-width: 768px) {
.VPNavBarAskAiButton {
height: auto;
padding: 11.5px;
transition: color 0.3s ease;
background-color: var(--vp-c-bg-alt);
border-radius: 8px;
font-size: 15px;
color: var(--vp-c-text-2);
}
.VPNavBarAskAiButton:hover {
color: var(--vp-c-brand-1);
}
}
</style>