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() { export default function Projects() {
const clients: ProjectProps[] = [ 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", name: "bRAC",
authorId: "MeexReay", authorId: "MeexReay",
@ -23,13 +16,11 @@ export default function Projects() {
tags: ["Active", "WRAC", "RAC", "v2", "TLS"], tags: ["Active", "WRAC", "RAC", "v2", "TLS"],
}, },
{ {
name: "clRAC", name: "cRACk",
externalDownload: true, authorId: "pansangg",
authorId: "sugoma", projectGit: "https://github.com/pansangg/cRACk",
externalLink: "https://wdfiles.ru/Ofx7", description: "TUI RAC client on Python.",
projectGit: "", tags: ["Active", "RAC", "v2"],
description: "The official RAC client.",
tags: ["Unknown", "RAC", "v2"],
}, },
{ {
name: "Mefedroniy", name: "Mefedroniy",
@ -38,6 +29,13 @@ export default function Projects() {
description: "TUI client for Real Address Chat protocol. ", description: "TUI client for Real Address Chat protocol. ",
tags: ["Active", "RAC", "v1.99.2"], 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", name: "Snowdrop",
authorId: "Forbirdden", authorId: "Forbirdden",
@ -50,14 +48,16 @@ export default function Projects() {
authorId: "pansangg", authorId: "pansangg",
projectGit: "https://github.com/pansangg/oWRAC", projectGit: "https://github.com/pansangg/oWRAC",
description: "An online WRAC client (works in web)", description: "An online WRAC client (works in web)",
tags: ["Unreleased", "WRAC", "v2"] tags: ["Unreleased", "WRAC", "v2"],
}, },
{ {
name: "cRACk", name: "clRAC",
authorId: "pansangg", externalDownload: true,
projectGit: "https://github.com/pansangg/cRACk", authorId: "sugoma",
description: "TUI RAC client on Python.", externalLink: "https://wdfiles.ru/Ofx7",
tags: ["Active", "RAC", "v2"], projectGit: "",
description: "The official RAC client.",
tags: ["Unknown", "RAC", "v2"],
}, },
{ {
name: "CRAB", name: "CRAB",
@ -161,7 +161,7 @@ export default function Projects() {
key={server.name} key={server.name}
name={server.name} name={server.name}
externalDownload={server.externalDownload} externalDownload={server.externalDownload}
externalLink={server.externalLink} externalLink={server.externalLink}
authorId={server.authorId} authorId={server.authorId}
projectGit={server.projectGit} projectGit={server.projectGit}
description={server.description} 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"> <footer className="flex flex-col md:flex-row justify-between items-center mb-[15px] text-sm">
<Link <Link
href="https://kostyazero.com" 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 © 2025 Konstantin Zhigaylo
</Link> </Link>
@ -13,7 +13,7 @@ export default function Footer() {
<p>The source code is available on</p> <p>The source code is available on</p>
<Link <Link
href="https://github.com/kostya-zero/racinfo" 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 GitHub