-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added cards, refactored header, added cards * use cases cards * added sections * addaptive * footer (no adaptive) * design fixes * design fixes * design fixes * footer && mobile footer (no design) * footer && mobile footer (no design) * footer && mobile footer (no design) * mobile navbar * splitted index page to few components * choose element fix * pagination swiper * requested fixes * requested fixes * requested fixes * mobile swiper pagination fix * requested changes * requested changes * padding/margin fixes on mobile * padding/margin fixes on mobile * news swiper fix * font fix * requested changes * design fixes * image mobile fix * requested changes * changelog * Update styles * requested changes * external links inside of components (req changes) --------- Co-authored-by: ardier16 <ardier16@gmail.com>
- Loading branch information
Showing
59 changed files
with
2,045 additions
and
467 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
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import Link from "@docusaurus/Link"; | ||
import clsx from "clsx"; | ||
import React from "react"; | ||
|
||
import styles from "./styles.module.css"; | ||
|
||
export default function Building(): JSX.Element { | ||
return ( | ||
<div className={clsx("building__wrp", styles.buildingWrp)}> | ||
<div className={clsx("building container", styles.building)}> | ||
<img | ||
className={clsx("building__img", styles.buildingImg)} | ||
src="img/building-image.png" | ||
data-aos="fade-up" | ||
/> | ||
<div | ||
className={clsx("building__description", styles.buildingDescription)} | ||
> | ||
<h2 | ||
className={clsx("building__title", styles.buildingTitle)} | ||
data-aos="fade-up" | ||
> | ||
Build Fast With Developer Dashboard | ||
</h2> | ||
<p | ||
className={clsx("building__text", styles.buildingText)} | ||
data-aos="fade-up" | ||
> | ||
{ | ||
"Build no-code and low-code identity enabled dApps with \nRarimo Developer Dashboard" | ||
} | ||
</p> | ||
<Link | ||
className={clsx("heroButtonSecondary", styles.heroButtonSecondary)} | ||
// TODO: dummy link | ||
to="#" | ||
data-aos="fade-up" | ||
target="_blank" | ||
rel="noreferrer noopener" | ||
> | ||
LAUNCH | ||
</Link> | ||
</div> | ||
</div> | ||
</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,83 @@ | ||
.buildingWrp { | ||
background-color: #0F0F0F; | ||
border-top: var(--primary-border); | ||
border-bottom: var(--primary-border); | ||
} | ||
|
||
.building { | ||
display: flex; | ||
gap: 8rem; | ||
align-items: center; | ||
background: transparent; | ||
padding: 5rem; | ||
} | ||
|
||
.buildingDescription { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: start; | ||
} | ||
|
||
.buildingTitle { | ||
color: var(rgba(255, 255, 255, 0.90)); | ||
font-size: 2rem; | ||
font-weight: 600; | ||
line-height: 1.2; | ||
margin-bottom: 1.5rem; | ||
} | ||
|
||
.buildingText { | ||
color: rgba(255, 255, 255, 0.60); | ||
line-height: 1.4; | ||
font-size: 1.125rem; | ||
white-space: pre-line; | ||
margin-bottom: 1.5rem; | ||
} | ||
|
||
.buildingImg { | ||
max-width: 26.25rem; | ||
width: 100%; | ||
} | ||
|
||
@media screen and (max-width: 996px) { | ||
.buildingWrp { | ||
padding: 3.5rem 4rem; | ||
} | ||
|
||
.building { | ||
flex-direction: column; | ||
align-items: center; | ||
padding: 2rem; | ||
gap: 4rem; | ||
} | ||
|
||
.buildingDescription { | ||
align-items: center; | ||
text-align: center; | ||
} | ||
} | ||
|
||
@media screen and (max-width: 625px) { | ||
.buildingWrp { | ||
padding: 3.5rem 1.75rem; | ||
} | ||
|
||
.building { | ||
gap: 3.5rem; | ||
padding: 1rem; | ||
} | ||
|
||
.buildingTitle { | ||
font-size: 1.5rem; | ||
} | ||
|
||
.buildingText { | ||
white-space: normal; | ||
font-size: 0.875rem; | ||
} | ||
|
||
.buildingImg { | ||
padding: 0 1rem; | ||
object-fit: scale-down; | ||
} | ||
} |
Oops, something went wrong.