Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Bielefeld-CeBiTec
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
2024 Competition
Bielefeld-CeBiTec
Commits
296f3955
Commit
296f3955
authored
5 months ago
by
Liliana Sanfilippo
Browse files
Options
Downloads
Patches
Plain Diff
kaya
parent
a9a22a27
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/App/App.css
+1
-1
1 addition, 1 deletion
src/App/App.css
src/components/BFH-Timeline.tsx
+4
-7
4 additions, 7 deletions
src/components/BFH-Timeline.tsx
src/data/hptimelinedata.tsx
+26
-2
26 additions, 2 deletions
src/data/hptimelinedata.tsx
with
31 additions
and
10 deletions
src/App/App.css
+
1
−
1
View file @
296f3955
...
...
@@ -75,7 +75,7 @@ html{
}
.scrolllink
span
{
color
:
var
(
--
b
ac
kground
)
!important
;
color
:
var
(
--ac
cen-secondary
)
!important
;
}
.small-row
{
...
...
This diff is collapsed.
Click to expand it.
src/components/BFH-Timeline.tsx
+
4
−
7
View file @
296f3955
import
{
NoButtTimelineItem
,
PanelTimelineItem
,
TimelineItemPic
,
TimelineItemTwoPic
}
from
"
./VerticalTimeline
"
;
import
SimpleSlider
from
"
./Slider
"
;
import
{
SupScrollLink
}
from
"
./ScrollLink
"
;
import
{
ScrollLink
,
SupScrollLink
}
from
"
./ScrollLink
"
;
export
function
BFHTimeline
()
{
return
(
...
...
@@ -196,10 +196,7 @@ export function BFHTimeline () {
</
div
>
<
span
>
</
span
>
<
div
id
=
"teampres"
style
=
{
{
display
:
"
none
"
}
}
>
So much more
</
div
>
</
span
>
</
NoButtTimelineItem
>
<
NoButtTimelineItem
url
=
"https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"
...
...
@@ -208,8 +205,8 @@ export function BFHTimeline () {
color
=
'var(--accent-primary)'
>
<
h5
>
Poster Exhibition Booth
</
h5
>
[Link virtual exhibition]
<
h5
>
Poster Exhibition Booth
</
h5
>
<
p
>
Visit the
<
ScrollLink
label
=
"Virtual Poster Exhibition"
targetId
=
"BFH European MeetUp4H"
/>
!
</
p
>
<
div
className
=
"col bfh-slider"
>
<
SimpleSlider
>
<
img
className
=
""
src
=
"https://static.igem.wiki/teams/5247/photos/meetup/exhibition/posterexhibition-plasmid-factory.webp"
/>
...
...
This diff is collapsed.
Click to expand it.
src/data/hptimelinedata.tsx
+
26
−
2
View file @
296f3955
...
...
@@ -28,8 +28,32 @@ export interface TimelineDatenpunkt {
references
?:
Array
<
React
.
ReactNode
>
;
/* Muss HTML Code sein - Liliana erstellt den aus Bib dateien */
interview
?:
React
.
ReactNode
;
}
export
interface
TimelineDatenpunktZwei
{
title
?:
string
;
/* Prof. , Dr., ... */
vorname
:
string
;
nachnname
:
string
;
pictureurl
:
string
;
tag
:
StakeholderTag
;
heading
:
string
;
interviewtabid
:
string
;
type
:
TypeTag
;
/* nur falls es ein meta tag ist */
affiliation
?:
string
;
job
?:
string
;
cardtext
:
string
;
language
?:
Language
;
quote
:
string
;
quoteVorname
?:
string
;
/* Wenn die quote nicht von der Person ist über die der Text ist */
quoteNachname
?:
string
;
text
:
Array
<
string
>
|
Array
<
React
.
ReactNode
>
;
pictureurl_interview
?:
string
;
/* Picture that goes into the paragraph "Insights" */
pictureurl_aim
?:
string
;
/* Picture that goes into the paragraph "Aim of contact" */
pictureurl_implementation
?:
string
;
/* Picture that goes into the paragraph "Implementation" */
more_pictures
?:
Array
<
string
>
;
references
?:
Array
<
React
.
ReactNode
>
;
/* Muss HTML Code sein - Liliana erstellt den aus Bib dateien */
interview
?:
React
.
ReactNode
;
}
type
StakeholderTag
=
'
Industry
'
|
'
Academia
'
|
'
Patient
'
|
'
Medical Professional
'
|
'
Milestone
'
|
'
Other
'
;
type
TypeTag
=
'
meta
'
;
type
TypeTag
=
'
meta
'
|
'
kaya
'
;
type
Language
=
'
en
'
|
'
de
'
;
const
pics
:
{
[
key
:
string
]:
string
}
=
{
...
...
@@ -68,7 +92,7 @@ const pics: { [key: string]: string } = {
Fehlende Infos einfach leer lassen und keine Dummy-Texte einfügen!
*/
export
const
timelinedata
:
Array
<
TimelineDatenpunkt
>
=
[
export
const
timelinedata
:
Array
<
TimelineDatenpunkt
>
|
Array
<
TimelineDatenpunktZwei
>
=
[
{
vorname
:
"
Building the team
"
,
nachnname
:
""
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment