We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3827706 commit 4831a82Copy full SHA for 4831a82
src/components/Footer/FooterSection.astro
@@ -15,8 +15,8 @@ const { title, links } = Astro.props;
15
<a
16
href={link.to}
17
class="hover:underline"
18
- target="_blank"
19
- rel="noreferrer"
+ target={link.to.startsWith("/") ? "" : "_blank"}
+ rel={link.to.startsWith("/") ? "" : "noreferrer"}
20
>
21
{link.title}
22
</a>
src/pages/index.astro
@@ -36,7 +36,7 @@ const articles = (await getCollection("articles"))
36
37
<div style={{ gridArea: "2 / 1" }}>
38
<Image
39
- alt="活動の様子"
+ alt=""
40
class="w-full h-full object-cover"
41
width="1920"
42
height="1080"
0 commit comments