/* app.jsx — assembles sections */
const { useRef: useRefApp } = React;
function App() {
const formRef = useRefApp(null);
useReveal();
const goRegister = () => {
const el = document.getElementById("register");
if (el) window.scrollTo({ top: el.getBoundingClientRect().top + window.scrollY - 20, behavior: "smooth" });
};
return (
);
}
ReactDOM.createRoot(document.getElementById("root")).render();