Skip to content

Commit

Permalink
web: Init first version with downloading snapshots, closes #1
Browse files Browse the repository at this point in the history
Signed-off-by: Mikhail Petrov <[email protected]>
  • Loading branch information
mike-petrov committed Jan 16, 2025
1 parent ed86d2b commit 6444fce
Show file tree
Hide file tree
Showing 18 changed files with 1,252 additions and 0 deletions.
41 changes: 41 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"name": "archive-fs-neo-org",
"version": "0.0.1",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@types/react": "^18.2.41",
"@types/react-dom": "^18.2.17",
"bulma": "^0.9.4",
"react": "^17.0.2",
"react-bulma-components": "^4.1.0",
"react-dom": "^17.0.2",
"react-router-dom": "^6.10.0"
},
"scripts": {
"start": "REACT_APP_VERSION=$(make version) GENERATE_SOURCEMAP=false react-scripts start",
"build": "GENERATE_SOURCEMAP=false BUILD_PATH='./archive.fs.neo.org' react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"devDependencies": {
"dotenv": "^16.0.3",
"react-scripts": "^5.0.1",
"typescript": "^4.9.5"
}
}
1 change: 1 addition & 0 deletions public/img/close.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/favicon.ico
Binary file not shown.
103 changes: 103 additions & 0 deletions public/img/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/img/socials/github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions public/img/socials/medium.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
64 changes: 64 additions & 0 deletions public/img/socials/neo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
108 changes: 108 additions & 0 deletions public/img/socials/neo_spcc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/img/socials/twitter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/img/socials/youtube.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">

<head>
<title>Archive.NeoFS</title>
<meta charset='utf-8'>
<link rel="icon" href="%PUBLIC_URL%/img/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="title" content="Archive.NeoFS – Download Blockchain Data Snapshot">
<meta name="description" content="Download an offline package of the blockchain data up to a certain block height">
<meta property="og:url" content="https://archive.fs.neo.org">
<meta property="og:title" content="Archive.NeoFS – Download Blockchain Data Snapshot">
<meta property="og:description" content="Download an offline package of the blockchain data up to a certain block height">
<meta property="og:type" content="website">
<meta property="og:image" content="/img/cover.png">
<meta name="theme-color" content="#29363b" />
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; script-src 'self'; connect-src 'self' https://archive.fs.neo.org https://rest.fs.neo.org https://rest.t5.fs.neo.org https://rpc1.morph.fs.neo.org:40341 https://rpc1.morph.t5.fs.neo.org:51331; style-src 'unsafe-inline' 'self' https://fonts.googleapis.com; font-src https://fonts.gstatic.com; img-src 'self'; form-action 'self'; base-uri 'self';">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;800&display=swap" rel="stylesheet">
</head>

<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>

</html>
Loading

0 comments on commit 6444fce

Please sign in to comment.