This section appears below the slider on the home page. You can use it to display what you're reading/listening/watching lately or change the icons, titles and text to something else with the instructions below.
Go to Layout > scroll down to "Home Before Content 1" > open the widget titled "Currently". You can use the code with the highlights below for reference, so you can add your content.
- Heading - the main heading of the section is highlighted in blue
- Icons - the icons above each title are highlighted in green (I've used FontAwesome for the icons; you can change them easily - just click on the icon you want to use, copy the HTML and replace it in the widget)
- Titles - the title of each column is highlighted in red
- Text/List Items - the text of each column is highlighted in purple; you can add more than 2 to each column - just copy <p>Add text here</p> and add it below the last line
<div class="interests-wrapper"><div class="interests-wrap">
<h2>Currently, I am...</h2>
<div class="interests-grid">
<div class="grid-item">
<i class="fa-solid fa-book-open"></i>
<h3>Reading</h3>
<p>List item #1</p>
<p>List item #2</p>
</div>
<div class="grid-item">
<i class="fa-solid fa-headphones"></i>
<h3>Listening</h3>
<p>List item #1</p>
<p>List item #2</p>
</div>
<div class="grid-item">
<i class="fa-solid fa-photo-film"></i>
<h3>Watching</h3>
<p>List item #1</p>
<p>List item #2</p>
</div>
</div>
</div></div>