God I love optimisation

This commit is contained in:
Aria 2025-03-10 11:43:45 +11:00
parent 7721ded376
commit 6a99f94759
Signed by untrusted user who does not match committer: aria
GPG key ID: 19AB7AA462B8AB3B
10 changed files with 22 additions and 9 deletions

View file

@ -1,9 +1,8 @@
---
const description = "Just my little website do be gay and do crime on~";
const embedImage = "https://aria.coffee/static/img/sites/avatar.png";
const embedColour = "#380A84";
const { pageTitle } = Astro.props;
const { pageTitle, description } = Astro.props;
---
<meta content={pageTitle} property="og:title" />
<meta content={description} property="og:description" />

View file

@ -8,7 +8,7 @@ export default function Greeting({ messages }) {
return (
<div>
<h3>{greeting}! Thank you for visiting!</h3>
<h2>{greeting}! Thank you for visiting!</h2>
<button
class="greetButton px-2 rounded-xl"
onClick={() => setGreeting(randomMessage())}