From d6f5ff34148ce7914510fc89c666e49583689bc5 Mon Sep 17 00:00:00 2001 From: Tim Gerla Date: Thu, 9 Jan 2020 10:23:34 -0500 Subject: [PATCH] feat: add a basic architectural diagram and a call to action - add an architecture diagram - add a call-to-action button on the front page - clean up some lint issues - adjust the way the "chips" image is displayed - move the K8s certified logo to the "Features" section Signed-off-by: Tim Gerla --- docs/website/assets/css/main.css | 8 ++ docs/website/assets/images/talos-arch.svg | 1 + docs/website/components/Content.vue | 2 +- .../components/DocumentationDropdown.vue | 2 +- docs/website/components/Footer.vue | 46 ++++++---- docs/website/components/Sidebar.vue | 8 +- docs/website/components/Terminal.vue | 2 +- docs/website/pages/index.vue | 89 +++++++++++-------- docs/website/tailwind.config.js | 4 + 9 files changed, 98 insertions(+), 64 deletions(-) create mode 100644 docs/website/assets/images/talos-arch.svg diff --git a/docs/website/assets/css/main.css b/docs/website/assets/css/main.css index 3ce2e8dee..623e17417 100644 --- a/docs/website/assets/css/main.css +++ b/docs/website/assets/css/main.css @@ -87,4 +87,12 @@ p a:hover { .section-docs .page-heading { @apply mb-1; } + +.teal-cta-button { + @apply bg-logo-teal text-white font-bold py-2 px-4 rounded; +} + +.teal-cta-button:hover { + @apply bg-logo-teal-darker; +} /* purgecss end ignore */ diff --git a/docs/website/assets/images/talos-arch.svg b/docs/website/assets/images/talos-arch.svg new file mode 100644 index 000000000..7581ba693 --- /dev/null +++ b/docs/website/assets/images/talos-arch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/website/components/Content.vue b/docs/website/components/Content.vue index 9f4060f76..8be0ccdde 100644 --- a/docs/website/components/Content.vue +++ b/docs/website/components/Content.vue @@ -19,7 +19,7 @@ Edit this page -
+
diff --git a/docs/website/components/DocumentationDropdown.vue b/docs/website/components/DocumentationDropdown.vue index 247e4d998..a830fb5d8 100644 --- a/docs/website/components/DocumentationDropdown.vue +++ b/docs/website/components/DocumentationDropdown.vue @@ -17,8 +17,8 @@
  • {{ version(option) }}
  • diff --git a/docs/website/components/Footer.vue b/docs/website/components/Footer.vue index b69b78bbe..472ecf35c 100644 --- a/docs/website/components/Footer.vue +++ b/docs/website/components/Footer.vue @@ -1,26 +1,36 @@