mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-18 12:37:05 +02:00
- 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 <tim@gerla.net>
53 lines
1.0 KiB
Vue
53 lines
1.0 KiB
Vue
<template>
|
|
<div>
|
|
<footer>
|
|
<div class="pb-32 lg:pb-64">
|
|
<div class="flex flex-col items-center my-3">
|
|
<img class="cncf" src="/images/cncf-color.png" alt="" />
|
|
<p class="pt-2">
|
|
We are a
|
|
<a href="https://cncf.io" target="_blank"
|
|
>Cloud Native Computing Foundation</a
|
|
>
|
|
member.
|
|
</p>
|
|
</div>
|
|
<div class="text-center">
|
|
<a class="inline-block no-underline color-inherit" href="/">
|
|
© 2019 Talos Systems, Inc.
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
body {
|
|
background-image: url(~assets/images/chips_bg_v1.svg);
|
|
background-position: center bottom;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
footer {
|
|
@apply flex flex-col items-center font-sans justify-between py-5;
|
|
}
|
|
|
|
footer a {
|
|
@apply text-gray-600 text-xs;
|
|
}
|
|
|
|
footer a:hover {
|
|
@apply text-black underline;
|
|
}
|
|
|
|
.color-inherit {
|
|
color: inherit;
|
|
}
|
|
|
|
.cncf {
|
|
width: 250px;
|
|
height: 39px;
|
|
}
|
|
</style>
|