diff --git a/content/docs/setup/installation.mdx b/content/docs/setup/installation.mdx index 2ee457e..a9a8566 100644 --- a/content/docs/setup/installation.mdx +++ b/content/docs/setup/installation.mdx @@ -3,6 +3,11 @@ title: Installation description: Get OrcaCD running quickly with Docker --- + + OrcaCD is in early development and not yet production-ready. There are no stable releases. Expect + breaking changes at any time. + + ## Start Hub and Agent [step] Download the [`docker-compose.yml`](https://raw.githubusercontent.com/OrcaCD/orca-cd/main/docker-compose.yml) and [`.env`](https://raw.githubusercontent.com/OrcaCD/orca-cd/main/.env.example) file: diff --git a/public/assets/docs/orca-apps-screenshot.avif b/public/assets/docs/orca-apps-screenshot.avif new file mode 100644 index 0000000..ff2fe7c Binary files /dev/null and b/public/assets/docs/orca-apps-screenshot.avif differ diff --git a/public/assets/docs/orca-apps-screenshot.png b/public/assets/docs/orca-apps-screenshot.png new file mode 100644 index 0000000..84ad7b0 Binary files /dev/null and b/public/assets/docs/orca-apps-screenshot.png differ diff --git a/public/assets/docs/orca-apps-screenshot.webp b/public/assets/docs/orca-apps-screenshot.webp new file mode 100644 index 0000000..7ef71b7 Binary files /dev/null and b/public/assets/docs/orca-apps-screenshot.webp differ diff --git a/src/routes/index.tsx b/src/routes/index.tsx index e9e70c9..76a4598 100644 --- a/src/routes/index.tsx +++ b/src/routes/index.tsx @@ -63,53 +63,51 @@ function SmallFeature({ function Home() { return ( -
-
-
-
- - GitOps for Docker -
-

- OrcaCD -

-

- OrcaCD is a simple GitOps controller for Docker Compose. Deploy and manage your services - with ease, directly from your Git repository. -

-
- - - Get Started - +
+
+
+

+ OrcaCD +

+

+ GitOps for Docker +

+

+ Deploy and manage your services with ease, directly from your Git repository. +

+
+ + + Get Started + - - - Demo - + + + Demo + +
-
-
-
-
-
-
-
-
-
-
-
-

TODO: Add OrcaCD dashboard screenshot image

-
+
+
+ + + + OrcaCD Dashboard +
@@ -151,7 +149,7 @@ function Home() {
diff --git a/src/styles/app.css b/src/styles/app.css index 81cf3de..39d386d 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -15,3 +15,25 @@ button:not([disabled]), [role="button"]:not([disabled]) { cursor: pointer; } + +.hero-img-bg { + position: absolute; + top: 50%; + left: 50%; + border-radius: 50%; + background-image: linear-gradient(45deg, #242d45 35%, #45669b 20%); + filter: blur(64px); + transform: translate(-50%, -50%); + width: 100%; + height: 120%; +} + +.hero-text-bg { + background-color: white; + background: linear-gradient(120deg, #cfe7fc, #24a8ff); + color: transparent; + -webkit-text-fill-color: transparent; + background-clip: text; + -webkit-background-clip: text; + width: fit-content; +}