Stepkit/Vellum landing
Complete page · Original

Vellum landing

A complete product marketing page: working nav and mobile menu, typographic hero, interactive Monday sheet, pricing period toggle, request dialog, FAQ and footer.

Live preview

The whole page

Runnable project

Usage & source

v0.4.1
React + Vite
"use client";

import type { CSSProperties } from "react";
import { VellumLanding } from "./pages/vellum-landing/VellumLanding";
import "./components/styles.css";
import "./pages/vellum-landing/vellum-landing.css";

const themeStyle = {"--stepkit-bg":"#f7f7f8","--stepkit-surface":"#ffffff","--stepkit-surface-muted":"#f0f0f3","--stepkit-fg":"#17181c","--stepkit-muted":"#626572","--stepkit-border":"#e3e4e9","--stepkit-border-strong":"#c8cad3","--stepkit-code":"#f1f1f4","--stepkit-shadow":"0 20px 60px rgba(31, 26, 64, .10)","--stepkit-accent":"#2563eb","--stepkit-accent-strong":"#1d4ed8","--stepkit-accent-soft":"#e8efff","--stepkit-accent-on-soft":"#1d4ed8","--stepkit-accent-text":"#ffffff","--stepkit-error":"#b43145","--stepkit-placeholder":"#626572","--stepkit-radius":"16px","--stepkit-space":"16px","--stepkit-control-height":"44px","--stepkit-font-sans":"Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", sans-serif"} as CSSProperties;

export default function App() {
  return (
    <div className="stepkit-theme" data-stepkit-preset="modern" style={themeStyle}>
      <VellumLanding />
    </div>
  );
}

Dependencies

[email protected]
[email protected]
Add to your project

Download and run

This is a complete React + Vite page. You do not need a pre-existing shadcn setup. Individual Stepkit components remain available from the registry if you only want one control.

unzip vellum-landing-0.4.1.zip && npm ci && npm run dev
Assistant handoff

Integration prompt

Prompt
Unzip vellum-landing-0.4.1.zip into a new folder.
npm ci
npm run dev

This is a complete React + Vite page. You do not need a pre-existing shadcn setup. Individual Stepkit components remain available from the registry if you only want one control.
Keep NOTICE.md with the copied source. Change colours by editing the --stepkit-* tokens on the .stepkit-theme wrapper in src/App.tsx.
Forms, plan choice, search, and edits are local demos until you connect your backend.

Usage:
```tsx
"use client";

import type { CSSProperties } from "react";
import { VellumLanding } from "./pages/vellum-landing/VellumLanding";
import "./components/styles.css";
import "./pages/vellum-landing/vellum-landing.css";

const themeStyle = {"--stepkit-bg":"#f7f7f8","--stepkit-surface":"#ffffff","--stepkit-surface-muted":"#f0f0f3","--stepkit-fg":"#17181c","--stepkit-muted":"#626572","--stepkit-border":"#e3e4e9","--stepkit-border-strong":"#c8cad3","--stepkit-code":"#f1f1f4","--stepkit-shadow":"0 20px 60px rgba(31, 26, 64, .10)","--stepkit-accent":"#6950df","--stepkit-accent-strong":"#5137c7","--stepkit-accent-soft":"#eeeafd","--stepkit-accent-on-soft":"#5137c7","--stepkit-accent-text":"#ffffff","--stepkit-error":"#b43145","--stepkit-placeholder":"#626572","--stepkit-radius":"16px","--stepkit-space":"16px","--stepkit-control-height":"44px","--stepkit-font-sans":"Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", sans-serif"} as CSSProperties;

export default function App() {
  return (
    <div className="stepkit-theme" data-stepkit-preset="modern" style={themeStyle}>
      <VellumLanding />
    </div>
  );
}
```
Quality

Accessibility & limits

  • Primary navigation uses in-page destinations and a disclosure menu on small screens.
  • The week sheet exposes selected day state.
  • Dialogs restore focus and close with Escape.

Limitations

  • The request form and plan choice stay in the browser until you connect billing or a waitlist.
  • The workspace screen is a separate template ZIP.
Source record

Provenance

Original source under the MIT licence.

Original Stepkit implementation.

Required notices: NOTICE.md, PROVENANCE-stepkit-vellum-landing.md