Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
feat(website): add waves svg
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed May 18, 2023
1 parent 7bfa687 commit 33badc2
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 72 deletions.
2 changes: 1 addition & 1 deletion website/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ body {

.home-waves {
--overlap: 5px;
bottom: calc(var(--overlap) * -1);
bottom: calc(var(--overlap) * -10);
height: var(--waves-height);
position: absolute;
right: 0px;
Expand Down
142 changes: 71 additions & 71 deletions website/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,93 +13,93 @@ function HomepageHeader() {
const { siteConfig } = useDocusaurusContext();
return (
<header className={clsx("hero hero--primary", styles.heroBanner)}>
<div
style={{
display: "flex",
flexDirection: "row",
}}
>
<div>
<div
style={{
display: "flex",
flex: 1,
height: "70vh",
alignItems: "center",
flexDirection: "row",
}}
>
<div
style={{
color: "#000",
fontSize: "2rem",
fontFamily: "RockfordSans-Medium",
padding: "0 4rem",
textAlign: "left",
display: "flex",
flex: 1,
height: "70vh",
alignItems: "center",
}}
>
Compose your{" "}
<span
<div
style={{
fontFamily: "RockfordSans-Bold",
color: "#ffad62",
color: "#000",
fontSize: "2rem",
fontFamily: "RockfordSans-Medium",
padding: "0 4rem",
textAlign: "left",
}}
>
containerized
</span>{" "}
and{" "}
<span
style={{
fontFamily: "RockfordSans-Bold",
color: "#ffad62",
}}
>
non-containerized
</span>{" "}
<span
style={{
fontFamily: "RockfordSans-Bold",
color: "#3bcbce",
}}
>
services
</span>{" "}
for localdev and deployments in{" "}
<span
style={{
fontFamily: "RockfordSans-Bold",
color: "#f780fb",
}}
>
HCL
</span>{" "}
or{" "}
<span
style={{
fontFamily: "RockfordSans-Bold",
color: "#f780fb",
}}
>
any language
</span>{" "}
with an{" "}
<span
style={{
fontFamily: "RockfordSans-Bold",
color: "#f780fb",
}}
>
SDK
</span>
Compose your{" "}
<span
style={{
fontFamily: "RockfordSans-Bold",
color: "#ffad62",
}}
>
containerized
</span>{" "}
and{" "}
<span
style={{
fontFamily: "RockfordSans-Bold",
color: "#ffad62",
}}
>
non-containerized
</span>{" "}
<span
style={{
fontFamily: "RockfordSans-Bold",
color: "#3bcbce",
}}
>
services
</span>{" "}
for localdev and deployments in{" "}
<span
style={{
fontFamily: "RockfordSans-Bold",
color: "#f780fb",
}}
>
HCL
</span>{" "}
or{" "}
<span
style={{
fontFamily: "RockfordSans-Bold",
color: "#f780fb",
}}
>
any language
</span>{" "}
with an{" "}
<span
style={{
fontFamily: "RockfordSans-Bold",
color: "#f780fb",
}}
>
SDK
</span>
</div>
</div>
<div style={{ flex: 1 }}>
<img className="astronauts" src={Astronauts} alt="Astronauts" />
</div>
</div>
<div style={{ flex: 1 }}>
<img className="astronauts" src={Astronauts} alt="Astronauts" />
<div className="home-waves">
<Waves />
</div>
</div>
<img
className="home-waves"
src={require("@site/static/img/waves.svg").default}
alt="Waves"
/>
</header>
);
}
Expand Down

0 comments on commit 33badc2

Please sign in to comment.