Move script import to end of body
All checks were successful
Build and Test - Staging / determine_version (pull_request) Successful in 26s
Build and Test - Staging / build_and_push (pull_request) Successful in 2m4s
Build and Test - Staging / test (pull_request) Successful in 2s
Build and Test - Staging / deploy_staging (pull_request) Successful in 4s

This commit is contained in:
2025-11-07 20:26:18 -08:00
parent d1bc55e556
commit d24a3054c1

View File

@@ -14,7 +14,7 @@ const pageTitle = Astro.props.title ? `${Astro.props.title} - Corwin Perren` : "
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>{pageTitle}</title> <title>{pageTitle}</title>
<script src="/src/scripts/main.js"></script>
</head> </head>
<body class="bg-black text-white"> <body class="bg-black text-white">
@@ -26,6 +26,7 @@ const pageTitle = Astro.props.title ? `${Astro.props.title} - Corwin Perren` : "
<slot/> <slot/>
</main> </main>
<Footer/> <Footer/>
<script src="/src/scripts/main.js"></script>
</body> </body>
</html> </html>