Components
Hero
Tell your users what your project is about.
Usage
import { Hero } from "@/components/turbostart/hero";
function Page() {
return (
<Hero
headline="Welcome to TurboStart"
description="The home of the TurboStart documentation."
image={
<img
src="https://turbost.art/images/hero-image.png"
alt="Hero Image"
className="rounded-xl"
/>
}
/>
);
}
Props
Name | Type | Description | Default |
---|---|---|---|
headline | ReactNode | The headline of the hero section. | - |
description | ReactNode | The description of the hero section. | - |
image | ReactNode | The image component of the hero section. | - |
If you have any questions, please reach out to me on Twitter @checkerschaf. I’m happy to help!