May 4, 2026SimpleHeroes
Hero Brand
A full-viewport brand hero section with large statement headline, live clock, and CTA bar. Supports three color variants (default yellow, dark, sage green) and optional background image.
Preview
From dreams to reality: creating brands that change the world.
Get in touchContact us
Source
import HeroBrand from "./index.jsx";
import { heroBrand } from "../demo-data.js";
export default function HeroBrandDemo() {
return (
<>
<HeroBrand {...heroBrand} variant="default" />
<HeroBrand {...heroBrand} variant="dark" />
<HeroBrand {...heroBrand} variant="light" />
</>
);
}