fixed link issue

Signed-off-by: Ash Entwisle <ash.entwisle@protonmail.com>
issue/index
Ash Entwisle 2023-11-11 15:21:34 +00:00
parent 9f7a3c59fd
commit 2cd4329d93
No known key found for this signature in database
GPG Key ID: 0E3CBB6B4BE9FE33
3 changed files with 19 additions and 18 deletions

23
package-lock.json generated
View File

@ -154,12 +154,12 @@
} }
}, },
"node_modules/@astrojs/sitemap": { "node_modules/@astrojs/sitemap": {
"version": "3.0.2", "version": "3.0.3",
"resolved": "https://registry.npmjs.org/@astrojs/sitemap/-/sitemap-3.0.2.tgz", "resolved": "https://registry.npmjs.org/@astrojs/sitemap/-/sitemap-3.0.3.tgz",
"integrity": "sha512-ldxCDc0+QHcq2jH4WJFcz5iBc5/SqotEqpT91dhvoLqoRUT5U21rQ6u6qA4FyRVjpd/0Nt1kFjEsRbwoB8IKiQ==", "integrity": "sha512-+GRKp1yho9dpHBcMcU6JpbL41k0yYZghOkNsMRb8QIRflbGHvd787tdv9oIZ5NJj0SqAuOlqp2UpqLkJXuAe2A==",
"dependencies": { "dependencies": {
"sitemap": "^7.1.1", "sitemap": "^7.1.1",
"zod": "3.21.1" "zod": "^3.22.4"
} }
}, },
"node_modules/@astrojs/tailwind": { "node_modules/@astrojs/tailwind": {
@ -1344,9 +1344,9 @@
} }
}, },
"node_modules/astro": { "node_modules/astro": {
"version": "3.4.0", "version": "3.4.4",
"resolved": "https://registry.npmjs.org/astro/-/astro-3.4.0.tgz", "resolved": "https://registry.npmjs.org/astro/-/astro-3.4.4.tgz",
"integrity": "sha512-nTOFxrPOnmACl8noTPkRJkaEOMx4wZy4QCLB2aDL3Lm+AiEaVcgH7YQ4GpCl72zSNXp/A7hGdUgcXbC4XYHOCQ==", "integrity": "sha512-Xyhif8RtKpNLo/TXN0Klxt0uq/2xNzbJ1tZ2udn/QguT9a6iGeO+N1iRSU5a4FrZNKb5jyg7koLpwfEVJjj7cw==",
"dependencies": { "dependencies": {
"@astrojs/compiler": "^2.1.0", "@astrojs/compiler": "^2.1.0",
"@astrojs/internal-helpers": "0.2.1", "@astrojs/internal-helpers": "0.2.1",
@ -1382,6 +1382,7 @@
"js-yaml": "^4.1.0", "js-yaml": "^4.1.0",
"kleur": "^4.1.4", "kleur": "^4.1.4",
"magic-string": "^0.30.3", "magic-string": "^0.30.3",
"mdast-util-to-hast": "12.3.0",
"mime": "^3.0.0", "mime": "^3.0.0",
"ora": "^7.0.1", "ora": "^7.0.1",
"p-limit": "^4.0.0", "p-limit": "^4.0.0",
@ -1404,7 +1405,7 @@
"vitefu": "^0.2.4", "vitefu": "^0.2.4",
"which-pm": "^2.1.1", "which-pm": "^2.1.1",
"yargs-parser": "^21.1.1", "yargs-parser": "^21.1.1",
"zod": "3.21.1" "zod": "^3.22.4"
}, },
"bin": { "bin": {
"astro": "astro.js" "astro": "astro.js"
@ -7709,9 +7710,9 @@
} }
}, },
"node_modules/zod": { "node_modules/zod": {
"version": "3.21.1", "version": "3.22.4",
"resolved": "https://registry.npmjs.org/zod/-/zod-3.21.1.tgz", "resolved": "https://registry.npmjs.org/zod/-/zod-3.22.4.tgz",
"integrity": "sha512-+dTu2m6gmCbO9Ahm4ZBDapx2O6ZY9QSPXst2WXjcznPMwf2YNpn3RevLx4KkZp1OPW/ouFcoBtBzFz/LeY69oA==", "integrity": "sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==",
"funding": { "funding": {
"url": "https://github.com/sponsors/colinhacks" "url": "https://github.com/sponsors/colinhacks"
} }

View File

@ -12,14 +12,14 @@ import Exec from "./Exec.astro";
gh="zoeelen" gh="zoeelen"
img="zoe.png" img="zoe.png"
> >
lorem
</Exec> </Exec>
<Exec <Exec
title="Secretary" title="Secretary"
name="Will" name="Will"
pronouns="he" pronouns="he"
gh="" gh="WilliamShepherdson"
img="will.png" img="will.png"
> >
Hey! I'm Will and I am a second year computer science student on the year industry course. Hey! I'm Will and I am a second year computer science student on the year industry course.
@ -48,7 +48,7 @@ import Exec from "./Exec.astro";
gh="arenmarsden" gh="arenmarsden"
img="aren.png" img="aren.png"
> >
lorem
</Exec> </Exec>
<Exec <Exec

View File

@ -11,14 +11,14 @@ const props = Astro.props
--- ---
<div class="social-button" id={props.text}> <a href={props.href}>
<a href={props.href}> <div class="social-button" id={props.text}>
<div class="social-button-icon"> <div class="social-button-icon">
<img src={props.icon} alt={props.text}/> <img src={props.icon} alt={props.text}/>
</div> </div>
<div class="social-button-span"> <div class="social-button-span">
<span>{props.text}</span> <span>{props.text}</span>
</div> </div>
</a> </div>
</div> </a>