import { ProjectCard, ProjectProps } from "@/components/ProjectCard"; import NavBar from "@/components/NavBar"; import Footer from "@/components/Footer"; import Text from "@/components/blocks/Text"; import PageTitle from "@/components/blocks/PageTitle"; import Title from "@/components/blocks/Title"; 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", projectGit: "https://github.com/MeexReay/bRAC", description: "Better RAC client.", 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: "Mefedroniy", authorId: "OctoBanon-Main", projectGit: "https://github.com/OctoBanon-Main/mefedroniy-client", description: "TUI client for Real Address Chat protocol. ", tags: ["Active", "RAC", "v1.99.2"], }, { name: "Snowdrop", authorId: "Forbirdden", projectGit: "https://github.com/Forbirdden/Snowdrop", description: "Coming Soon™", tags: ["Unreleased", "WRAC", "RAC", "v2"], }, { name: "cRACk", authorId: "pansangg", projectGit: "https://github.com/pansangg/cRACk", description: "TUI RAC client on Python.", tags: ["Active", "RAC", "v2"], }, { name: "CRAB", authorId: "pixtated", projectGit: "https://gitea.bedohswe.eu.org/pixtaded/crab", description: "Crimean RAC Bundle ", tags: ["Abandoned", "RAC", "v1.99.2"], }, { name: "dobroho_vechora", authorId: "bedohswe", projectGit: "https://gitea.bedohswe.eu.org/bedohswe/dobroho_vechora", description: "RAC client made with Bash script.", tags: ["Abandoned", "RAC", "v1.0"], }, ]; const servers: ProjectProps[] = [ { name: "sRAC", authorId: "MeexReay", projectGit: "https://github.com/MeexReay/sRAC", description: "Simple RAC server.", tags: ["Active", "WRAC", "RAC", "v2", "TLS"], }, { name: "Gashishnik", authorId: "OctoBanon-Main", projectGit: "https://github.com/OctoBanon-Main/mefedroniy-client", description: "A WRAC server.", tags: ["Unreleased", "WRAC", "v2"], }, { name: "lRACd", authorId: "sugoma", externalDownload: true, externalLink: "https://wdfiles.ru/Obvt", projectGit: "", description: "The official implementation of RAC server.", tags: ["Unknown", "RAC", "v2"], }, { name: "CRAB", authorId: "pixtated", projectGit: "https://gitea.bedohswe.eu.org/pixtaded/crab", description: "Crimean RAC Bundle ", tags: ["Abandoned", "RAC", "v1.99.2"], }, { name: "AlmatyD", authorId: "bedohswe", projectGit: "https://gitea.bedohswe.eu.org/bedohswe/almatyd", description: "Open source server for Sugoma's RAC protocol ", tags: ["Abandoned", "RAC", "v1.0"], }, ]; return (