fixed link issue
Signed-off-by: Ash Entwisle <ash.entwisle@protonmail.com>issue/index
parent
9f7a3c59fd
commit
2cd4329d93
|
@ -154,12 +154,12 @@
|
|||
}
|
||||
},
|
||||
"node_modules/@astrojs/sitemap": {
|
||||
"version": "3.0.2",
|
||||
"resolved": "https://registry.npmjs.org/@astrojs/sitemap/-/sitemap-3.0.2.tgz",
|
||||
"integrity": "sha512-ldxCDc0+QHcq2jH4WJFcz5iBc5/SqotEqpT91dhvoLqoRUT5U21rQ6u6qA4FyRVjpd/0Nt1kFjEsRbwoB8IKiQ==",
|
||||
"version": "3.0.3",
|
||||
"resolved": "https://registry.npmjs.org/@astrojs/sitemap/-/sitemap-3.0.3.tgz",
|
||||
"integrity": "sha512-+GRKp1yho9dpHBcMcU6JpbL41k0yYZghOkNsMRb8QIRflbGHvd787tdv9oIZ5NJj0SqAuOlqp2UpqLkJXuAe2A==",
|
||||
"dependencies": {
|
||||
"sitemap": "^7.1.1",
|
||||
"zod": "3.21.1"
|
||||
"zod": "^3.22.4"
|
||||
}
|
||||
},
|
||||
"node_modules/@astrojs/tailwind": {
|
||||
|
@ -1344,9 +1344,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/astro": {
|
||||
"version": "3.4.0",
|
||||
"resolved": "https://registry.npmjs.org/astro/-/astro-3.4.0.tgz",
|
||||
"integrity": "sha512-nTOFxrPOnmACl8noTPkRJkaEOMx4wZy4QCLB2aDL3Lm+AiEaVcgH7YQ4GpCl72zSNXp/A7hGdUgcXbC4XYHOCQ==",
|
||||
"version": "3.4.4",
|
||||
"resolved": "https://registry.npmjs.org/astro/-/astro-3.4.4.tgz",
|
||||
"integrity": "sha512-Xyhif8RtKpNLo/TXN0Klxt0uq/2xNzbJ1tZ2udn/QguT9a6iGeO+N1iRSU5a4FrZNKb5jyg7koLpwfEVJjj7cw==",
|
||||
"dependencies": {
|
||||
"@astrojs/compiler": "^2.1.0",
|
||||
"@astrojs/internal-helpers": "0.2.1",
|
||||
|
@ -1382,6 +1382,7 @@
|
|||
"js-yaml": "^4.1.0",
|
||||
"kleur": "^4.1.4",
|
||||
"magic-string": "^0.30.3",
|
||||
"mdast-util-to-hast": "12.3.0",
|
||||
"mime": "^3.0.0",
|
||||
"ora": "^7.0.1",
|
||||
"p-limit": "^4.0.0",
|
||||
|
@ -1404,7 +1405,7 @@
|
|||
"vitefu": "^0.2.4",
|
||||
"which-pm": "^2.1.1",
|
||||
"yargs-parser": "^21.1.1",
|
||||
"zod": "3.21.1"
|
||||
"zod": "^3.22.4"
|
||||
},
|
||||
"bin": {
|
||||
"astro": "astro.js"
|
||||
|
@ -7709,9 +7710,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/zod": {
|
||||
"version": "3.21.1",
|
||||
"resolved": "https://registry.npmjs.org/zod/-/zod-3.21.1.tgz",
|
||||
"integrity": "sha512-+dTu2m6gmCbO9Ahm4ZBDapx2O6ZY9QSPXst2WXjcznPMwf2YNpn3RevLx4KkZp1OPW/ouFcoBtBzFz/LeY69oA==",
|
||||
"version": "3.22.4",
|
||||
"resolved": "https://registry.npmjs.org/zod/-/zod-3.22.4.tgz",
|
||||
"integrity": "sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==",
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/colinhacks"
|
||||
}
|
||||
|
|
|
@ -12,14 +12,14 @@ import Exec from "./Exec.astro";
|
|||
gh="zoeelen"
|
||||
img="zoe.png"
|
||||
>
|
||||
lorem
|
||||
|
||||
</Exec>
|
||||
|
||||
<Exec
|
||||
title="Secretary"
|
||||
name="Will"
|
||||
pronouns="he"
|
||||
gh=""
|
||||
gh="WilliamShepherdson"
|
||||
img="will.png"
|
||||
>
|
||||
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"
|
||||
img="aren.png"
|
||||
>
|
||||
lorem
|
||||
|
||||
</Exec>
|
||||
|
||||
<Exec
|
||||
|
|
|
@ -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">
|
||||
<img src={props.icon} alt={props.text}/>
|
||||
</div>
|
||||
<div class="social-button-span">
|
||||
<span>{props.text}</span>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
|
Loading…
Reference in New Issue