Skip to content

Commit a28cc9d

Browse files
committed
stop dev landing page
1 parent 83d8281 commit a28cc9d

File tree

2 files changed

+42
-76
lines changed

2 files changed

+42
-76
lines changed

packages/app/src/app/app.tsx

Lines changed: 28 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -262,21 +262,12 @@ const ColoredKw: FC<{ color?: string }> = ({ color = "black", children }) => {
262262
const 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

416407
const 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
]}

packages/app/src/app/style.tsx

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -92,18 +92,16 @@ const style = {
9292
backgroundColor: theme.backgroundColor.secondary,
9393
borderRadius: "5px",
9494
})),
95-
ViewTitle: styled("div")<{ big?: boolean; shadow?: boolean }>(
96-
({ theme, big, shadow = true }) => ({
97-
fontSize: big ? "3em" : "2em",
98-
fontFamily: theme.fontFamily.primary,
99-
fontStyle: "italic",
100-
fontWeight: 900,
101-
marginBottom: "50px",
102-
display: "inline-block",
103-
borderRadius: "2.5px",
104-
textShadow: shadow ? `10px 5px ${theme.backgroundColor.tertiary}` : "",
105-
})
106-
),
95+
ViewTitle: styled("div")<{ big?: boolean; shadow?: boolean }>(({ theme, shadow = true }) => ({
96+
fontSize: "2.5em",
97+
fontFamily: theme.fontFamily.primary,
98+
fontStyle: "italic",
99+
fontWeight: 900,
100+
marginBottom: "50px",
101+
display: "inline-block",
102+
borderRadius: "2.5px",
103+
textShadow: shadow ? `10px 5px ${theme.backgroundColor.tertiary}` : "",
104+
})),
107105

108106
View2Content: styled("div")(({ theme }) => ({
109107
fontSize: "1em",
@@ -257,7 +255,6 @@ const style = {
257255

258256
RoadMapItemStep: styled(Typography)(({ theme }) => ({
259257
color: "black",
260-
padding: "2.5px 5px 2.5px 5px",
261258
borderRadius: "5px",
262259
display: "inline-block",
263260
paddingLeft: "10px",
@@ -272,7 +269,7 @@ const style = {
272269
boxShadow: `10px 10px 2.5px ${theme.backgroundColor.secondary}`,
273270
backgroundColor: `white`,
274271
marginLeft: "10px",
275-
marginBottom: "5px",
272+
marginBottom: "35px",
276273
})),
277274
RoadMapItemTitle: styled(Typography)(({ theme }) => ({
278275
paddingLeft: "10px",
@@ -282,10 +279,10 @@ const style = {
282279
fontWeight: 900,
283280
fontSize: "1.1em",
284281
color: "black",
285-
marginBottom: "10px",
282+
marginBottom: "15px",
286283
})),
287284
RoadMapItemType: styled(Typography)(({ theme }) => ({
288-
fontSize: "0.65em",
285+
fontSize: "0.75em",
289286
padding: "2.5px",
290287
paddingLeft: "10px",
291288
paddingRight: "10px",
@@ -311,7 +308,7 @@ const style = {
311308
backgroundColor: `white`,
312309
textAlign: "start",
313310
marginRight: "10px",
314-
marginBottom: "5px",
311+
marginBottom: "35px",
315312
})),
316313
};
317314

0 commit comments

Comments
 (0)