docs(site): add "No Skin" option to installation skin picker (#1525)

This commit is contained in:
Ronald Urbina
2026-06-18 12:07:23 -03:00
committed by GitHub
parent 07428519a5
commit 0b1491c30e
15 changed files with 146 additions and 44 deletions
@@ -1,5 +1,5 @@
import { useStore } from '@nanostores/react';
import { Minus, Sparkles } from 'lucide-react';
import { Code2, Minus, Sparkles } from 'lucide-react';
import { useEffect } from 'react';
import type { ImageRadioOption } from '@/components/ImageRadioGroup';
import ImageRadioGroup from '@/components/ImageRadioGroup';
@@ -9,11 +9,13 @@ import type { Skin } from '@/utils/installation/types';
const VIDEO_SKINS: ImageRadioOption<Skin>[] = [
{ value: 'video', label: 'Default', image: <Sparkles size={32} /> },
{ value: 'minimal-video', label: 'Minimal', image: <Minus size={32} /> },
{ value: 'none', label: 'No Skin', image: <Code2 size={32} /> },
];
const AUDIO_SKINS: ImageRadioOption<Skin>[] = [
{ value: 'audio', label: 'Default', image: <Sparkles size={32} /> },
{ value: 'minimal-audio', label: 'Minimal', image: <Minus size={32} /> },
{ value: 'none', label: 'No Skin', image: <Code2 size={32} /> },
];
export default function SkinPicker() {