const React = require("react"); const CompLibrary = require("../../core/CompLibrary"); const Container = CompLibrary.Container; const CWD = process.cwd(); const versions = require(`${CWD}/versions.json`); function Downloads(props) { const {config: siteConfig} = props; const latestVersion = versions[0]; const releaseUrl = `https://github.com/${siteConfig.organizationName}/${siteConfig.projectName}/releases`; return (

{siteConfig.title} downloads

New versions of this project are released every so often.

Current version

{latestVersion} Release Scaladoc
bitcoin-s-server-{latestVersion}.dmg
bitcoin-s-server-{latestVersion}.zip
bitcoin-s-server-amd64.deb
bitcoin-s-server.msi
SHA256SUMS.asc
); } module.exports = Downloads;