Skip to content

Features Pastel

2×2 grid of large pastel feature cards (peach, mint, lavender, butter), each with icon, rounded title, copy and a tiny flat illustration (mini board, bar week, reminder toast, chat bubbles).

soft-flat/section/features-pastel
Open ↗

Source

import { Bell, CalendarDays, LayoutGrid, MessageCircle } from "lucide-react";
import { cn } from "@/lib/utils";

export interface FeaturesPastelProps {
  eyebrow?: string;
  title?: string;
  description?: string;
  className?: string;
}

/** Four large pastel feature cards (peach, mint, lavender, butter) in a 2×2 grid, each with a tiny flat illustration built from shapes. */
export function FeaturesPastel({
  eyebrow = "Features",
  title = "Small tools, big calm",
  description = "Everything in Planta is designed to be understood in five seconds.",
  className,
}: FeaturesPastelProps) {
  return (
    <section aria-labelledby="sf-pastel-title" className={cn("da-section bg-da-bg text-da-fg", className)}>
      <div className="da-container">
        <div className="mx-auto max-w-2xl text-center">
          <p className="text-sm font-semibold text-da-primary">{eyebrow}</p>
          <h2
            id="sf-pastel-title"
            className="mt-3 font-da-display text-[clamp(2rem,4.5vw,3.25rem)] leading-[1.08] font-extrabold tracking-da-display text-balance"
          >
            {title}
          </h2>
          <p className="mt-4 text-lg text-da-muted-fg">{description}</p>
        </div>
        <ul className="mt-14 grid gap-5 md:grid-cols-2">
          <li className="flex flex-col rounded-da-lg bg-da-accent p-8 text-da-accent-fg">
            <LayoutGrid aria-hidden className="size-7" />
            <h3 className="mt-5 font-da-display text-2xl font-extrabold tracking-da-display">Boards that stay tidy</h3>
            <p className="mt-2 opacity-90">Columns, colors and due dates — nothing else. Drag a card and you’re done.</p>
            <div aria-hidden className="mt-8 grid grid-cols-3 gap-2">
              {[3, 2, 1].map((n, i) => (
                <div key={i} className="space-y-2 rounded-da-md bg-da-surface/60 p-2">
                  {Array.from({ length: n }, (_, k) => (
                    <div key={k} className="h-6 rounded-da-sm bg-da-surface" />
                  ))}
                </div>
              ))}
            </div>
          </li>
          <li className="flex flex-col rounded-da-lg bg-da-secondary p-8 text-da-secondary-fg">
            <CalendarDays aria-hidden className="size-7" />
            <h3 className="mt-5 font-da-display text-2xl font-extrabold tracking-da-display">A week you can see</h3>
            <p className="mt-2 opacity-90">Drop tasks on days. Planta warns you gently when Wednesday gets too full.</p>
            <div aria-hidden className="mt-8 flex items-end gap-2">
              {[40, 65, 95, 50, 30].map((h, i) => (
                <div key={i} className="flex-1 rounded-t-da-sm bg-da-surface/70" style={{ height: h }} />
              ))}
            </div>
          </li>
          <li className="flex flex-col rounded-da-lg bg-da-primary/12 p-8">
            <Bell aria-hidden className="size-7 text-da-primary" />
            <h3 className="mt-5 font-da-display text-2xl font-extrabold tracking-da-display">Reminders, not nagging</h3>
            <p className="mt-2 text-da-muted-fg">One friendly nudge the day before. Snooze with a single tap.</p>
            <div aria-hidden className="mt-8 flex items-center gap-3 rounded-da-md bg-da-surface p-3 shadow-da-sm">
              <span className="grid size-9 place-items-center rounded-full bg-da-warning/40">🔔</span>
              <span className="text-sm font-medium">“Send invoice to Lumen” is due tomorrow</span>
            </div>
          </li>
          <li className="flex flex-col rounded-da-lg bg-da-warning/25 p-8">
            <MessageCircle aria-hidden className="size-7" />
            <h3 className="mt-5 font-da-display text-2xl font-extrabold tracking-da-display">Comments where work lives</h3>
            <p className="mt-2 text-da-muted-fg">Discuss a task on the task. No more lost threads in chat.</p>
            <div aria-hidden className="mt-8 space-y-2">
              <p className="w-fit rounded-da-md rounded-bl-[4px] bg-da-surface px-3 py-2 text-sm shadow-da-sm">Can we move this to Friday?</p>
              <p className="ml-auto w-fit rounded-da-md rounded-br-[4px] bg-da-primary px-3 py-2 text-sm text-da-primary-fg">Done ✅</p>
            </div>
          </li>
        </ul>
      </div>
    </section>
  );
}

export default FeaturesPastel;

modules/soft-flat/section/features-pastel/index.tsx

Props

PropTypeDefaultDescription
eyebrow / title / descriptionstring—Header copy.
classNamestring—Classes.

Other features variants in Soft Flat

Features in other art directions

Features Grid

Six features in a single ruled box (1/2/3 columns) with numbered tiles, color-cycling icon blocks that press on hover, and a two-column section header.

BrutalistFeatures

Features Numbered

Full-width ruled rows with giant faded step numbers, uppercase titles, descriptions and a stat chip; each row floods with a different primary color on hover and the number turns solid.

BrutalistFeatures

Features Tabs

Tabbed feature explorer: ruled mono tab bar (ink active tab), then a big split panel with title, description and square-bullet list on the left and a stacked mock preview of the channel on the right.

BrutalistFeatures

Features Versus

Before/after comparison: two slightly tilted cards side by side — the old way in paper with red crosses, the new way in solid yellow with ink checks — row by row on the same topics.

BrutalistFeatures

Features Bento

Glass bento grid on 6 columns: a large AI-recap tile with a mock summary and owner chips, plus five smaller frosted tiles with gradient squircle icons.

GlassFeatures

Features Glass Grid

Centered header and six frosted feature cards with gradient squircle icons; cards lift with an overshoot and reveal a soft corner glow on hover.

GlassFeatures

Features Orbit

Integrations section: copy with a chip list on one side, and a central gradient orb with integration bubbles orbiting on two counter-rotating glass rings (bubbles stay upright). Pure CSS.

GlassFeatures

Features Tabs

Glass pill tab bar (Radix Tabs) with gradient active tab switching a large frosted panel: title, copy and bullets on the left, a layered glass preview on the right.

GlassFeatures

Features Alternating

Three zig-zag rows, each pairing a numbered kicker, title, copy and link with an HTML product mock-up (routing rules, on-call week, AI postmortem) on a soft tinted plate.

MinimalFeatures

Features Bento

Bento grid of five hairline tiles on a 6-column layout, each with a small token-themed HTML illustration (routing lines, uptime bars, MTTR metric, on-call week) above an icon, title and description.

MinimalFeatures

Features List

Dense four-column feature list: each item has a small indigo line icon, a title and a one-sentence description under a hairline top rule. Eight defaults, left-aligned header.

MinimalFeatures

Features Steps

Five-step workflow (detect, page, coordinate, resolve, learn) laid out horizontally on desktop and vertically on mobile, joined by a hairline, with numbered nodes and timing labels.

MinimalFeatures

Features Index

Features as a numbered index: a label + headline in the left columns, and a two-column ruled list on the right where each item is “01 — Title” with a short description.

Mono CleanFeatures

Features Numbered

Three large numbered steps: giant outlined-looking numerals in muted ink above a hairline, step title and text; columns on desktop, stacked on mobile.

Mono CleanFeatures

Features Showcase

Work showcase as the feature: an asymmetric grid (fixed row heights; wide, tall, square and full-width spans) of neutral gray image frames with mono captions (studio — project, template used); captions underline on hover.

Mono CleanFeatures

Features Specs

Technical spec sheet: grouped key/value definition lists in a 4-column grid, each group under a full-ink rule with a mono heading — reads like a product data sheet.

Mono CleanFeatures

Features Bento

Data-driven bento grid of bordered cards: cash-flow line chart, DSO metric, approval flow, currency list and integrations — each a small realistic mock.

Neo CorporateFeatures

Features Grid

Classic 3×2 bordered feature grid sharing hairline borders (one outer frame), each cell with a blue icon square, title, text and a “Learn more” link.

Neo CorporateFeatures

Features Tabs

Underline tabs (Radix Tabs) switching between product areas: copy + check points on the left, a bordered data card (status rows) on the right.

Neo CorporateFeatures

Features Versus

Before/after comparison: a muted “spreadsheets and email” column with red crosses next to a blue-bordered “with Ledgerly” column with green checks.

Neo CorporateFeatures

Features Alternating

Alternating zig-zag rows: copy with check points on one side, a soft blob-shaped tinted panel holding a small product vignette (suppliers, actions, report) on the other.

Organic SoftFeatures

Features Bento

Soft bento: rounded tinted tiles of mixed sizes — a monthly emissions bar chart, a human equivalence (“= 42 flights”), supplier avatars, a certifications tile and a leaf quote.

Organic SoftFeatures

Features Cards

Three tall rounded cards in sage, clay and paper tints; each has an icon sitting in an organic blob, a serif title and calm copy.

Organic SoftFeatures

Features Journey

Horizontal journey: numbered circles connected by a hand-drawn wavy dashed path (vertical list on mobile), each step with a serif title, text and a mono time estimate.

Organic SoftFeatures