// 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 (
);
}
function StoryChrome({ idx = 0, count = 6, time = '9:41' }) {
return (
<>
{/* Status bar */}
{time}
● ● ●
{/* Progress */}
{Array.from({ length: count }).map((_, i) => (
))}
{/* User row */}
{/* Reply bar */}
>
);
}
// 6 story variations
function Story1_Welcome() {
return (
);
}
function Story2_Servico() {
return (
NOVO SERVIÇO
Terapia
Capilar
Ancestral
Massagem, óleos vegetais e escalda-pés.
Cuidado que vem antes da estética.
);
}
function Story3_Behind() {
return (
{/* tilted "label" sticker */}
{/* 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) => (
))}
);
}
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) => (
))}
{/* 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 };