@@ -262,21 +262,12 @@ const ColoredKw: FC<{ color?: string }> = ({ color = "black", children }) => {
262262const SocietyComponent : FC < { } > = ( ) => {
263263 return (
264264 < Style . SocietyComponent >
265- < Grid container justifyContent = "center" >
266- < Grid item xs = { 12 } >
267- < Grid container justifyContent = "center" style = { { marginBottom : "75px" } } >
268- < Style . ViewTitle big shadow = { false } >
269- / THE SOCIETY .
270- </ Style . ViewTitle >
271- </ Grid >
272- </ Grid >
273- </ Grid >
274- < Grid container justifyContent = "center" spacing = { 10 } >
275- < Grid item xs = { 5 } >
265+ < Style . ViewTitle > / SOCIETY .</ Style . ViewTitle >
266+ { /* <Grid container justifyContent="center" spacing={5}>
267+ <Grid item xs={6}>
276268 <img src={key} style={{ width: "100%" }} alt="" />
277269 </Grid>
278-
279- < Grid item xs = { 7 } alignSelf = "center" >
270+ <Grid item xs={6} alignSelf="center">
280271 <Style.Titlea>/ ssh key .</Style.Titlea>
281272 <Style.View2Content>
282273 When you mint a DRIP, in addition of the latter, you will get an <Sbu>SSH-KEY</Sbu>. It
@@ -303,7 +294,7 @@ const SocietyComponent: FC<{}> = () => {
303294 </Clickable>
304295 </Style.MoreLinkContainer>
305296 </Grid>
306- </ Grid >
297+ </Grid> */ }
307298 </ Style . SocietyComponent >
308299 ) ;
309300} ;
@@ -409,14 +400,20 @@ type propsRoadmap = {
409400 title : string ;
410401 description : any ;
411402 done : boolean ;
412- type ? : string ;
403+ type : string ;
413404 } [ ] ;
414405} ;
415406
416407const RoadmapComponent : FC < propsRoadmap > = ( { roadmapItems } ) => {
417408 return (
418409 < Style . RoadmapComponent >
419- < Style . ViewTitle > / ROADMAP .</ Style . ViewTitle >
410+ < Grid container justifyContent = "center" >
411+ < Grid item xs = { 12 } >
412+ < Grid container justifyContent = "center" style = { { marginBottom : "50px" } } >
413+ < Style . ViewTitle > / ROADMAP .</ Style . ViewTitle >
414+ </ Grid >
415+ </ Grid >
416+ </ Grid >
420417 < Timeline position = "alternate" style = { { padding : "0px" } } >
421418 < TimelineItem style = { { display : "none" } } > </ TimelineItem >
422419 { roadmapItems . map ( ( roadmapItem , index ) => {
@@ -456,11 +453,9 @@ const RoadmapComponent: FC<propsRoadmap> = ({ roadmapItems }) => {
456453 < Style . RoadMapItem >
457454 < Grid container justifyContent = { "space-between" } >
458455 < Style . RoadMapItemTitle > { roadmapItem . title } </ Style . RoadMapItemTitle >
459- { roadmapItem . type && (
460- < div >
461- < Style . RoadMapItemType > { roadmapItem . type } </ Style . RoadMapItemType >
462- </ div >
463- ) }
456+ < div >
457+ < Style . RoadMapItemType > { roadmapItem . type } </ Style . RoadMapItemType >
458+ </ div >
464459 </ Grid >
465460 < Style . RoadMapItemContent > { roadmapItem . description } </ Style . RoadMapItemContent >
466461 </ Style . RoadMapItem >
@@ -470,11 +465,9 @@ const RoadmapComponent: FC<propsRoadmap> = ({ roadmapItems }) => {
470465 < Style . RoadMapItem2 >
471466 < Grid container justifyContent = { "space-between" } >
472467 < Style . RoadMapItemTitle > { roadmapItem . title } </ Style . RoadMapItemTitle >
473- { roadmapItem . type && (
474- < div >
475- < Style . RoadMapItemType > { roadmapItem . type } </ Style . RoadMapItemType >
476- </ div >
477- ) }
468+ < div >
469+ < Style . RoadMapItemType > { roadmapItem . type } </ Style . RoadMapItemType >
470+ </ div >
478471 </ Grid >
479472 < Style . RoadMapItemContent > { roadmapItem . description } </ Style . RoadMapItemContent >
480473 </ Style . RoadMapItem2 >
@@ -540,8 +533,8 @@ const MainComponent: FC<props> = ({ children }) => {
540533 < RoadmapComponent
541534 roadmapItems = { [
542535 {
543- step : "February. 1st. 2022. " ,
544- title : "DROP #1 " ,
536+ title : "SKATEBOARD DECK " ,
537+ step : "August. 1st. 2022. " ,
545538 type : "DROP #1" ,
546539 description : (
547540 < Fragment >
@@ -551,42 +544,18 @@ const MainComponent: FC<props> = ({ children }) => {
551544 ) ,
552545 done : false ,
553546 } ,
554- {
555- step : "February. 28th. 2022." ,
556- title : "Drop #2" ,
557- type : "DROP" ,
558- description : (
559- < Fragment >
560- After several months of work, SSH LABS will release the first of its many more to
561- come DROP.
562- </ Fragment >
563- ) ,
564- done : false ,
565- } ,
566547 {
567548 step : "" ,
568- title : "Drop #3" ,
569- type : "DROP" ,
570- description : (
571- < Fragment >
572- After several months of work, SSH LABS will release the first of its many more to
573- come DROP.
574- </ Fragment >
575- ) ,
549+ title : "TBA." ,
550+ type : "DROP #2" ,
551+ description : < Fragment > ...</ Fragment > ,
576552 done : false ,
577553 } ,
578554 {
579- step : "50%" ,
580- title : "Drop #3" ,
581- type : "EVENT" ,
582- description : < Fragment > Metaverse party with huge annoucement !</ Fragment > ,
583- done : false ,
584- } ,
585- {
586- step : "100%" ,
587- title : "Drop #3" ,
588- type : "EVENT" ,
589- description : < Fragment > Secret ...</ Fragment > ,
555+ step : "" ,
556+ title : "TBA." ,
557+ type : "DROP #3" ,
558+ description : < Fragment > ...</ Fragment > ,
590559 done : false ,
591560 } ,
592561 ] }
0 commit comments