Skip to main content
The Hero section is the first thing users see on your homepage. It’s designed to grab attention with a bold headline, a clear value proposition, and prominent calls to action. File Location: src/components/marketing/hero.tsx

How to Customize

All content within the Hero section is hardcoded directly in the component, making it easy to edit.
1

Announcement Badge

At the top of the section is an optional announcement badge, perfect for highlighting new features or promotions.
src/components/marketing/hero.tsx
  • Link (href): Change the # to the URL you want the badge to link to.
  • Text: Edit the “Introducing our latest feature” text.
  • To remove it: Delete the entire <motion.div> block containing the <Badge>.
2

Title and Description

The main headline (h1) and the descriptive paragraph (p) are the core of your message.
src/components/marketing/hero.tsx
3

Call-to-Action (CTA) Buttons

There are two main buttons: a primary button for signing up and a secondary one for contacting sales. You can change both the text and the link (href) for each.
src/components/marketing/hero.tsx
4

Product Screenshot/Video

The placeholder div at the bottom is designed for you to embed a product video or a compelling screenshot.
src/components/marketing/hero.tsx
To add your own visual, replace the <p> tag with an <img>, <video>, or an <iframe> for services like YouTube or Loom.
For best performance and to avoid layout shift, it’s recommended to use the Next.js <Image /> component for screenshots.