@voidzero-dev/vitepress-theme 0.0.17 → 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} +14 -11
- 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 +14 -22
- package/assets/checkmark.svg +0 -1
- package/assets/primary-button-background.jpg +0 -0
- package/assets/terminal-background.jpg +0 -0
- package/components/Eyebrow.vue +0 -11
- package/components/Footer.vue +0 -44
- package/components/Header.vue +0 -38
- package/components/RiveAnimation.vue +0 -144
- package/components/Terminal.vue +0 -165
- package/components/terminal-animations/TerminalAnimation1.vue +0 -54
- package/components/terminal-animations/TerminalAnimation2.vue +0 -59
- package/components/terminal-animations/TerminalAnimation3.vue +0 -46
- package/components/terminal-animations/TerminalAnimation4.vue +0 -50
- package/components/terminal-animations/TerminalAnimation5.vue +0 -51
- package/components/terminal-animations/TerminalAnimation6.vue +0 -55
- package/composables/useTypewriter.ts +0 -43
- package/dist/assets/terminal-background.jpg +0 -0
- package/dist/index.js.map +0 -1
- package/fonts/APK-Protocol-Medium.woff2 +0 -0
- package/fonts/KHTeka-Medium.woff2 +0 -0
- package/fonts/KHTeka-Regular.woff2 +0 -0
- package/fonts/KHTekaMono-Medium.woff2 +0 -0
- package/fonts/KHTekaMono-Regular.woff2 +0 -0
- package/style.css +0 -343
|
@@ -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
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Shared theme styles
|
|
3
3
|
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
* @import "tailwindcss" source(".") source("../../node_modules/@voidzero-dev/vitepress-theme/components");
|
|
4
|
+
* NOTE: This file does NOT import Tailwind itself.
|
|
5
|
+
* The consuming project must import Tailwind first, then this file.
|
|
7
6
|
*/
|
|
8
7
|
|
|
9
8
|
@plugin "@tailwindcss/typography";
|
|
@@ -14,31 +13,31 @@
|
|
|
14
13
|
@font-face {
|
|
15
14
|
font-family: 'APK Protocol';
|
|
16
15
|
font-weight: 500;
|
|
17
|
-
src: url('
|
|
16
|
+
src: url('fonts/APK-Protocol-Medium.woff2') format('woff2');
|
|
18
17
|
}
|
|
19
18
|
|
|
20
19
|
@font-face {
|
|
21
20
|
font-family: 'KH Teka';
|
|
22
21
|
font-weight: 400;
|
|
23
|
-
src: url('
|
|
22
|
+
src: url('fonts/KHTeka-Regular.woff2') format('woff2');
|
|
24
23
|
}
|
|
25
24
|
|
|
26
25
|
@font-face {
|
|
27
26
|
font-family: 'KH Teka';
|
|
28
27
|
font-weight: 500;
|
|
29
|
-
src: url('
|
|
28
|
+
src: url('fonts/KHTeka-Medium.woff2') format('woff2');
|
|
30
29
|
}
|
|
31
30
|
|
|
32
31
|
@font-face {
|
|
33
32
|
font-family: 'KH Teka Mono';
|
|
34
33
|
font-weight: 400;
|
|
35
|
-
src: url('
|
|
34
|
+
src: url('fonts/KHTekaMono-Regular.woff2') format('woff2');
|
|
36
35
|
}
|
|
37
36
|
|
|
38
37
|
@font-face {
|
|
39
38
|
font-family: 'KH Teka Mono';
|
|
40
39
|
font-weight: 500;
|
|
41
|
-
src: url('
|
|
40
|
+
src: url('fonts/KHTekaMono-Medium.woff2') format('woff2');
|
|
42
41
|
}
|
|
43
42
|
|
|
44
43
|
@custom-variant dark (&:where([data-theme=dark], [data-theme=dark] *));
|
|
@@ -73,7 +72,7 @@
|
|
|
73
72
|
--color-sea: #002624;
|
|
74
73
|
}
|
|
75
74
|
|
|
76
|
-
@layer
|
|
75
|
+
@layer base {
|
|
77
76
|
|
|
78
77
|
h1 {
|
|
79
78
|
@apply text-5xl md:text-6xl font-medium font-heading text-balance text-primary md:leading-[4.2rem] tracking-tighter;
|
|
@@ -107,6 +106,10 @@
|
|
|
107
106
|
@apply font-mono text-space text-base px-1.5 py-0.5 outline outline-stroke rounded dark:outline-grey dark:text-white;
|
|
108
107
|
}
|
|
109
108
|
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
@layer components {
|
|
112
|
+
|
|
110
113
|
.wrapper {
|
|
111
114
|
@apply max-w-[calc(100vw-2rem)] xl:max-w-[80rem] mx-auto border-l border-r border-stroke dark:border-nickel divide-stroke dark:divide-nickel relative overflow-x-clip;
|
|
112
115
|
}
|
|
@@ -175,7 +178,7 @@
|
|
|
175
178
|
right: -3px;
|
|
176
179
|
bottom: -3px;
|
|
177
180
|
background-color: #CCCCCC;
|
|
178
|
-
background-image: url('
|
|
181
|
+
background-image: url('assets/primary-button-background.jpg');
|
|
179
182
|
background-size: 150% 150%;
|
|
180
183
|
background-position: center;
|
|
181
184
|
border-radius: calc(0.5rem + 3px);
|
|
@@ -270,7 +273,7 @@
|
|
|
270
273
|
transform: translateY(-50%);
|
|
271
274
|
width: 20px;
|
|
272
275
|
height: 20px;
|
|
273
|
-
background-image: url('
|
|
276
|
+
background-image: url('assets/checkmark.svg');
|
|
274
277
|
background-size: contain;
|
|
275
278
|
background-repeat: no-repeat;
|
|
276
279
|
background-position: center;
|
package/dist/index.d.ts
ADDED