import React from "react";
import { useTranslation, Trans } from "react-i18next";
import AppBar from "../common/AppBar";
import authorAvatarUrl from "./author-avatar.png";
import githubLogoUrl from "./github.png";
const frontendCredits: {
name: string;
url: string;
}[] = [
{
name: "reactjs",
url: "https://reactjs.org",
},
{
name: "typescript",
url: "https://www.typescriptlang.org",
},
{
name: "bootstrap",
url: "https://getbootstrap.com",
},
{
name: "reactstrap",
url: "https://reactstrap.github.io",
},
{
name: "babeljs",
url: "https://babeljs.io",
},
{
name: "webpack",
url: "https://webpack.js.org",
},
{
name: "sass",
url: "https://sass-lang.com",
},
{
name: "eslint",
url: "https://eslint.org",
},
{
name: "prettier",
url: "https://prettier.io",
},
{
name: "pepjs",
url: "https://github.com/jquery/PEP",
},
{
name: "react-inlinesvg",
url: "https://github.com/gilbarbara/react-inlinesvg",
},
];
const backendCredits: {
name: string;
url: string;
}[] = [
{
name: "ASP.NET Core",
url: "https://dotnet.microsoft.com/learn/aspnet/what-is-aspnet-core",
},
{ name: "sqlite", url: "https://sqlite.org" },
{
name: "ImageSharp",
url: "https://github.com/SixLabors/ImageSharp",
},
];
const About: React.FC = () => {
const { t } = useTranslation();
return (
<>
{t("about.credits.content")}
{t("about.credits.frontend")}
{t("about.credits.backend")}