diff --git a/src/components/Header.astro b/src/components/Header.astro
index 658d17c..1ccf66f 100644
--- a/src/components/Header.astro
+++ b/src/components/Header.astro
@@ -6,8 +6,8 @@ const pathname = removeTrailingSlash(Astro.url.pathname);
---
-
- {presentation.mail}
+
+ {presentation.name}
Email me at or follow me via my social links.
diff --git a/src/utils/types/index.ts b/src/utils/types/index.ts
index 93d90ba..6295bc4 100644
--- a/src/utils/types/index.ts
+++ b/src/utils/types/index.ts
@@ -42,7 +42,7 @@ export type Social = {
};
export type Presentation = {
- mail: string;
+ name: string;
title: string;
description: string;
socials: Social[];