From eeb315d8c0ebee0ad32209e1f82803d006491cdb Mon Sep 17 00:00:00 2001 From: Vladyslav Palyvoda Date: Tue, 4 Nov 2025 15:22:00 +0200 Subject: [PATCH] docs: Add landing link --- src/css/custom.css | 41 ++++++++++++++++++++++++++++++++++++++ src/theme/Footer/index.tsx | 21 +++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 src/theme/Footer/index.tsx diff --git a/src/css/custom.css b/src/css/custom.css index b1fbba5ff..e02bd2c3d 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -76,3 +76,44 @@ --ifm-menu-color: var(--ifm-color-white); } } + +.footer-container { + border-top: 1px solid rgba(255, 255, 255, 0.1); +} + +.footer-subfooter { + background-color: var(--kuberocket-color-primary-dark); + border-top: 1px solid rgba(255, 255, 255, 0.1); + padding: 1rem 0; +} + +.footer-subfooter-content { + display: flex; + justify-content: center; + align-items: center; + text-align: center; +} + +.footer-subfooter-link { + color: var(--ifm-color-white); + text-decoration: none; + font-size: 0.9rem; + transition: color 0.2s ease; + display: inline-flex; + align-items: center; + gap: 0.5rem; +} + +.footer-subfooter-link:hover { + color: var(--kuberocket-color-primary-light); + text-decoration: none; +} + +.footer-subfooter-icon { + font-size: 1rem; + transition: transform 0.2s ease; +} + +.footer-subfooter-link:hover .footer-subfooter-icon { + transform: translateX(4px); +} diff --git a/src/theme/Footer/index.tsx b/src/theme/Footer/index.tsx new file mode 100644 index 000000000..0c418fc35 --- /dev/null +++ b/src/theme/Footer/index.tsx @@ -0,0 +1,21 @@ +import React from 'react'; +import Footer from '@theme-original/Footer'; +import ArrowForwardIcon from '@mui/icons-material/ArrowForward'; + +export default function FooterWrapper(props) { + return ( +
+
+ ); +}