This repository has been archived by the owner on Jun 13, 2022. It is now read-only.
forked from Future-Made/future-made-homepage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add collaborators/members and update content
- Loading branch information
Showing
9 changed files
with
16,532 additions
and
41 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,38 +1,121 @@ | ||
import { lazy } from "react"; | ||
import React, { Component } from 'react' | ||
import { CollaboratorsList } from 'react-component-collaborators' | ||
import { CardComplete } from 'react-component-collaborators' | ||
import { CardMinimal } from 'react-component-collaborators' | ||
|
||
import IntroContent from "../../content/IntroContent.json"; | ||
import AboutContent from "../../content/AboutContent.json"; | ||
const Members = () => { | ||
|
||
let listStyleObject = { | ||
listWidth: '1200px', | ||
listHeight: '600px', | ||
direction: 'vertical', | ||
listBackgroundColor: '#000' | ||
} | ||
|
||
const ContentBlock = lazy(() => import("../../components/ContentBlock")); | ||
const Container = lazy(() => import("../../common/Container")); | ||
const ScrollToTop = lazy(() => import("../../common/ScrollToTop")); | ||
const borderImage = { | ||
width: '4px', | ||
style: 'solid', | ||
color: '#800e34' | ||
} | ||
const borderCard = { | ||
width: '4px', | ||
style: 'solid', | ||
color: '#800e34' | ||
} | ||
|
||
const Home = () => { | ||
let cardStyleObject = { | ||
cardWidth: '280px', | ||
cardHeight: '140px', | ||
cardBackgroundColor: '#e17e23', | ||
textAlign: 'center', | ||
imageFormat: 'circle', | ||
borderImage: borderImage, | ||
borderCard: borderCard, | ||
titleColor: '#000', | ||
descriptionColor: '#000', | ||
imageWidth: '100px', | ||
imageHeight: '100px', | ||
fontSizeTitle: '100%', | ||
paddingTitle: '0px 0px 20px 0px', | ||
marginTitle: '0px 0px 0px 0px', | ||
fontSizeDescription: '80%', | ||
paddingDescription: '0px 0px 0px 0px', | ||
marginDescription: '0px 0px 0px 0px' | ||
} | ||
|
||
let imagePosition = "left" | ||
let collaboratorsArray = [ | ||
{ | ||
image: | ||
'https://offsetmovement.org/FutureMade_files/collaborators/tolgay.jpg', | ||
title: 'Abbas Tolgay Yilmaz', | ||
description: 'Software Engineer, Visual Artist, Game Theorist' | ||
}, | ||
{ | ||
image: | ||
'https://offsetmovement.org/FutureMade_files/collaborators/zari.png', | ||
title: 'Zari Harat', | ||
description: 'Painter, traveler, healer, teacher, creative coach' | ||
}, | ||
{ | ||
image: | ||
'https://offsetmovement.org/FutureMade_files/collaborators/tanja.jpeg', | ||
title: 'Tanja Taechanurug', | ||
description: 'Designer, Illustrator' | ||
}, { | ||
image: | ||
'https://offsetmovement.org/FutureMade_files/collaborators/mikey.jpg', | ||
title: 'Mikey Goodfire', | ||
description: 'Musician, Traveler' | ||
}, | ||
{ | ||
image: | ||
'https://offsetmovement.org/FutureMade_files/collaborators/tina.png', | ||
title: 'Tina Marquardt', | ||
description: 'blockchain & distributed governance researcher, entrepreneur' | ||
}, | ||
{ | ||
image: | ||
'https://offsetmovement.org/FutureMade_files/collaborators/vasilis.png', | ||
title: 'Vasilis Spilka', | ||
description: 'Software Architect' | ||
}, | ||
{ | ||
image: | ||
'https://i.imgur.com/PmFMNdc.png', | ||
title: 'Sharon Lomanno', | ||
description: 'Art Director, Scientist, Photographer, Videographer' | ||
}, | ||
{ | ||
image: | ||
'https://i.imgur.com/YSVq4C1.png', | ||
title: 'Sabrina De Mitri', | ||
description: 'Musician' | ||
}, | ||
{ | ||
image: | ||
'https://i.imgur.com/ZUwnvHZ.png', | ||
title: 'Jannik Bessert', | ||
description: 'Audio Engineer' | ||
}, | ||
{ | ||
image: | ||
'https://i.imgur.com/EgM5oOq.png', | ||
title: 'Emin Araç', | ||
description: 'Photographer, Traveler' | ||
} | ||
] | ||
return ( | ||
<Container> | ||
<ScrollToTop /> | ||
<ContentBlock | ||
type="right" | ||
first="true" | ||
title={IntroContent.title} | ||
content={IntroContent.text} | ||
button={IntroContent.button} | ||
icon="developer.svg" | ||
id="intro" | ||
/> | ||
|
||
<ContentBlock | ||
type="left" | ||
title={AboutContent.title} | ||
content={AboutContent.text} | ||
section={AboutContent.section} | ||
icon="graphs.svg" | ||
id="collaborators" | ||
/> | ||
|
||
</Container> | ||
<CollaboratorsList | ||
collaboratorsArray={collaboratorsArray} | ||
listStyleObject={listStyleObject} | ||
> | ||
<CardComplete | ||
cardStyleObject={cardStyleObject} | ||
imagePosition={imagePosition} | ||
/> | ||
</CollaboratorsList> | ||
); | ||
}; | ||
|
||
export default Home; | ||
export default Members; |
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