@voidzero-dev/vitepress-theme 0.0.16 → 0.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_virtual/_/plugin-vue/export-helper.js +11 -0
- package/dist/assets/cta-background-CgYtVhnO.jpg +1 -0
- package/dist/assets/cta-background.jpg +1 -0
- package/dist/{style.css → index.css} +7 -7
- package/dist/index.d.ts +2 -0
- package/dist/index.js +3 -6544
- package/dist/vitepress/assets/cta-background.js +5 -0
- package/dist/vitepress/components/Eyebrow.js +18 -0
- package/dist/vitepress/components/Footer.js +72 -0
- package/dist/vitepress/components/Header.js +34 -0
- package/dist/vitepress/components/RiveAnimation.js +117 -0
- package/dist/vitepress/components/Terminal.js +161 -0
- package/dist/vitepress/components/icons/VZIconBluesky.js +21 -0
- package/dist/vitepress/components/icons/VZIconGitHub.js +21 -0
- package/dist/vitepress/components/icons/VZIconLogo.js +24 -0
- package/dist/vitepress/components/icons/VZIconTwitter.js +21 -0
- package/dist/vitepress/components/terminal-animations/TerminalAnimation1.js +37 -0
- package/dist/vitepress/components/terminal-animations/TerminalAnimation2.js +44 -0
- package/dist/vitepress/components/terminal-animations/TerminalAnimation3.js +37 -0
- package/dist/vitepress/components/terminal-animations/TerminalAnimation4.js +37 -0
- package/dist/vitepress/components/terminal-animations/TerminalAnimation5.js +37 -0
- package/dist/vitepress/components/terminal-animations/TerminalAnimation6.js +37 -0
- package/dist/vitepress/index.d.ts +34 -0
- package/dist/vitepress/index.js +21 -0
- package/package.json +13 -16
- package/dist/assets/terminal-background.jpg +0 -0
- package/dist/components/Eyebrow.vue +0 -11
- package/dist/components/Footer.vue +0 -44
- package/dist/components/Header.vue +0 -38
- package/dist/components/RiveAnimation.vue +0 -144
- package/dist/components/Terminal.vue +0 -165
- package/dist/components/terminal-animations/TerminalAnimation1.vue +0 -54
- package/dist/components/terminal-animations/TerminalAnimation2.vue +0 -59
- package/dist/components/terminal-animations/TerminalAnimation3.vue +0 -46
- package/dist/components/terminal-animations/TerminalAnimation4.vue +0 -50
- package/dist/components/terminal-animations/TerminalAnimation5.vue +0 -51
- package/dist/components/terminal-animations/TerminalAnimation6.vue +0 -55
- package/dist/composables/useTypewriter.ts +0 -43
- package/dist/index.js.map +0 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
//#region \0/plugin-vue/export-helper
|
|
2
|
+
var export_helper_default = (sfc, props) => {
|
|
3
|
+
const target = sfc.__vccOpts || sfc;
|
|
4
|
+
for (const [key, val] of props) {
|
|
5
|
+
target[key] = val;
|
|
6
|
+
}
|
|
7
|
+
return target;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
//#endregion
|
|
11
|
+
export { export_helper_default as default };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
PLACEHOLDER - Replace with actual cta-background.jpg from viteplus.dev repository
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
PLACEHOLDER - Replace with actual cta-background.jpg from viteplus.dev repository
|
|
@@ -13,31 +13,31 @@
|
|
|
13
13
|
@font-face {
|
|
14
14
|
font-family: 'APK Protocol';
|
|
15
15
|
font-weight: 500;
|
|
16
|
-
src: url('
|
|
16
|
+
src: url('fonts/APK-Protocol-Medium.woff2') format('woff2');
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
@font-face {
|
|
20
20
|
font-family: 'KH Teka';
|
|
21
21
|
font-weight: 400;
|
|
22
|
-
src: url('
|
|
22
|
+
src: url('fonts/KHTeka-Regular.woff2') format('woff2');
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
@font-face {
|
|
26
26
|
font-family: 'KH Teka';
|
|
27
27
|
font-weight: 500;
|
|
28
|
-
src: url('
|
|
28
|
+
src: url('fonts/KHTeka-Medium.woff2') format('woff2');
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
@font-face {
|
|
32
32
|
font-family: 'KH Teka Mono';
|
|
33
33
|
font-weight: 400;
|
|
34
|
-
src: url('
|
|
34
|
+
src: url('fonts/KHTekaMono-Regular.woff2') format('woff2');
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
@font-face {
|
|
38
38
|
font-family: 'KH Teka Mono';
|
|
39
39
|
font-weight: 500;
|
|
40
|
-
src: url('
|
|
40
|
+
src: url('fonts/KHTekaMono-Medium.woff2') format('woff2');
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
@custom-variant dark (&:where([data-theme=dark], [data-theme=dark] *));
|
|
@@ -178,7 +178,7 @@
|
|
|
178
178
|
right: -3px;
|
|
179
179
|
bottom: -3px;
|
|
180
180
|
background-color: #CCCCCC;
|
|
181
|
-
background-image: url('
|
|
181
|
+
background-image: url('assets/primary-button-background.jpg');
|
|
182
182
|
background-size: 150% 150%;
|
|
183
183
|
background-position: center;
|
|
184
184
|
border-radius: calc(0.5rem + 3px);
|
|
@@ -273,7 +273,7 @@
|
|
|
273
273
|
transform: translateY(-50%);
|
|
274
274
|
width: 20px;
|
|
275
275
|
height: 20px;
|
|
276
|
-
background-image: url('
|
|
276
|
+
background-image: url('assets/checkmark.svg');
|
|
277
277
|
background-size: contain;
|
|
278
278
|
background-repeat: no-repeat;
|
|
279
279
|
background-position: center;
|
package/dist/index.d.ts
ADDED