Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rework homepage / getting started flow #862

Draft
wants to merge 10 commits into
base: main
Choose a base branch
from
9 changes: 3 additions & 6 deletions _data/navigation.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
- header: Get Started
url: /getting-started/
# ------------------------------------------------------------------------------
- header: Blog
url: /blog/
# ------------------------------------------------------------------------------
- header: Documentation
url: /documentation/
# ------------------------------------------------------------------------------
Expand All @@ -13,6 +7,9 @@
- header: Tools
url: /tools/
# ------------------------------------------------------------------------------
- header: Blog
url: /blog/
# ------------------------------------------------------------------------------
- header: Community
url: /community/
pages:
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
13 changes: 13 additions & 0 deletions assets/images/landing-page/ai.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions assets/images/landing-page/chip.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions assets/images/landing-page/cloud.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions assets/images/landing-page/controller.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions assets/images/landing-page/desktop.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions assets/images/landing-page/package.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions assets/images/landing-page/phone.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions assets/images/landing-page/server.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions assets/images/landing-page/terminal.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 21 additions & 5 deletions assets/stylesheets/pages/_landing.scss
Original file line number Diff line number Diff line change
@@ -1,11 +1,27 @@
.grid-layout-use-cases {
@media (min-width: 1000px) {
grid-template-columns: repeat(2, 1fr);
grid-template-columns: repeat(3, 1fr);
}

li:nth-child(2n-1):nth-last-of-type(1) {
grid-column: span 2;
}
.heading {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 12px;
}

img {
height: 48px;
width: 48px;
object-fit: contain;
filter: var(--icon-filter);
}

h3 {
margin: 0;
font-size: 1.2em;
}

}

.preamble {
Expand Down Expand Up @@ -147,4 +163,4 @@
font-weight: bold;
border-radius: 4px;
}
}
}
Loading