import "./index.css"; import { useC } from "~src/components/common"; import Page from "~src/components/Page"; interface Credit { name: string; url: string; } type Credits = Credit[]; const frontendCredits: Credits = [ { name: "react.js", url: "https://reactjs.org", }, { name: "typescript", url: "https://www.typescriptlang.org", }, { name: "bootstrap", url: "https://getbootstrap.com", }, { name: "parcel.js", url: "https://parceljs.org", }, { name: "eslint", url: "https://eslint.org", }, { name: "prettier", url: "https://prettier.io", }, ]; const backendCredits: Credits = [ { 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", }, ]; export default function AboutPage() { const c = useC(); return (

{c("about.credits.title")}

{c("about.credits.content")}

{c("about.credits.frontend")}

{c("about.credits.backend")}

); }