Skip to content

Commit 83a25c9

Browse files
committed
feat: testbeats ad
1 parent d6d8a33 commit 83a25c9

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

docs/.vitepress/theme/AdComponent.vue

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,39 +4,42 @@ import Icon from "./Icon.vue";
44

55
<template>
66
<div class="ad-component">
7-
<a target="_blank" href="https://forms.gle/Wfc9c89j78He3Zap9">
7+
<a target="_blank" href="https://testbeats.com">
88
<Icon class="icon" />
99
<span
10-
>Share Your Insights: Join Our Survey on Test Reporting Practices!</span
10+
>Keep your tests in tune with</span
1111
>
12-
<span class="cta">Participate now →</span>
12+
<span class="cta">testbeats</span>
13+
1314
</a>
1415
</div>
1516
</template>
1617

1718
<style scoped>
1819
@keyframes pulse {
1920
0% {
20-
border: 2px solid var(--vp-c-divider);
21+
border: 1px solid var(--vp-c-divider);
2122
}
2223
50% {
23-
border: 2px solid var(--vp-c-brand);
24+
border: 1px solid var(--vp-c-brand);
2425
}
2526
100% {
26-
border: 2px solid var(--vp-c-divider);
27+
border: 1px solid var(--vp-c-divider);
2728
}
2829
}
2930
3031
.ad-component {
32+
text-align: center;
3133
margin-bottom: 2rem;
3234
padding: 0.5rem 0.85rem;
33-
border: 2px solid var(--vp-c-brand);
35+
border: 1px solid var(--vp-c-brand);
3436
border-radius: 4px;
3537
text-decoration: none;
36-
color: var(--vp-c-text-2);
38+
color: white;
3739
transition: color 0.4s ease-in-out;
38-
font-size: 0.8rem;
40+
font-size: 1rem;
3941
animation: pulse 3s infinite;
42+
background-image: linear-gradient(to top right, #000000, #000842);
4043
}
4144
4245
.ad-component:hover {

docs/.vitepress/theme/Icon.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<template>
2-
📢
2+
33
</template>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "",
55
"main": "index.js",
66
"scripts": {
7-
"docs:dev": "vitepress dev docs",
7+
"dev": "vitepress dev docs",
88
"docs:build": "vitepress build docs",
99
"docs:serve": "vitepress serve docs",
1010
"docs:buildserve": "vitepress build docs && vitepress serve docs"

0 commit comments

Comments
 (0)