fix issue for last

This commit is contained in:
incognitotgt 2024-04-16 23:23:56 -04:00
parent e0282962d6
commit c2268be997
No known key found for this signature in database
GPG key ID: D229D19A500C60B0
2 changed files with 12 additions and 9 deletions

View file

@ -33,21 +33,22 @@ export default function App() {
console.log(container);
};
return (
<div className={!background && "bg-primary"}>
<div>
{window.location.origin === "https://nebulaproxy.io" && <Meta />}
{/* {window.location.origin === "http://localhost:8080" && <Meta />} */}
<Suspense fallback={<LoadSuspense />}>
<main className="absolute z-50 h-screen w-screen">
<main className="absolute z-30 h-screen w-screen">
<Routes />
</main>
<div className="-z-10 h-full w-full bg-primary">
<div
className={`z-20 h-screen w-screen ${!background && "bg-primary"}`}
>
{init && particlesUrl !== "none" && (
<Particles
id="tsparticles"
url={particlesUrl}
particlesLoaded={particlesLoaded}
class="bg-primary"
zIndex={-10}
className="bg-primary"
/>
)}
</div>