Well, what is inside of components/author-card? Also, what errors are you seeing on the CLI? It’s pretty hard to ascertain the issue from just some lines of code. Maybe have a quick look at Requesting Help about how you can help us to help you.
I notice that, on your home page, you are ranging over the PAGE.RegularPages collection. With this content structure that page collection will be empty:
I’m not sure what you’re trying to do, but in a home page template you would typically range over the SITE.RegularPages collection, or some subset of it. For example:
{{ range site.RegularPages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ end }}
I jmooring, based on you answer I understand that I NEED TO STUDY A LITTLE BIT MORE!!!
So I’ll take this task for the future and start working on basics.
Thanks a lot
Jack