Rebuild the site on the stack the other converted sites share: Vite 8, React 19, TypeScript 7, react-router 8, Biome and sanitize.css, with the site data moved out of the bundle into static-contents/. - base the database and pico code on the other converted sites, keeping this site's layout, pages and item fields - read file timestamps as Unix seconds in the file and license views - serve all module data from modules/, redirecting the old download and /database/file URLs - keep form controls on white - track page views with GA4
56 lines
2.8 KiB
TypeScript
56 lines
2.8 KiB
TypeScript
import { Helmet } from '@dr.pogodin/react-helmet';
|
|
import NoticeSiteHasBeenArchived from '../common/lib/NoticeSiteHasBeenArchived';
|
|
import Config, { type MultiLang } from '../config';
|
|
import imageOpenAccess from './assets/images/open-access.png';
|
|
|
|
interface Props {
|
|
lang: MultiLang;
|
|
}
|
|
|
|
const Welcome = (props: Props) => {
|
|
const { lang } = props;
|
|
return (
|
|
<div className="welcome">
|
|
<Helmet>
|
|
<title>
|
|
{Config.SITE_TITLE} - {Config.SITE_SLOGAN}
|
|
</title>
|
|
</Helmet>
|
|
<h1>Welcome</h1>
|
|
<NoticeSiteHasBeenArchived lang={lang} />
|
|
<div className="open-access">
|
|
<img src={imageOpenAccess} alt="Open Access !" />
|
|
</div>
|
|
<p>
|
|
Welcome to J-Node <strong>OpenNeuro</strong> repository!
|
|
</p>
|
|
<p>
|
|
The INCF Japan Node platform <strong>OpenNeuro</strong> repository provides a reliable opportunity for
|
|
researchers in the field of experimental and computational neuroscience to share supplemental materials
|
|
to their peer-reviewed publications in academic journals and conference proceedings that are available
|
|
in the public domain. It aims at playing a core role for promoting and accelerating neuroscience. Toward
|
|
this end, we encourage databasing of
|
|
</p>
|
|
<ul>
|
|
<li>complete sets of experimental image and/or time-series data,</li>
|
|
<li>audiovisual materials,</li>
|
|
<li>computational models,</li>
|
|
</ul>
|
|
<p>
|
|
which have been described and/or analyzed in the publications, in particular if they are too large in
|
|
size and/or too complicated to make them public as usual supplemental-material-mechanisms provided by
|
|
academic journals, or if the authors wish to retain unique services of INCF Japan Node and J-Node{' '}
|
|
<strong>OpenNeuro</strong> repository such as real-time cloud computing services for the data registered
|
|
in J-Node <strong>OpenNeuro</strong> repository. Each of those materials may be provided by standardized
|
|
human/machine readable formats, such as model description languages, commonly utilized program source
|
|
codes and/or executable/machine-readable binary codes. J-Node <strong>OpenNeuro</strong> repository will
|
|
welcome those materials prior to publication to guarantee data accessibility, which will be accessible
|
|
only for limited number of peer-reviewers during review process and then opened in the public domain
|
|
immediately after publication.
|
|
</p>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Welcome;
|