website-content-updates #7

Open
caperren wants to merge 25 commits from website-content-updates into main
Showing only changes of commit 297a56e7d6 - Show all commits

View File

@@ -13,6 +13,7 @@ const pageTitle = Astro.props.title ? `${Astro.props.title} - Corwin Perren` : "
<link rel="icon" href="/favicon-solid.png" type="image/png"/> <link rel="icon" href="/favicon-solid.png" type="image/png"/>
<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="../scripts/main.ts"></script>
</head> </head>
<body class="bg-black text-white"> <body class="bg-black text-white">
<Navbar/> <Navbar/>
@@ -23,7 +24,6 @@ const pageTitle = Astro.props.title ? `${Astro.props.title} - Corwin Perren` : "
<slot/> <slot/>
</main> </main>
<Footer/> <Footer/>
<script src="../scripts/main.ts"></script>
</body> </body>
</html> </html>