Skip to content

Commit 30e6101

Browse files
committed
fix: フッターのスタイルを修正
1 parent 7a2fb19 commit 30e6101

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

website/src/components/ui/common/Footer.tsx

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,32 @@ export const Footer = () => {
1313
<div class="prose max-w-screen-xl px-4 py-12 mx-auto space-y-8 overflow-hidden sm:px-6 lg:px-8">
1414
<div class="flex justify-center mt-8 space-x-6">
1515
<a
16-
href={githubRepositoryUrl}
17-
class="text-gray-400 hover:text-gray-500"
16+
href={discordServerUrl}
17+
class="text-gray-600 hover:text-gray-800 transition-colors"
1818
>
19-
<span class="sr-only">GitHub</span>
19+
<span class="sr-only">Discord</span>
2020
<div class="w-6 h-6">
21-
<GitHubIcon />
21+
<DiscordIcon />
2222
</div>
2323
</a>
2424
<a
25-
href={discordServerUrl}
26-
class="text-gray-400 hover:text-gray-500"
25+
href={githubRepositoryUrl}
26+
class="text-gray-600 hover:text-gray-800 transition-colors"
2727
>
28-
<span class="sr-only">Discord</span>
28+
<span class="sr-only">GitHub</span>
2929
<div class="w-6 h-6">
30-
<DiscordIcon />
30+
<GitHubIcon />
3131
</div>
3232
</a>
3333
</div>
34-
<p class="mt-8 text-base leading-6 text-center text-gray-400">
34+
<p class="mt-8 text-sm leading-6 text-center text-gray-600">
3535
Translated by{" "}
36-
<a href={githubOrganizationUrl}>Typst Japan Community</a>
36+
<a
37+
href={githubOrganizationUrl}
38+
class="text-gray-600 hover:text-gray-800 transition-colors"
39+
>
40+
Typst Japan Community
41+
</a>
3742
</p>
3843
</div>
3944
</section>

0 commit comments

Comments
 (0)