Hero Blocks

Ready-to-use hero section components for your website.

Simple Hero

A clean, minimal hero section with headline, description, and call-to-action buttons.

Build beautiful interfaces with Ritro UI

A collection of modern, responsive UI components built with React and styled to your design system.

<div className="w-full bg-neo-yellow dark:bg-gray-800 p-8 md:p-12 border-4 border-black dark:border-gray-600 shadow-neo">
  <div className="max-w-4xl mx-auto">
    <h1 className="text-3xl md:text-5xl font-bold mb-4 text-black dark:text-white">
      Build beautiful interfaces with Ritro UI
    </h1>
    <p className="text-lg md:text-xl mb-8 text-black dark:text-gray-200 max-w-2xl">
      A collection of modern, responsive UI components built with React and styled to your design system.
    </p>
    <div className="flex flex-wrap gap-4">
      <button className="bg-neo-pink hover:bg-neo-orange text-black font-bold py-3 px-6 border-2 border-black shadow-neo transition-all hover:translate-y-1 hover:translate-x-1 hover:shadow-none">
        Get Started
      </button>
      <button className="bg-white hover:bg-gray-100 text-black font-bold py-3 px-6 border-2 border-black shadow-neo transition-all hover:translate-y-1 hover:translate-x-1 hover:shadow-none">
        View Components
      </button>
    </div>
  </div>
</div>

Using Hero Blocks

These hero blocks are designed to be easily copied and pasted into your projects. You can customize the colors, text, and other elements to match your brand. The components are built with Tailwind CSS and React, making them highly customizable.

To use these blocks in your project:

  1. Copy the JSX code for the hero block you want to use
  2. Add the corresponding CSS to your stylesheet or Tailwind configuration
  3. Import any required components or icons
  4. Customize the content and styling to match your needs

All hero blocks are responsive and work well on mobile, tablet, and desktop screens. They also support dark mode out of the box when used with Tailwind's dark mode feature.