The hero section is the full-viewport banner at the top of your portfolio site — the first thing every visitor sees. It displays your intro line, name, tagline, a short paragraph, a profile image, an optional resume button, and a row of social media icons. All hero configuration lives underDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/gurusabarish/hugo-profile/llms.txt
Use this file to discover all available pages before exploring further.
params.hero in your hugo.yaml.
Enable the section
Set to
true to render the hero section on your home page.Text content
Small label rendered above your name. Typically a greeting such as
"Hi, my name is".Your name, displayed as a large heading in the theme’s primary color. Include trailing punctuation if you like (e.g.,
"Isabella.").A short tagline rendered beneath your name (e.g.,
"I build things for the web").A paragraph of descriptive text. Supports Markdown, so you can include bold, italic, or links.
Image
Path to the hero image displayed on the right side of the section (e.g.,
/images/hero.svg). Accepts any path relative to the static/ directory or an absolute URL.When
true, applies a rounded-circle CSS class to the hero image, making it circular.Toggles a decorative dot-grid SVG placed at the bottom-left of the hero section. Visible on medium screens and larger.
Resume button
Set to
true to show a call-to-action button beneath the content paragraph.The label displayed on the button (e.g.,
"Resume").The URL the button links to. Use a relative path such as
/resume.pdf to serve a file from your static/ directory, or any external URL.When
true, adds the HTML download attribute to the link, prompting the browser to download the file instead of navigating to it.When
true, opens the button link in a new browser tab (target="_blank"). Set to false to open in the same tab.Social links
Social icons are rendered in a row next to the resume button. You can use Font Awesome icons, custom image icons, or both.A list of social link objects using Font Awesome class names. Each object accepts:
| Key | Type | Description |
|---|---|---|
icon | string | Font Awesome class string (e.g., fab fa-github) |
url | string | Link destination URL |
A list of social link objects using custom image files instead of Font Awesome. Each object accepts:
| Key | Type | Description |
|---|---|---|
icon | string | Path to the icon image (e.g., /images/icons/myicon.png) |
url | string | Link destination URL |
Icons whose
url begins with # are treated as same-page anchors and will not open in a new tab, regardless of other settings.