/** @jsxRuntime classic */ import "./tailwind.css"; import domReady from "@wordpress/dom-ready"; import { createRoot } from "@wordpress/element"; import * as React from "react"; import LeadboosterDesign from "../components/leadboosterTabbedForm/leadboosterDesign"; // Stub for Script: logs the src and renders nothing. interface ScriptProps { src: string; } const Script: React.FC = ({ src }) => { console.log("Script loaded:", src); return null; }; // Stub for Image: renders a standard element. interface ExtendedImageProps extends React.ImgHTMLAttributes { priority?: boolean; // support for Next.js-like priority prop } function Leadbooster() { return (