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
8 changes: 2 additions & 6 deletions src/app/landing/page.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
'use client';

import { CompareTable } from '@/components/landing/CompareTable';
import { Contributors } from '@/components/landing/Contributors';
import { DesignFeatureFlow } from '@/components/landing/DesignFeatureFlow';
import { FAQ } from '@/components/landing/FAQ';
import { FeatureGrid } from '@/components/landing/FeatureGrid';
import { FixLoopSteps } from '@/components/landing/FixLoopSteps';
import { Hero } from '@/components/landing/Hero';
import { DemoStage } from '@/components/landing/InteractiveDemo/DemoStage';
import { LandingFooter } from '@/components/landing/LandingFooter';
import { Pricing } from '@/components/landing/Pricing';
import { Quickstart } from '@/components/landing/Quickstart';
import { ThreeUp } from '@/components/landing/ThreeUp';
import { Topbar } from '@/components/landing/Topbar';
Expand All @@ -20,11 +18,9 @@ export default function LandingPage() {
<Hero />
<ThreeUp />
<DemoStage />
<FixLoopSteps />
<DesignFeatureFlow />
<FeatureGrid />
<CompareTable />
<Quickstart />
<Pricing />
<FAQ />
<Contributors />
<LandingFooter />
Expand Down
61 changes: 0 additions & 61 deletions src/components/landing/CompareTable.module.css

This file was deleted.

49 changes: 0 additions & 49 deletions src/components/landing/CompareTable.tsx

This file was deleted.

1 change: 0 additions & 1 deletion src/components/landing/Contributors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ export function Contributors() {

return (
<Section
width="narrow"
className={
shouldShow ? `${styles.section} ${styles.hasContributors} has-contributors` : styles.section
}
Expand Down
192 changes: 192 additions & 0 deletions src/components/landing/DesignFeatureFlow.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,192 @@
.h2 {
font-family: var(--font-display);
font-size: clamp(28px, 3.4vw, 48px);
font-weight: 700;
letter-spacing: -0.025em;
line-height: 1.05;
color: var(--text-bright);
margin-top: 18px;
}
.lead {
font-size: 18px;
line-height: 1.55;
color: var(--text-dim);
max-width: 64ch;
margin-top: 16px;
}
.lead code {
font-family: var(--font-mono);
font-size: 0.92em;
padding: 1px 6px;
background: var(--surface-soft);
border: 1px solid var(--border-subtle);
border-radius: 4px;
color: var(--text);
}

/* ─── CTA row (skill repo link) ──────────────────────────── */
.ctaRow {
display: flex;
align-items: center;
gap: 16px;
flex-wrap: wrap;
margin-top: 24px;
}

.repoLink {
/* PillButton.ghost already styles the chip; this just tightens the inline gap. */
font-family: var(--font-mono);
letter-spacing: 0.02em;
}

.ctaHint {
font-size: 13px;
color: var(--text-muted);
line-height: 1.5;
}

/* ─── Phase grid ─────────────────────────────────────────── */
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 14px;
margin-top: 40px;
list-style: none;
padding: 0;
}

.card {
display: flex;
flex-direction: column;
gap: 12px;
padding: 22px;
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-md);
position: relative;
transition:
border-color 160ms ease,
transform 200ms ease;
}

.card:hover {
border-color: var(--border-strong);
transform: translateY(-1px);
}

.cardHead {
display: flex;
align-items: baseline;
gap: 12px;
}

.ix {
font-family: var(--font-mono);
font-size: 10px;
letter-spacing: 0.1em;
color: var(--accent);
font-variant-numeric: tabular-nums;
position: relative;
}

.ix::before {
content: "";
position: absolute;
left: -22px;
top: 50%;
width: 14px;
height: 1px;
background: var(--accent);
opacity: 0.4;
transform: translateY(-50%);
}

.cardTitle {
font-family: var(--font-display);
font-size: 17px;
font-weight: 600;
color: var(--text-bright);
letter-spacing: -0.01em;
margin: 0;
}

.cardBody {
font-size: 13px;
line-height: 1.55;
color: var(--text-dim);
margin: 0;
}

.cardBody code,
.boost code {
font-family: var(--font-mono);
font-size: 11px;
padding: 1px 5px;
background: var(--surface-soft);
border: 1px solid var(--border-subtle);
border-radius: 4px;
color: var(--text);
white-space: nowrap;
}

/* ─── Boost callout — what the skill adds to Markup ──────── */
.boost {
font-size: 12px;
line-height: 1.5;
color: var(--text);
padding: 12px 14px;
margin-top: auto;
background: linear-gradient(
180deg,
color-mix(in oklch, var(--accent-soft) 70%, transparent),
color-mix(in oklch, var(--accent-soft) 40%, transparent)
);
border: 1px solid color-mix(in oklch, var(--accent) 25%, var(--border));
border-radius: var(--radius-sm);
}

/* ─── Coda ───────────────────────────────────────────────── */
.coda {
margin-top: 32px;
font-size: 14px;
line-height: 1.6;
color: var(--text-dim);
max-width: 68ch;
padding-left: 14px;
border-left: 1px solid color-mix(in oklch, var(--accent) 40%, transparent);
}
.coda code {
font-family: var(--font-mono);
font-size: 12px;
padding: 1px 5px;
background: var(--surface-soft);
border: 1px solid var(--border-subtle);
border-radius: 4px;
color: var(--text);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
.grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 640px) {
.grid {
grid-template-columns: 1fr;
gap: 10px;
}
.card {
padding: 18px;
}
}

@media (prefers-reduced-motion: reduce) {
.card {
transition: none;
}
.card:hover {
transform: none;
}
}
Loading
Loading