import { StrictMode } from "react"; import { createRoot } from "react-dom/client"; import Home from "../app/page"; import "../app/globals.css"; const root = document.getElementById("root"); if (!root) { throw new Error("Static app root was not found."); } createRoot(root).render( , );