refactor(footer): mark links with underline

This commit is contained in:
Konstantin Zhigaylo 2025-06-26 10:47:51 +03:00
parent cf3ec34dce
commit c52e971b36
No known key found for this signature in database
GPG Key ID: DD1C2780F0E05B5C
2 changed files with 23 additions and 23 deletions

View File

@ -8,13 +8,6 @@ import InlineCode from "@/components/blocks/InlineCode";
export default function Projects() {
const clients: ProjectProps[] = [
{
name: "Tower",
authorId: "kostya-zero",
projectGit: "https://github.com/kostya-zero/tower",
description: "A modern desktop client for RAC protocol built with Tauri.",
tags: ["Unreleased", "WRAC", "RAC", "v2", "TLS"],
},
{
name: "bRAC",
authorId: "MeexReay",
@ -23,13 +16,11 @@ export default function Projects() {
tags: ["Active", "WRAC", "RAC", "v2", "TLS"],
},
{
name: "clRAC",
externalDownload: true,
authorId: "sugoma",
externalLink: "https://wdfiles.ru/Ofx7",
projectGit: "",
description: "The official RAC client.",
tags: ["Unknown", "RAC", "v2"],
name: "cRACk",
authorId: "pansangg",
projectGit: "https://github.com/pansangg/cRACk",
description: "TUI RAC client on Python.",
tags: ["Active", "RAC", "v2"],
},
{
name: "Mefedroniy",
@ -38,6 +29,13 @@ export default function Projects() {
description: "TUI client for Real Address Chat protocol. ",
tags: ["Active", "RAC", "v1.99.2"],
},
{
name: "Tower",
authorId: "kostya-zero",
projectGit: "https://github.com/kostya-zero/tower",
description: "A modern desktop client for RAC protocol built with Tauri.",
tags: ["Unreleased", "WRAC", "RAC", "v2", "TLS"],
},
{
name: "Snowdrop",
authorId: "Forbirdden",
@ -50,14 +48,16 @@ export default function Projects() {
authorId: "pansangg",
projectGit: "https://github.com/pansangg/oWRAC",
description: "An online WRAC client (works in web)",
tags: ["Unreleased", "WRAC", "v2"]
tags: ["Unreleased", "WRAC", "v2"],
},
{
name: "cRACk",
authorId: "pansangg",
projectGit: "https://github.com/pansangg/cRACk",
description: "TUI RAC client on Python.",
tags: ["Active", "RAC", "v2"],
name: "clRAC",
externalDownload: true,
authorId: "sugoma",
externalLink: "https://wdfiles.ru/Ofx7",
projectGit: "",
description: "The official RAC client.",
tags: ["Unknown", "RAC", "v2"],
},
{
name: "CRAB",
@ -161,7 +161,7 @@ export default function Projects() {
key={server.name}
name={server.name}
externalDownload={server.externalDownload}
externalLink={server.externalLink}
externalLink={server.externalLink}
authorId={server.authorId}
projectGit={server.projectGit}
description={server.description}

View File

@ -5,7 +5,7 @@ export default function Footer() {
<footer className="flex flex-col md:flex-row justify-between items-center mb-[15px] text-sm">
<Link
href="https://kostyazero.com"
className="ml-1 text-stone-500 hover:text-stone-50 transition duration-200"
className="ml-1 text-stone-500 underline underline-offset-3 hover:text-stone-50 transition duration-200"
>
© 2025 Konstantin Zhigaylo
</Link>
@ -13,7 +13,7 @@ export default function Footer() {
<p>The source code is available on</p>
<Link
href="https://github.com/kostya-zero/racinfo"
className="ml-1 text-stone-500 hover:text-stone-50 transition duration-200"
className="ml-1 underline underline-offset-3 text-stone-500 hover:text-stone-50 transition duration-200"
>
{" "}
GitHub