// Instagram Stories — 9:16 cards, 6 variations // Each story is 1080x1920 (scaled to fit) const { UARINI, SpiralPatch, Wordmark, LogoLockup, GrainOverlay, StripesMark, PhotoPlaceholder } = window; function StoryFrame({ children, scale = 0.4 }) { const W = 1080, H = 1920; return (
{children}
); } function StoryChrome({ idx = 0, count = 6, time = '9:41' }) { return ( <> {/* Status bar */}
{time} ● ● ●
{/* Progress */}
{Array.from({ length: count }).map((_, i) => (
))}
{/* User row */}
studiouarini
2h
{/* Reply bar */}
Enviar mensagem...
); } // 6 story variations function Story1_Welcome() { return (
BEM-VINDX
); } function Story2_Servico() { return (
NOVO SERVIÇO
Terapia
Capilar
Ancestral
Massagem, óleos vegetais e escalda-pés. Cuidado que vem antes da estética.
SAIBA MAIS ↗
); } function Story3_Behind() { return (
{/* tilted "label" sticker */}
BASTIDOR
terça,
14h32
{/* mention sticker */}
@ennaiane_
cliente novo, ritual antigo ✦
); } function Story4_Quote() { return (
SABEDORIA · 02
"Cabelo
é raiz.
Corte
é rito."
— NAIANE TENÓRIO
); } function Story5_Poll() { return (
{/* "ask me" sticker */}
ENQUETE
Próximo conteúdo?
{/* options */}
{[ ['Tutorial: barba navalhada', 67, UARINI.green], ['Tour pelo studio', 33, UARINI.cream], ].map(([label, pct, c], i) => (
{label}
{pct}%
))}
); } function Story6_Agenda() { return (
AGENDA · MAIO
Abriu
horário.
{/* date stickers */}
{[ { d: 'QUA 14', h: '14:00' }, { d: 'QUA 14', h: '16:30' }, { d: 'SEX 16', h: '15:00' }, { d: 'SEX 16', h: '17:00' }, { d: 'SAB 17', h: '10:00' }, { d: 'SAB 17', h: '11:30' }, ].map(({ d, h }, i) => (
{d}
{h}
))}
{/* link sticker */}
LINK
uarini.studio/agenda
); } function StoriesSequence({ scale = 0.36 }) { const stories = [Story1_Welcome, Story2_Servico, Story3_Behind, Story4_Quote, Story5_Poll, Story6_Agenda]; return (
{stories.map((S, i) => ( ))}
); } window.StoriesSequence = StoriesSequence; window.StoryFrame = StoryFrame; window.STORY_RENDERERS = { Story1_Welcome, Story2_Servico, Story3_Behind, Story4_Quote, Story5_Poll, Story6_Agenda };