Custom Trip Builder CTA

Split-layout card promoting custom trip planning with feature bullet points and a large image. Perfect for travel agencies offering personalized itinerary design services.

FREE

Travel21: Custom Trip Builder CTA

A split-layout promo card for a "build your own trip" offering: an icon badge, heading, description, and a two-column feature checklist with CTA buttons on one side, and a large photo filling the other. The image side can swap to the left.

Free block

This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.

Installation

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/travel21"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/travel21"

This installs the block to components/beste/block/travel21.tsx and the button and card shadcn/ui primitives it depends on.

Quick start

The installed file exports travel21Demo alongside the block: the exact props behind the preview above. Spread it to get a working trip-builder CTA in one line.

tsx
import { Travel21, travel21Demo } from "@/components/beste/block/travel21";

export default function TripBuilderPage() {
  return <Travel21 {...travel21Demo} />;
}

Then replace the demo with your own props. Written out, the same setup looks like this:

tsx
import { Compass } from "lucide-react";
import { Travel21 } from "@/components/beste/block/travel21";

export default function TripBuilderPage() {
  return (
    <Travel21
      icon={Compass}
      heading="Build Your Dream Trip"
      description="Create a personalized itinerary tailored to your preferences and budget."
      features={["Choose your destinations", "Set your own pace", "Pick your accommodations"]}
      image={{
        src: "https://images.unsplash.com/photo-1711995624805-890dd169192c?w=800&h=600&fit=crop",
        alt: "Custom tour builder",
      }}
      buttons={[{ label: "Start Building", href: "https://beste.co" }]}
      displayPosition="left"
    />
  );
}

Props

PropTypeDefaultDescription
iconLucideIconIcon shown in a circular badge above the heading
headingstringCard heading
descriptionstringCard body text
featuresstring[][]Bullet checklist rendered in a two-column list
image{ src: string; alt: string }Photo filling the other half of the card; omitted entirely when not set
buttonsButtonItem[][]CTAs rendered below the feature list
displayPosition"left" | "right""right"Which side the image sits on at the lg breakpoint
classNamestringExtra classes for the outer <section>
ts
type ButtonItem = {
  label: string;
  href?: string;
  variant?: "default" | "secondary" | "outline" | "ghost" | "link" | "destructive";
};

Behavior notes

More Travel blocks

View all Travel
PRO

travel5

Split Travel Planner

Two-column layout with feature checklist, rating display, and floating destination stats card alongside a featured image. Perfect for travel planning services highlighting their value propositions.

PRO

travel6

Destination Cards Grid

Responsive card grid showcasing destinations with images, ratings, pricing, and interactive favorites. Perfect for travel booking sites displaying popular vacation spots with quick comparison.

PRO

travel22

All-Inclusive Package

Featured package card showing destination image, pricing, and included amenities like flights, hotels, and activities with icons. Perfect for promoting vacation packages with transparent inclusions.

PRO

travel24

Multi-City Tours

Tour cards displaying multi-city itineraries with circular city thumbnails, night counts, and arrow connectors. Perfect for showcasing regional tours spanning multiple destinations.

PRO

travel7

Destination Carousel

Horizontal carousel with tall portrait destination cards featuring names and taglines on gradient overlays. Perfect for showcasing multiple destinations in an engaging, swipeable format.

PRO

travel1

Featured Trip Hero

Full-width hero showcasing a featured trip with destination, duration, group size, ratings, and highlight badges. Perfect for travel agencies promoting signature tours or seasonal destinations.