SaaS Platform Tour PagePRO

A product page that shows the software rather than listing it: a media-first hero floating a live appointment card, a three-tab tour of the screens a team lives in, a three-phase rollout timeline, an inverted band of customer quotes, a closing call to action and a newsletter footer.

Composed from 7 blocks. Installing this page installs all of them, plus the pieces and primitives they use.

Built in the Sirius collection.

Platform1: SaaS Platform Tour Page

A product page that shows the software rather than listing it: a media-first hero floating a live appointment card, a three-tab tour of the screens a team lives in, a three-phase rollout timeline, an inverted band of customer quotes, a closing call to action, and a newsletter footer. Seven blocks, one install.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Upgrade Now

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

bash
npx shadcn add "https://ui.beste.co/page/r/platform1?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the page to components/beste/page/platform1.tsx and everything behind it: the seven blocks it composes (navbar74, hero164, showcase46, workflow47, testimonial42, cta74, footer119), the six components they use (browser35, calendar31, dashboard32, chat33, button21, badge23) and the shadcn/ui tabs, input and button primitives. Fourteen files.

Quick start

The installed file exports platform1Demo alongside the page: the exact props behind the preview above. Spread it to get a working page in one line.

tsx
import { Platform1, platform1Demo } from "@/components/beste/page/platform1";

export default function Page() {
  return <Platform1 {...platform1Demo} />;
}

Each section is a separate prop, so the usual next step is to keep the demo and replace one section at a time.

tsx
import { Platform1, platform1Demo } from "@/components/beste/page/platform1";

export default function Page() {
  return (
    <Platform1
      {...platform1Demo}
      rollout={{
        label: "Rollout",
        heading: "Live in three weeks, not three quarters.",
        phases: [
          { title: "Week one", description: "We import your records and check them with you." },
          { title: "Week two", description: "Your team runs a real day beside the old system." },
          { title: "Week three", description: "The old system is read only." },
        ],
      }}
    />
  );
}

Props

Every prop is the full prop object of the block that renders that section, so anything the block accepts is accepted here.

PropTypeDefaultDescription
navbarComponentProps<typeof Navbar74>Capsule navbar, transparent over the hero
heroComponentProps<typeof Hero164>Media-first hero floating an appointment card
tourComponentProps<typeof Showcase46>Three-tab tour of the product screens
rolloutComponentProps<typeof Workflow47>Three-phase rollout timeline
testimonialComponentProps<typeof Testimonial42>Customer quotes
ctaComponentProps<typeof Cta74>Closing call to action
footerComponentProps<typeof Footer119>Newsletter footer
classNamestringExtra classes for the page's outer wrapper

Sections

SectionBlockNotes
Navbarnavbar74Sticky and transparent, so the hero runs under it
Herohero164The floating card is calendar31, a real component
Tourshowcase46Given bg-muted/40; the tabs hold their own state
Rolloutworkflow47Three phases, matched to the layout
Quotestestimonial42Rendered on the inverted band
Closingcta74One decision, one button
Footerfooter119Newsletter capture, hence the shadcn input dependency

Behavior notes

Blocks in this page

Browse all blocks
PRO

navbar74

Floating Capsule Navbar

A navbar contained in a softly rounded, bordered capsule with a lowercase wordmark, uppercase links, an accent call to action, and a matching mobile panel.

PRO

hero164

Media-First Reverse Hero

A hero that opens on a full-bleed image band with a live phone frame anchored into it, then sets the eyebrow, light display heading, paragraph, and actions underneath rather than above.

PRO

showcase46

Tabbed Product Tour

A tabbed showcase with an eyebrow over a hairline rule and a two-column heading, where each tab reveals a light title, checked bullets, and an image tile floating a live product micro-asset.

PRO

workflow47

Three Phase Rollout Timeline

An implementation timeline laid out as three hairline columns, each opening with a week marker over a phase title, a short explanation, and a checked deliverable list, closing on a soft summary strip.

PRO

testimonial42

Three Quote Grid

A testimonial grid with an eyebrow over a hairline rule, a two-column heading, and three bordered quote cards each closing with an author avatar, name, and role.

PRO

cta74

Centered Closing CTA

A centered call to action with an eyebrow pill, a large light heading, a short paragraph, and two accent buttons on a clean surface.

PRO

footer119

Editorial Newsletter Footer

A light footer with a lowercase wordmark, a tagline, a newsletter signup, three link columns, and a bottom bar of legal links over a hairline rule.