From 417fa08ac38e7c8b0e461faf978fe9f35f451716 Mon Sep 17 00:00:00 2001 From: Ibrahim Raimi Date: Sun, 18 Feb 2024 12:07:49 +0100 Subject: [PATCH] feat: change ui theme, add new project & fix broken links --- src/components/Header.astro | 4 ++-- src/data/presentation.ts | 4 ++-- src/data/projects.ts | 26 ++++++++++---------------- src/data/theme.ts | 4 ++-- src/pages/index.astro | 8 +++----- src/utils/types/index.ts | 2 +- 6 files changed, 20 insertions(+), 28 deletions(-) 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[];