import { Box, Card, CardContent, Typography, Link, Button, Avatar, Stack } from "@mui/material";
import GitHubIcon from "@mui/icons-material/GitHub";
import GetAppIcon from "@mui/icons-material/GetApp";
const WIREGUARD_COLOR = "#88171A";
function WireGuardLogo({ size = 40 }: { size?: number }) {
return (
);
}
export default function About() {
const repo = "https://github.com/cochrane2063/MSBD5017-Depin-WebClient";
const wireguard = "https://www.wireguard.com/install/";
return (
Depin Web Client
Web client for the MSBD5017 Depin project.
In case the website is down, you can run your own local instance by following the instructions in the GitHub repository.
} variant="outlined">
Open GitHub Repository
Download Wireguard Client
Wireguard client for the MSBD5017 Depin project.
This project uses the Wireguard VPN protocol. You can download the Wireguard client from the official website.
}
variant="contained"
sx={{
bgcolor: WIREGUARD_COLOR,
"&:hover": { bgcolor: "#65a836" },
}}
>
Download WireGuard
);
}