// hf-social.jsx — On-brand Tatava Studio social templates (squares 380×380, stories 230×409).
// Replaces the off-brand "Violet Drama" system. Cream surfaces, saffron/navy, Poppins/Open Sans.
// Exports: SqA…SqF, StA…StC on window.
(function () {
const ORANGE = '#EC7A35', NAVY = '#21366C', CREAM = '#FFFBF6', CREAM2 = '#F7E9D7',
BLUSH = '#FCE6E0', INK = '#1A1F2B', INK5 = '#6A7286';
const DISPLAY = "'Poppins','Helvetica Neue',sans-serif";
const BODY = "'Open Sans','Helvetica Neue',sans-serif";
const LOGO = "'Bebas Neue',Impact,sans-serif";
const Mark = ({ size = 18, white = false }) => (
);
const Wordmark = ({ size = 12, white = false, mark = 16 }) => (
TATAVA STUDIO
);
const Eyebrow = ({ children, navy = false, band = false }) => (
{children}
);
const Sq = ({ children, bg = CREAM }) => (
{children}
);
const ContactStrip = ({ tall = false }) => (
+91 85957 48981
tatavastudio.com
B-18 Swasthya Vihar, New Delhi
);
// ── SqA · Editorial Light ─────────────────────────────────────────
const SqA = () => (
Self-Care Month
Self-Care Isn't Selfish — It's Maintenance
Small daily rituals protect your mental health the way brushing protects your teeth.
Start with ten quiet minutes.
Book a Session
Open to all individuals, genders & identities
);
// ── SqB · Quote Card (tinted) ─────────────────────────────────────
const SqB = () => (
“
Healing is for everyone — no matter your story, or where you begin.
AA
Aarti Ahuja
Founder, Tatava Studio
Simplifying Wellness
);
// ── SqC · Hero Statement (circular halo) ─────────────────────────
const SqC = () => (
Our Promise
Healing Is for Everyone
In-person and tele-counselling for stress, relationships, grief, trauma and sleep.
Consultation By Appointment Only
);
// ── SqD · Founder Bio (photo + navy band) ─────────────────────────
const SqD = () => (
Meet Your Psychologist
Aarti Ahuja
MA Applied Psychology · NLP Trainer · Health & Wellness Coach. An eclectic,
evidence-based approach to therapy — delivered with warmth.
{['1,000+ sessions','12 yrs practice'].map(c => (
{c}
))}
For Appointments Call · +91 85957 48981
tatavastudio.com
);
// ── SqE · Listicle Teaser ─────────────────────────────────────────
const SqE = () => (
Carousel · 1 of 6
5
Signs You Should Seek Family Counselling in Urban Areas
Seeking support is not weakness — it's wisdom. Swipe for the signs.
);
// ── SqF · Services + CTA ──────────────────────────────────────────
const SqF = () => (
How We Help
{[
'Stress & Anxiety','Depression','Family & Relationships',
'Grief & Loss','Trauma (PTSD)','Sleep Training',
].map((s,i) => (
))}
Book a Session
Consultation By Appointment Only
);
// ── Stories (230×409) ─────────────────────────────────────────────
const St = ({ children, bg = CREAM }) => (
{children}
);
// StA · Hero CTA story
const StA = () => (
World Mental Health Day
Your Mind Deserves Care Too
Check in with yourself today — and with someone you love.
Book a Session
tatavastudio.com · New Delhi
);
// StB · Light editorial list story
const StB = () => (
Tonight's Wind-Down
Three Steps to Better Sleep
{[
['Screens off','60 minutes before bed'],
['Body scan','5 slow breaths, head to toe'],
['Same time','keep a consistent wake hour'],
].map(([t,d],i) => (
))}
Sleep Training · Tatava Studio
Save this
);
// StC · Giant stat story
const StC = () => (
Did You Know
1 in 7
Indians live with a mental health condition — most never speak to anyone.
Talking to a professional is a first step, not a last resort.
Book a Session
tatavastudio.com
);
Object.assign(window, { SqA, SqB, SqC, SqD, SqE, SqF, StA, StB, StC });
})();