Remove obsolete release notes and update homepage features for MCP Database Server. Added support for multiple databases and improved UI elements. Updated styles and SVG assets for better presentation.

This commit is contained in:
Karthik KK
2025-04-22 18:33:00 +12:00
parent 5d0f4b5b4b
commit e67bf993ec
15 changed files with 257 additions and 172 deletions

View File

@@ -8,6 +8,7 @@
text-align: center;
position: relative;
overflow: hidden;
background: linear-gradient(135deg, var(--ifm-color-primary-darkest) 0%, var(--ifm-color-primary) 100%);
}
@media screen and (max-width: 996px) {
@@ -20,4 +21,37 @@
display: flex;
align-items: center;
justify-content: center;
margin-top: 2rem;
}
.button {
margin: 0 0.5rem;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.heroTitle {
font-size: 3rem;
font-weight: 800;
margin-bottom: 1rem;
}
.heroSubtitle {
font-size: 1.5rem;
margin-bottom: 2rem;
opacity: 0.9;
}
.callToAction {
background-color: var(--ifm-color-emphasis-100);
padding: 5rem 0;
margin-top: 2rem;
background: linear-gradient(135deg, var(--ifm-color-emphasis-200) 0%, var(--ifm-color-emphasis-100) 100%);
border-top: 1px solid var(--ifm-color-emphasis-200);
border-bottom: 1px solid var(--ifm-color-emphasis-200);
}