Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
159 changes: 159 additions & 0 deletions docs/docs/assets/css/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,162 @@
letter-spacing: 0.05em;
opacity: 1;
}

/* ================================================
HOMEPAGE
================================================ */

/* --- Hero section --- */
.hero {
text-align: center;
padding: 1.5rem 0 0.5rem;
}

.hero-banner {
max-width: 280px;
margin: 0 auto;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
}

.hero-tagline {
font-size: 1.45rem;
font-weight: 700;
line-height: 1.3;
margin: 1rem 0 0.75rem;
color: var(--md-default-fg-color);
letter-spacing: -0.015em;
}

.hero-description {
font-size: 0.92rem;
max-width: 500px;
margin: 0 auto 1.5rem;
color: var(--md-default-fg-color--light);
line-height: 1.6;
}

.hero-actions {
display: flex;
justify-content: center;
gap: 0.6rem;
flex-wrap: wrap;
margin-bottom: 0;
}

.hero-actions .md-button {
font-size: 0.8rem;
padding: 0.5rem 1.4rem;
border-radius: 6px;
font-weight: 600;
}

/* Install snippet */
.hero-install {
max-width: 460px;
margin: 1.25rem auto 0;
}

.hero-install pre {
margin: 0;
}

.hero-install code {
font-size: 0.78rem;
}

/* --- Section headings --- */
.section-heading {
text-align: center;
font-size: 1.2rem;
font-weight: 700;
margin: 1.5rem 0 0.2rem;
letter-spacing: -0.01em;
}

.section-sub {
text-align: center;
color: var(--md-default-fg-color--light);
font-size: 0.85rem;
margin: 0 auto 1.25rem;
max-width: 460px;
line-height: 1.5;
}

/* --- Feature cards --- */
.grid.cards > ul > li {
border-radius: 8px;
padding: 0.8rem !important;
transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.grid.cards > ul > li:hover {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
transform: translateY(-1px);
}

[data-md-color-scheme="slate"] .grid.cards > ul > li:hover {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.grid.cards > ul > li p {
font-size: 0.83rem;
line-height: 1.55;
}

/* --- Pill grid (LLM providers, warehouses) --- */
.pill-grid {
max-width: 600px;
margin: 0 auto;
}

.pill-grid ul {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.45rem;
list-style: none;
padding: 0;
margin: 0;
}

.pill-grid ul li {
display: inline-flex;
align-items: center;
gap: 0.3rem;
padding: 0.4rem 0.85rem;
border-radius: 100px;
font-size: 0.8rem;
border: 1px solid var(--md-default-fg-color--lightest);
color: var(--md-default-fg-color--light);
white-space: nowrap;
margin: 0;
}

.pill-grid ul li .twemoji {
display: inline-flex;
}

[data-md-color-scheme="slate"] .pill-grid ul li {
border-color: rgba(255, 255, 255, 0.12);
}

/* --- Doc links footer --- */
.doc-links {
text-align: center;
font-size: 0.85rem;
line-height: 1.8;
}

.doc-links a {
text-decoration: none;
}

.doc-links a:hover {
text-decoration: underline;
}

/* --- Dividers --- */
.md-content hr {
margin: 1.5rem 0;
}
Binary file added docs/docs/assets/images/altimate-code-banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions docs/docs/getting-started.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Getting Started

## Why altimate-code?

Unlike general-purpose coding agents, altimate-code is built for data teams:

| Capability | General coding agents | altimate-code |
|---|---|---|
| SQL anti-pattern detection | None | 19 rules with confidence scoring |
| Column-level lineage | None | Automatic from SQL |
| Schema-aware autocomplete | None | Indexes your warehouse metadata |
| Cross-dialect translation | None | Snowflake, BigQuery, Databricks, Redshift |
| FinOps analysis | None | Credit analysis, expensive queries, warehouse sizing |
| PII detection | None | Automatic column scanning |
| dbt integration | Basic file editing | Manifest parsing, test generation, model scaffolding |

## Installation

```bash
Expand Down
Loading