diff --git a/src/assets/cubes-vert.jpg b/src/assets/cubes-vert.jpg new file mode 100644 index 0000000..9d7ebed Binary files /dev/null and b/src/assets/cubes-vert.jpg differ diff --git a/src/components/hero.jsx b/src/components/hero.jsx index 0cbee3b..4b9be8e 100644 --- a/src/components/hero.jsx +++ b/src/components/hero.jsx @@ -12,9 +12,16 @@ export const Hero = ({children}) => { {children}
+
-[![Twitter](https://img.shields.io/twitter/follow/jkubeio?label=Follow)](https://twitter.com/jkubeio) -[![Twitter](https://img.shields.io/badge/YouTube-FF0000?logo=youtube&logoColor=white)](https://www.youtube.com/channel/UCpU2tjgpfkTVgeDq-DBSV7A) -[![Gitter](https://badges.gitter.im/eclipse/jkube.svg)](https://gitter.im/eclipse/jkube?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) -[![Eclipse JKube Dev Mailing List](https://img.shields.io/badge/Eclipse%20JKube%20-Developer%20Mailing%20List-orange)](https://accounts.eclipse.org/mailing-list/jkube-dev) -[![License](https://img.shields.io/badge/License-EPL%202.0-red.svg?label=license&logo=eclipse)](https://www.eclipse.org/legal/epl-2.0/) + [![Twitter](https://img.shields.io/twitter/follow/jkubeio?label=Follow)](https://twitter.com/jkubeio) + [![Twitter](https://img.shields.io/badge/YouTube-FF0000?logo=youtube&logoColor=white)](https://www.youtube.com/channel/UCpU2tjgpfkTVgeDq-DBSV7A) + [![Gitter](https://badges.gitter.im/eclipse/jkube.svg)](https://gitter.im/eclipse/jkube?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) + [![Eclipse JKube Dev Mailing List](https://img.shields.io/badge/Eclipse%20JKube%20-Developer%20Mailing%20List-orange)](https://accounts.eclipse.org/mailing-list/jkube-dev) + [![License](https://img.shields.io/badge/License-EPL%202.0-red.svg?label=license&logo=eclipse)](https://www.eclipse.org/legal/epl-2.0/)
# Eclipse JKube™ @@ -39,7 +39,7 @@ Eclipse JKube also provides a set of tools such as watch, debug, log, etc. to im > [🚀 Getting started](/docs/kubernetes-maven-plugin/#getting-started) [📖 Documentation](/docs/kubernetes-maven-plugin/) - + 1. Add the plugin to your `pom.xml`: ```xml theme="dark" filename="pom.xml" @@ -68,7 +68,7 @@ Eclipse JKube also provides a set of tools such as watch, debug, log, etc. to im > [🚀 Getting started](/docs/openshift-maven-plugin/#getting-started) [📖 Documentation](/docs/openshift-maven-plugin/) - + 1. Add the plugin to your `pom.xml`: ```xml theme="dark" filename="pom.xml" @@ -96,7 +96,7 @@ Eclipse JKube also provides a set of tools such as watch, debug, log, etc. to im > [🚀 Getting started](/docs/kubernetes-gradle-plugin/#getting-started) [📖 Documentation](/docs/kubernetes-gradle-plugin/) - + 1. Add the plugin to your `build.gradle`: ```gradle plugins { @@ -119,7 +119,7 @@ Eclipse JKube also provides a set of tools such as watch, debug, log, etc. to im > [🚀 Getting started](/docs/openshift-gradle-plugin/#getting-started) [📖 Documentation](/docs/openshift-gradle-plugin/) - + 1. Add the plugin to your `build.gradle`: ```gradle plugins { @@ -191,10 +191,10 @@ Eclipse JKube also provides a set of tools such as watch, debug, log, etc. to im You can get Eclipse JKube from these platforms: -[![Maven Central](https://img.shields.io/maven-central/v/org.eclipse.jkube/jkube.svg?label=Maven%20Central) -](https://search.maven.org/search?q=g:%22org.eclipse.jkube%22) -[![Eclipse Download Repository](https://img.shields.io/badge/eclipse%20downloads-downloads.eclipse.org-red) -](https://download.eclipse.org/jkube/) +[![Maven Central](https://img.shields.io/maven-central/v/org.eclipse.jkube/jkube.svg?label=Maven%20Central)]( + https://search.maven.org/search?q=g:%22org.eclipse.jkube%22) +[![Eclipse Download Repository](https://img.shields.io/badge/eclipse%20downloads-downloads.eclipse.org-red)]( + https://download.eclipse.org/jkube/)
diff --git a/src/content/quickstarts/index.md b/src/content/quickstarts/index.mdx similarity index 100% rename from src/content/quickstarts/index.md rename to src/content/quickstarts/index.mdx diff --git a/src/styles/components/hero.scss b/src/styles/components/hero.scss index b709d8a..a898f68 100644 --- a/src/styles/components/hero.scss +++ b/src/styles/components/hero.scss @@ -28,7 +28,20 @@ z-index: -1; background-color: darken($color-dark-background, 10%); &-wrapper { - height: 100%; + &-vertical { + display: none; + height: 100%; + @media only screen and (max-width: $desktop-min-width) { + display: block; + } + } + &-landscape { + display: none; + height: 100%; + @media only screen and (min-width: $desktop-min-width + 1) { + display: block; + } + } } } } diff --git a/src/styles/templates/main.scss b/src/styles/templates/main.scss index 8a2e49e..a170ea6 100644 --- a/src/styles/templates/main.scss +++ b/src/styles/templates/main.scss @@ -66,6 +66,7 @@ padding: 0 $default-spacing; display: flex; justify-content: flex-end; + gap: 0.25rem; } & .highlight { display: flex;