-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
72 changed files
with
10,145 additions
and
519 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,8 @@ authors: | |
email: [email protected] | ||
--- | ||
|
||
import RenderImage from './RenderImage' | ||
|
||
![eclipse tractus x logo](@site/static/img/Eclipse-TractusX-CommunityDays_Event2.png) | ||
|
||
Dear Tractus-X-Community, dear All, | ||
|
@@ -27,8 +29,7 @@ At this networking and coding event at ARENA2036, we offer you the opportunity t | |
### What awaits you | ||
The agenda includes short keynote speeches with highly interesting technical insights, deep dives for a practical introduction to open-source programming topics and IT tools (our Open-Source Tractus-X KITs) and, above all, workshops in which you can become active and code yourself. You can bring your own challenges (please coordinate with us beforehand). At the evening event on the first day you can network, talk shop, code until late into the night - and of course just have fun. | ||
|
||
![eclipse tractus x logo](@site/static/img/Eclipse_CommunityDay1.png) | ||
![eclipse tractus x logo](@site/static/img/Eclipse_CommunityDay2.png) | ||
<RenderImage /> | ||
|
||
|
||
### Who meets here | ||
|
@@ -40,7 +41,8 @@ The agenda includes short keynote speeches with highly interesting technical ins | |
You belong to one of the above, then you are exactly right here. With the support of experts and in exchange with like-minded people, you can actively test the possibilities of Tractus-X and the Catena-X KITs. But of course, other technology-loving participants with an interest in sovereign data exchange are also welcomed. | ||
|
||
### How you can participate | ||
If you would like to join, please register for free via Eventbrite [LINK]. The number of places is limited, so it is worth being quick! | ||
If you would like to join, please register for free via Eventbrite: | ||
[Tractus-X Community Days registration](https://www.eventbrite.com/e/first-eclipse-tractus-x-community-days-tickets-721974885317?aff=oddtdtcreator). The number of places is limited, so it is worth being quick! | ||
|
||
### Contact | ||
If you have any questions about the event, please contact [email protected]. | ||
|
@@ -52,6 +54,3 @@ Your Tractus-X Team** | |
This is an Eclipse Tractus-X event, which takes place within the framework of the Catena-X Automotive Network consortium project (funding code: 13IK004*) and the Catena-X Automotive Network e.V.. ARENA2036 will host the event on its premises and contribute its data space activities (ARENA-X). | ||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/********************************************************************************* | ||
* Copyright (c) 2023 BMW Group AG | ||
* Copyright (c) 2023 Mercedes Benz AG | ||
* Copyright (c) 2023 Contributors to the Eclipse Foundation | ||
* | ||
* See the NOTICE file(s) distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Apache License, Version 2.0 which is available at | ||
* https://www.apache.org/licenses/LICENSE-2.0. | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations | ||
* under the License. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
********************************************************************************/ | ||
|
||
import React, { useState } from "react"; | ||
import Image1 from "@site/static/img/Eclipse_CommunityDay1.png"; | ||
import Image2 from "@site/static/img/Eclipse_CommunityDay2.png"; | ||
import styles from "./styles.module.css"; | ||
import Dialog from '@mui/material/Dialog'; | ||
import CloseIcon from '@mui/icons-material/Close'; | ||
|
||
export default function RenderImage() { | ||
const [image, setImage] = useState(null) | ||
const [open, setOpen] = useState(false) | ||
const handleClose = () => setOpen(false) | ||
return ( | ||
<div> | ||
<div onClick={() => { | ||
setImage(Image1) | ||
setOpen(true) | ||
}}> | ||
<img className={styles.img} src={Image1}/> | ||
</div> | ||
<div onClick={() => { | ||
setOpen(true) | ||
setImage(Image2) | ||
}}> | ||
<img className={styles.img} src={Image2}/> | ||
</div> | ||
{image && ( | ||
<Dialog sx={{ | ||
'.MuiDialog-paper': { | ||
background: 'rgba(1,1,1,0.5)' | ||
} | ||
}} fullScreen onClose={handleClose} open={open}> | ||
<div className={styles.closeIcon} | ||
onClick={handleClose} | ||
> | ||
<CloseIcon /> | ||
</div> | ||
<img className={styles.fullwidthImage} src={image}/> | ||
</Dialog> | ||
)} | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
.img { | ||
width: auto; | ||
height: auto; | ||
} | ||
|
||
.fullwidthImage { | ||
width: 75%; | ||
height: auto; | ||
margin: auto; | ||
margin-top: 50px; | ||
} | ||
|
||
.closeIcon { | ||
position: fixed; | ||
right: 20px; | ||
color: white; | ||
top: 50px; | ||
cursor: pointer; | ||
} | ||
|
||
@media screen and (max-width: 996px) { | ||
.fullwidthImage { | ||
width: 100%; | ||
height: auto; | ||
margin: auto; | ||
margin-top: 0px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.