Error: Home page This page doesn't have any sections. Edit theme settings
Solutions: Make sure you have {{ content_for_header }}, {{ content_for_layout }}, and {% section 'header' %} in your theme.liquid file. Add a header.liquid file in the sections folder, it can be an empty, it doesn't matter.
<!DOCTYPE html>
<html>
<head>
<title>Joe Pichardo</title>
{{ content_for_header }}
</head>
<body>
{% section 'header' %}
{{ content_for_layout }}
</body>
</html>
In the index.liquid make sure you have {{ content_for_index }} in the file.
Having trouble? Ask for help.