chore: myriad fixes + artist pages

This commit is contained in:
Cory Dransfeldt 2024-11-17 13:21:45 -08:00
parent aec8471b06
commit ff00020b70
No known key found for this signature in database
53 changed files with 753 additions and 486 deletions

View file

@ -3,7 +3,7 @@ import "@styles/index.css";
import Header from "@components/Header.astro";
import Footer from "@components/Footer.astro";
import Metadata from "@components/Metadata.astro";
import { fetchGlobalData } from '@utils/data/global/index.js';
import { fetchGlobalData } from "@utils/data/global/index.js";
const {
schema = "page",
@ -61,7 +61,11 @@ const isProduction = import.meta.env.MODE === "production";
)
}
<noscript>
<style>.client-side {display:none}</style>
<style>
.client-side {
display: none;
}
</style>
</noscript>
</head>
<body>
@ -74,5 +78,6 @@ const isProduction = import.meta.env.MODE === "production";
</main>
<Footer updated={updated} />
</div>
</body>
</html>