Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10,246 changes: 6,347 additions & 3,899 deletions package-lock.json

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,33 +5,33 @@
"version": "0.1.0",
"author": "Keijo Korhonen <kkorhonen@telia.com>",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-regular-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"gatsby": "^5.12.3",
"gatsby-plugin-image": "^3.12.0",
"gatsby-plugin-manifest": "^5.12.0",
"gatsby-plugin-offline": "^6.12.0",
"gatsby-plugin-react-helmet": "^6.12.0",
"gatsby-plugin-sharp": "^5.12.0",
"gatsby-plugin-styled-components": "^6.12.0",
"gatsby-plugin-typography": "^5.12.0",
"gatsby-source-filesystem": "^5.12.0",
"gatsby-transformer-sharp": "^5.12.0",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.6",
"gatsby": "^5.16.1",
"gatsby-plugin-image": "^3.16.0",
"gatsby-plugin-manifest": "^5.16.0",
"gatsby-plugin-offline": "^6.16.0",
"gatsby-plugin-react-helmet": "^6.16.0",
"gatsby-plugin-sharp": "^5.16.0",
"gatsby-plugin-styled-components": "^6.16.0",
"gatsby-plugin-typography": "^5.16.0",
"gatsby-source-filesystem": "^5.16.0",
"gatsby-transformer-sharp": "^5.16.0",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-typography": "^0.16.23",
"styled-components": "^6.0.7",
"styled-components": "^6.3.11",
"typeface-oswald": "^1.1.13",
"typeface-source-sans-pro": "^1.1.13",
"typography": "^0.16.24"
},
"devDependencies": {
"prettier": "^3.0.3"
"prettier": "^3.8.1"
},
"keywords": [
"controlsystemstudio",
Expand Down
10 changes: 0 additions & 10 deletions src/components/SiteSpecificVersions.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,6 @@ const StyledDownloadButton = styled.a`
const SiteSpecificVersions = () => {
return (
<Grid>
<Site>
<h3>DESY</h3>
<StyledDownloadButton
href="http://css.desy.de/content/e413/e2767/index_eng.html"
target="_blank"
rel="noopener noreferrer"
>
CSS DESY KRYO <FontAwesomeIcon icon={faExternalLinkAlt} />
</StyledDownloadButton>
</Site>
<Site>
<h3>ESS</h3>
<StyledDownloadButton
Expand Down
36 changes: 36 additions & 0 deletions src/components/UpcomingEvents.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
import React from "react"
import styled from "styled-components"

const UpcomingEvents = () => {
return (
<ul>
<li>
<a href="https://indico.in2p3.fr/event/37441/"
target="_blank"
rel="noopener noreferrer"
>20-24 April 2026 </a>
EPICS Collaboration Meeting hosted by
<a href="https://irfu.cea.fr/en/index.php"
target="_blank"
rel="noopener noreferrer"
> CEA Irfu </a>
in Saclay (near Paris), France
</li>

<li>
<a href="https://github.com/epics-base/epics-base/wiki/2026-EPICS-Codeathon-and-Documentathon-hosted-by-Diamond"
target="_blank"
rel="noopener noreferrer"
>23-27 February 2026 </a>
EPICS CCodeathon hosted by
<a href="https://www.diamond.ac.uk/"
target="_blank"
rel="noopener noreferrer"
> Diamond Light Source </a>
Harwell Campus, Oxfordshire, England
</li>
</ul>
)
}

export default UpcomingEvents
Loading