chore: myriad fixes + artist pages
This commit is contained in:
parent
aec8471b06
commit
ff00020b70
53 changed files with 753 additions and 486 deletions
|
@ -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>
|
||||
|
|
Reference in a new issue