Aspect Ratio
Portrait Frame
A 3:4 portrait frame with the caption over a tinted gradient: a black scrim muddies a warm photograph, a tinted one does not.
- aspect ratio
- portrait
- cover
- editorial
Preview
1440pxHost theme
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/aspect-004?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 "aspect-004" (Portrait Frame) 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/aspect-004.json
Registry item: https://vibeui.ru/r/aspect-004.json
Installs to: components/vibeui/aspect-004.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
A 3:4 portrait frame with the caption over a tinted gradient: a black scrim muddies a warm photograph, a tinted one does not.
A 3:4 portrait frame: a category pill in the top corner, a serif heading and a caption over the bottom gradient. The type size is measured against the frame's width, so the caption survives a narrow column. Zero dependencies, one file, its own palette.
## 3. How to use it
import { Aspect004 } from "@/components/vibeui/aspect-004"
<Aspect004
eyebrow="Portfolio"
title="Evening light over the workshop"
subtitle="Shot at Flight studio"
/>
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-aspect-004-* palette — do not swap it for your theme tokens
- the tinted gradient instead of translucent black: a black scrim muddies a warm photograph
- the 3:4 ratio — it is for portraits and vertical covers
- the cqi-based heading size: a fixed size breaks the caption in a narrow column
- the serif heading: it separates a cover from a product card
- aria-hidden on the gradient layer
## 6. You may change
- the eyebrow, title and subtitle copy
- href — the destination
- the accent through the accent prop — the focus ring
- the photo: put an <img> inside and it sits under the gradient
## 7. Rules
- Do not use a long heading here: three lines over a photograph stop being readable.
- For horizontal covers use aspect-002 or aspect-005 — 3:4 crops them at the sides.
- An <img> needs an alt: the caption over the frame does not replace it.
- 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/aspect-004.jsonhttps://vibeui.ru/r/aspect-004.jsonКомпонент самодостаточен: один файл, без зависимостей, собственная палитра в локальных переменных --vibeui-aspect-004-*. Кадр держит 3:4 и рендерится ссылкой. Кегль заголовка считается в cqi от собственной ширины кадра, поэтому подпись не ломается в узкой колонке. Градиент под текстом собран из собственного тёмного тона, а не из полупрозрачного чёрного.
Component source
The same file your agent installs. Here in case you would rather copy it by hand.
import type { ComponentPropsWithoutRef, CSSProperties } from "react"
export type Aspect004Props = Omit<
ComponentPropsWithoutRef<"div">,
"title" | "children"
> & {
title?: string
subtitle?: string
/** Надпись в верхнем углу: рубрика, дата, номер выпуска. */
eyebrow?: string
href?: string
accent?: string
}
// Идея компонента: портретный кадр 3:4 с подписью поверх нижней части.
// Текст читается на любой фотографии, потому что под ним лежит градиент из
// собственного тёмного тона, а не полупрозрачный чёрный: чёрная плёнка на
// тёплом снимке даёт грязный серый, а тонированный градиент — нет.
const STYLES = `
:where([data-vibeui-block="aspect-004"]){
--vibeui-aspect-004-ink:oklch(0.18 0.02 265);
--vibeui-aspect-004-fg:oklch(0.99 0.003 265);
--vibeui-aspect-004-muted:oklch(0.86 0.01 265);
--vibeui-aspect-004-accent:oklch(0.75 0.14 75);
--vibeui-aspect-004-radius:1rem;
--vibeui-aspect-004-serif:ui-serif,Georgia,"Times New Roman",Times,serif;
--vibeui-aspect-004-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
container-type:inline-size;
}
[data-vibeui-block="aspect-004"]{
position:relative;display:block;width:100%;max-width:20rem;box-sizing:border-box;overflow:hidden;
aspect-ratio:3 / 4;border-radius:var(--vibeui-aspect-004-radius);
background:
radial-gradient(90% 70% at 70% 15%,oklch(0.62 0.09 60),transparent 65%),
linear-gradient(165deg,oklch(0.5 0.07 40),oklch(0.28 0.04 285));
color:var(--vibeui-aspect-004-fg);font-family:var(--vibeui-aspect-004-font);
text-decoration:none;
}
[data-vibeui-block="aspect-004"] img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
/* Тонированный градиент вместо чёрной плёнки: она пачкает тёплый снимок. */
[data-vibeui-block="aspect-004"] [data-part="veil"]{
position:absolute;inset:auto 0 0;height:62%;pointer-events:none;
background:linear-gradient(to top,var(--vibeui-aspect-004-ink) 8%,color-mix(in oklab,var(--vibeui-aspect-004-ink) 55%,transparent) 45%,transparent);
}
[data-vibeui-block="aspect-004"] [data-part="eyebrow"]{
position:absolute;left:1rem;top:1rem;
padding:0.1875rem 0.5rem;border-radius:9999px;
background:oklch(1 0 0 / 16%);backdrop-filter:blur(4px);
font-size:0.6875rem;font-weight:600;letter-spacing:0.04em;text-transform:uppercase;
}
[data-vibeui-block="aspect-004"] [data-part="text"]{
position:absolute;left:0;right:0;bottom:0;padding:1.125rem;
display:flex;flex-direction:column;gap:0.25rem;
}
[data-vibeui-block="aspect-004"] [data-part="title"]{
margin:0;font-family:var(--vibeui-aspect-004-serif);
font-size:clamp(1.125rem,7cqi,1.75rem);line-height:1.15;letter-spacing:-0.01em;
}
[data-vibeui-block="aspect-004"] [data-part="subtitle"]{font-size:0.8125rem;line-height:1.4;color:var(--vibeui-aspect-004-muted)}
[data-vibeui-block="aspect-004"]:focus-visible{outline:2px solid var(--vibeui-aspect-004-accent);outline-offset:3px}
@media (prefers-reduced-motion:reduce){[data-vibeui-block="aspect-004"] *{animation:none!important;transition:none!important}}
`
/**
* Портретный кадр 3:4 с подписью поверх тонированного градиента.
* Один файл, ноль зависимостей, собственная палитра.
*/
export function Aspect004({
title = "Вечерний свет над мастерской",
subtitle = "Съёмка студии «Полёт», март",
eyebrow = "Портфолио",
href = "#",
accent,
className,
style,
...props
}: Aspect004Props) {
const palette = {
...(accent ? { "--vibeui-aspect-004-accent": accent } : null),
...style,
} as CSSProperties
const content = (
<>
<span data-part="veil" aria-hidden="true" />
{eyebrow ? <span data-part="eyebrow">{eyebrow}</span> : null}
<span data-part="text">
<span data-part="title">{title}</span>
{subtitle ? <span data-part="subtitle">{subtitle}</span> : null}
</span>
</>
)
return (
<>
<style href="vibeui-aspect-004" precedence="medium">
{STYLES}
</style>
{href ? (
<a
data-vibeui-block="aspect-004"
href={href}
className={className}
style={palette}
>
{content}
</a>
) : (
<div
{...props}
data-vibeui-block="aspect-004"
className={className}
style={palette}
>
{content}
</div>
)}
</>
)
}