/* Bar Kiosi — app root + Tweaks (placeholder info lives here) */
const TWEAK_DEFAULTS = /*EDITMODE-BEGIN*/{
"phone": "(215) 555-0149",
"email": "hello@barkiosi.com",
"instagram": "@barkiosi",
"price": "649",
"serviceArea": "Philadelphia · King of Prussia · Main Line",
"showTestimonial": false,
"testimonialQuote": "Our guests could not stop talking about the bar — half of them didn't even realize there was no alcohol.",
"testimonialAuthor": "— Future you, after the first event"
}/*EDITMODE-END*/;
function App() {
const [t, setTweak] = useTweaks(TWEAK_DEFAULTS);
return (
setTweak("phone", v)} />
setTweak("email", v)} />
setTweak("instagram", v)} />
setTweak("price", v)} />
setTweak("serviceArea", v)} />
setTweak("showTestimonial", v)} />
setTweak("testimonialQuote", v)} />
setTweak("testimonialAuthor", v)} />
);
}
ReactDOM.createRoot(document.getElementById("root")).render();