// J Renee Studios — Inquire page sections
// Three sections: Hero (typography-only), Form (GHL embed on beige), What to Expect (white)
// ---------- 1. HERO (typography-only) ----------
function IqHero() {
return (
Inquire
Tell me your story.
This goes straight to me — Jennifer. I respond to every inquiry personally,
usually within an hour during the day.
);
}
// ---------- 2. FORM (GHL iframe embed) ----------
// The GHL helper script is loaded *after* the iframe mounts so it can
// successfully resize and post messages to the embedded form.
function IqForm() {
React.useEffect(() => {
const SRC = "https://link.clicktolaunch.co/js/form_embed.js";
if (document.querySelector(`script[src="${SRC}"]`)) return;
const s = document.createElement("script");
s.src = SRC;
s.async = true;
document.body.appendChild(s);
}, []);
return (
);
}
// ---------- 3. WHAT TO EXPECT ----------
function IqExpect() {
const pillars = [
{
number: "01",
title: "Within 24 hours",
body: "You'll hear from me directly — usually by text first, since most women find that easier than scheduling a call right away.",
},
{
number: "02",
title: "A short consultation",
body: "We'll have a real conversation about what you're hoping for. No pressure, no commitment.",
},
{
number: "03",
title: "Booking",
body: "If we're a good fit, we lock in your date and start planning.",
},
];
return (