docs: add marketing pages (#3308)

Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
Sébastien Chopin
2025-02-14 14:18:14 +01:00
committed by GitHub
parent d4bc9b3d0e
commit ba3ed86ae1
52 changed files with 1855 additions and 83 deletions

View File

@@ -42,7 +42,8 @@ const radius = computed({
const modes = [
{ label: 'light', icon: appConfig.ui.icons.light },
{ label: 'dark', icon: appConfig.ui.icons.dark }
{ label: 'dark', icon: appConfig.ui.icons.dark },
{ label: 'system', icon: appConfig.ui.icons.system }
]
const mode = computed({
get() {
@@ -144,7 +145,7 @@ function setBlackAsPrimary(value: boolean) {
v-for="m in modes"
:key="m.label"
v-bind="m"
:selected="mode === m.label"
:selected="colorMode.preference === m.label"
@click="mode = m.label"
/>
</div>