Carousel
Onboarding Steps
An onboarding carousel that has an end: on the last step the button changes its label, and skipping is available from the first.
- carousel
- onboarding
- steps
- wizard
Preview
Use it with AI
- 1. Copy the link.
- 2. Write to your agent in your own words and drop the link into the sentence.
- 3. The agent opens the link and installs the component from the registry.
put this in the header: https://vibeui.ru/c/carousel-008?lang=en
Выберите компонент
Каталог показывает живое превью и категорию — картинок нет, всё настоящее.
Show the full instructions
What the link says, spelled out. Use it when your agent cannot open links — paste this text instead.
# Install and place "carousel-008" (Onboarding Steps) from VibeUI
## 1. Install first — do not skip, do not recreate
Run this exact command before writing any code:
npx shadcn@latest add https://vibeui.ru/r/carousel-008.json
Registry item: https://vibeui.ru/r/carousel-008.json
Installs to: components/vibeui/carousel-008.tsx (the exact path follows this project's components.json aliases).
npm dependencies: none.
Registry dependencies: none.
Install it from the registry. Do not recreate it from the description,
do not substitute a similar component from another library, and do not
rewrite it to match the project's existing style.
## 2. What it is
An onboarding carousel that has an end: on the last step the button changes its label, and skipping is available from the first.
A three-step onboarding: artwork, heading, text, progress dots, a next button and a skip. Zero dependencies, one file.
## 3. How to use it
import { Carousel008 } from "@/components/vibeui/carousel-008"
<Carousel008 steps={steps} nextLabel="Next" doneLabel="Start" />
Read the installed file for the full prop list.
## 4. Where to place it
This is a small inline component. Put it exactly where the user asked,
inside the existing markup. Do not create a new page, section or
wrapper for it. If a similar control already sits in that spot,
replace it instead of adding a second one.
Placement: ___
(The user fills this line in. If it is still blank, ask where to put it
instead of guessing.)
## 5. Keep exactly as installed
- the local --vibeui-carousel-008-* palette — do not swap it for your theme tokens
- the ending: on the last step the button's label changes
- the skip from the first step — nobody may be marched through five screens
- the constant height through the grid: a jumping card breaks reading
- aria-live on the text region and the "step N of M" label on the dots
- the stretched dot for the current step — shape, not only colour
## 6. You may change
- the steps array: heading and text
- nextLabel and doneLabel
- label — the block's name
- the accent through the accent prop
## 7. Rules
- Beyond four steps almost nobody finishes: shorter is better.
- "Skip" jumps to the last step rather than closing: closing is the caller's job.
- After the last step it returns to the first: replace that with closing in a project.
- Do not lift the CSS variables into globals.css: the component has to stay a single file.
## 8. Verify
- it renders with no console errors;
- it looks like the preview on the VibeUI page you copied this from;
- if it does not, you changed something listed in section 5 — put it back.For developers
npx shadcn@latest add https://vibeui.ru/r/carousel-008.jsonhttps://vibeui.ru/r/carousel-008.jsonКомпонент самодостаточен: один файл, без зависимостей, собственная палитра в локальных переменных --vibeui-carousel-008-*. Клиентский: "use client". Шаги лежат в одной ячейке грида, скрытые получают visibility: hidden — высота держится по самому длинному. Область текста объявлена aria-live="polite", точки описаны подписью «шаг N из M». Оттенок картинки меняется с шагом.
Component source
The same file your agent installs. Here in case you would rather copy it by hand.
"use client"
import { useState } from "react"
import type { ComponentPropsWithoutRef, CSSProperties } from "react"
export type Carousel008Step = {
title: string
text: string
}
export type Carousel008Props = Omit<
ComponentPropsWithoutRef<"section">,
"children"
> & {
steps?: Carousel008Step[]
label?: string
nextLabel?: string
doneLabel?: string
accent?: string
}
// Идея компонента: карусель-онбординг с явной кнопкой «дальше». Она отличается
// от слайдера тем, что у неё есть конец: на последнем шаге кнопка меняет
// подпись и становится завершением. Пропустить можно с первого шага — вести
// человека силой через пять экранов нельзя.
const STYLES = `
:where([data-vibeui-block="carousel-008"]){
--vibeui-carousel-008-bg:oklch(1 0 0);
--vibeui-carousel-008-fg:oklch(0.22 0.014 265);
--vibeui-carousel-008-muted:oklch(0.56 0.014 265);
--vibeui-carousel-008-border:oklch(0.91 0.006 265);
--vibeui-carousel-008-accent:oklch(0.55 0.17 265);
--vibeui-carousel-008-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
[data-vibeui-block="carousel-008"]{
display:flex;flex-direction:column;gap:0.75rem;
width:100%;max-width:20rem;box-sizing:border-box;padding:1rem;
background:var(--vibeui-carousel-008-bg);
border:1px solid var(--vibeui-carousel-008-border);border-radius:0.875rem;
font-family:var(--vibeui-carousel-008-font);color:var(--vibeui-carousel-008-fg);
}
[data-vibeui-block="carousel-008"] [data-part="art"]{
display:flex;align-items:center;justify-content:center;
aspect-ratio:16 / 9;border-radius:0.75rem;
background:
radial-gradient(90% 80% at 25% 20%,oklch(0.92 0.06 var(--vibeui-carousel-008-hue,250)),transparent 70%),
linear-gradient(150deg,oklch(0.82 0.08 var(--vibeui-carousel-008-hue,250)),oklch(0.58 0.1 var(--vibeui-carousel-008-hue,250)));
color:oklch(0.99 0.003 265);font-size:1.5rem;font-weight:700;
font-variant-numeric:tabular-nums;
}
[data-vibeui-block="carousel-008"] [data-part="body"]{display:grid}
/* Шаги лежат в одной ячейке грида: высота держится по самому длинному. */
[data-vibeui-block="carousel-008"] [data-part="step"]{grid-area:1 / 1;display:flex;flex-direction:column;gap:0.25rem}
[data-vibeui-block="carousel-008"] [data-part="step"][data-hidden="true"]{visibility:hidden}
[data-vibeui-block="carousel-008"] [data-part="title"]{margin:0;font-size:0.9375rem;font-weight:650;line-height:1.3}
[data-vibeui-block="carousel-008"] [data-part="text"]{margin:0;font-size:0.8125rem;line-height:1.45;color:var(--vibeui-carousel-008-muted)}
[data-vibeui-block="carousel-008"] [data-part="foot"]{display:flex;align-items:center;justify-content:space-between;gap:0.75rem}
[data-vibeui-block="carousel-008"] [data-part="dots"]{display:flex;gap:0.3125rem}
[data-vibeui-block="carousel-008"] [data-part="dot"]{
width:0.4375rem;height:0.4375rem;border-radius:9999px;background:var(--vibeui-carousel-008-border);
}
[data-vibeui-block="carousel-008"] [data-part="dot"][data-on="true"]{background:var(--vibeui-carousel-008-accent);width:1.125rem}
[data-vibeui-block="carousel-008"] [data-part="actions"]{display:flex;align-items:center;gap:0.5rem}
[data-vibeui-block="carousel-008"] button{
appearance:none;cursor:pointer;
height:2.125rem;padding:0 0.875rem;
border:0;border-radius:0.5rem;
background:var(--vibeui-carousel-008-accent);color:oklch(0.99 0.01 265);
font:inherit;font-size:0.8125rem;font-weight:650;
}
[data-vibeui-block="carousel-008"] [data-part="skip"]{
background:transparent;color:var(--vibeui-carousel-008-muted);font-weight:600;padding:0;height:auto;
}
[data-vibeui-block="carousel-008"] button:focus-visible{outline:2px solid var(--vibeui-carousel-008-accent);outline-offset:2px}
@media (prefers-reduced-motion:reduce){[data-vibeui-block="carousel-008"] *{animation:none!important;transition:none!important}}
`
const DEFAULT_STEPS: Carousel008Step[] = [
{
title: "Выберите компонент",
text: "Каталог показывает живое превью и категорию — картинок нет, всё настоящее.",
},
{
title: "Скопируйте инструкцию",
text: "Copy for AI соберёт команду установки и правила, которые нельзя нарушать.",
},
{
title: "Отдайте агенту",
text: "Он поставит компонент одной командой и не станет пересобирать его заново.",
},
]
/**
* Карусель-онбординг: у неё есть конец, а пропустить можно с первого шага.
* Один файл, ноль зависимостей, собственная палитра.
*/
export function Carousel008({
steps = DEFAULT_STEPS,
label = "Знакомство",
nextLabel = "Дальше",
doneLabel = "Начать",
accent,
className,
style,
...props
}: Carousel008Props) {
const [index, setIndex] = useState(0)
const last = index === steps.length - 1
const palette = {
"--vibeui-carousel-008-hue": 250 + index * 40,
...(accent ? { "--vibeui-carousel-008-accent": accent } : null),
...style,
} as CSSProperties
return (
<>
<style href="vibeui-carousel-008" precedence="medium">
{STYLES}
</style>
<section
{...props}
data-vibeui-block="carousel-008"
aria-roledescription="карусель"
aria-label={label}
className={className}
style={palette}
>
<div data-part="art" aria-hidden="true">
{index + 1}
</div>
<div data-part="body" aria-live="polite">
{steps.map((step, position) => (
<div
key={step.title}
data-part="step"
data-hidden={position !== index}
aria-hidden={position !== index}
>
<h3 data-part="title">{step.title}</h3>
<p data-part="text">{step.text}</p>
</div>
))}
</div>
<div data-part="foot">
<div
data-part="dots"
aria-label={`Шаг ${index + 1} из ${steps.length}`}
>
{steps.map((step, position) => (
<span
key={step.title}
data-part="dot"
data-on={position === index}
aria-hidden="true"
/>
))}
</div>
<div data-part="actions">
{last ? null : (
<button
type="button"
data-part="skip"
onClick={() => setIndex(steps.length - 1)}
>
Пропустить
</button>
)}
<button
type="button"
onClick={() => setIndex(last ? 0 : index + 1)}
>
{last ? doneLabel : nextLabel}
</button>
</div>
</div>
</section>
</>
)
}