diff --git a/client/index.html b/client/index.html index b162c45..658e281 100644 --- a/client/index.html +++ b/client/index.html @@ -55,6 +55,27 @@ content="https://edulume.site/og-image.png" /> + diff --git a/client/src/main.tsx b/client/src/main.tsx index bef5202..59f187a 100644 --- a/client/src/main.tsx +++ b/client/src/main.tsx @@ -1,10 +1,17 @@ -import { StrictMode } from 'react' -import { createRoot } from 'react-dom/client' -import './index.css' -import App from './App.tsx' +import { StrictMode } from "react"; +import { createRoot } from "react-dom/client"; +import "./index.css"; +import App from "./App"; -createRoot(document.getElementById('root')!).render( +const root = createRoot(document.getElementById("root")!); + +root.render( - , -) + +); + +const staticLCP = document.getElementById("lcp-static"); +if (staticLCP) { + staticLCP.remove(); +}