Skip to content

Commit 9a3f0cf

Browse files
committed
add voidzero + change copyright
1 parent 6d22e0e commit 9a3f0cf

File tree

2 files changed

+29
-4
lines changed

2 files changed

+29
-4
lines changed

.vitepress/config/shared.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export const sharedConfig = defineConfig({
7272
},
7373
footer: {
7474
message: `Released under the MIT License.`,
75-
copyright: "Copyright © 2023-present Boshen & Oxc Contributors",
75+
copyright: "Copyright © 2023-present VoidZero Inc.",
7676
},
7777
},
7878
markdown: {

src/index.md

+28-3
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,29 @@ features:
5050
max-width: 90%;
5151
}
5252

53-
.Sponsors {
53+
h2.voidzero-lead {
54+
text-align: center;
55+
padding-top: 60px;
56+
}
57+
58+
.voidzero {
59+
display: block;
60+
width: 300px;
61+
height: 74px;
62+
margin: 30px auto -20px;
63+
background-image: url(https://voidzero.dev/logo.svg);
64+
background-repeat: no-repeat;
65+
background-size: auto 74px;
66+
background-position: center;
67+
}
68+
69+
.dark .voidzero {
70+
background-image: url(https://voidzero.dev/logo-white.svg);
71+
}
72+
73+
.sponsors {
74+
text-align: center;
75+
padding-top: 60px;
5476
display: grid;
5577
justify-items: center;
5678

@@ -76,7 +98,10 @@ onMounted(() => {
7698
})
7799
</script>
78100

79-
<div class="Sponsors">
80-
<h2>Sponsored by</h2>
101+
<h2 class="voidzero-lead">Brought to you by</h2>
102+
103+
<a class="voidzero" href="https://voidzero.dev/" target="_blank" title="voidzero.dev"></a>
104+
105+
<div class="sponsors">
81106
<div v-html="SponsorsSVG"></div>
82107
</div>

0 commit comments

Comments
 (0)