One way is to hardcode the link (which is common practice for navigation menus)
<a href="/about/">About</a>
Another way, using your current code, is to use .RelPermalink
{{ $about := .Site.GetPage "/about" }}
<a href="{{ $about.RelPermalink }}">{{ $about.Title }}</a>