From 7bac0c71327ce04fb5d4149f7a4630d12f5f2502 Mon Sep 17 00:00:00 2001 From: rds Date: Tue, 7 Jan 2025 20:46:36 +0100 Subject: [PATCH 01/68] feat: add store title key --- src/i18n/ui.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/i18n/ui.ts b/src/i18n/ui.ts index cf317fc..f2153e8 100644 --- a/src/i18n/ui.ts +++ b/src/i18n/ui.ts @@ -56,7 +56,8 @@ export const ui = { 'soon.title': 'This page is in development. Check back later.', 'investors.title': 'Investor Relations', 'investors.description': - 'Get access to our reports in the Investor Relations Center.' + 'Get access to our reports in the Investor Relations Center.', + 'store.title': 'Store', }, de: { 'header.locale.description': @@ -109,6 +110,7 @@ export const ui = { 'Diese Seite ist in Entwicklung. Schaue später noch einmal vorbei.', 'investors.title': 'Investor Relations', 'investors.description': - 'Erhalte Zugang zu unseren Berichten im Investor Relations Center.' + 'Erhalte Zugang zu unseren Berichten im Investor Relations Center.', + 'store.title': 'Store' } } as const; From e9c622010a2af3d17326836e219469cd7da7691d Mon Sep 17 00:00:00 2001 From: rds Date: Tue, 7 Jan 2025 20:47:13 +0100 Subject: [PATCH 02/68] feat: change homepage title to store --- src/pages/[lang]/index.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/[lang]/index.astro b/src/pages/[lang]/index.astro index 99c9a0d..a30f252 100644 --- a/src/pages/[lang]/index.astro +++ b/src/pages/[lang]/index.astro @@ -38,7 +38,7 @@ const t = useTranslations(lang); --- From c5126eac58cdeb0ef26447009783abe060a8f422 Mon Sep 17 00:00:00 2001 From: rds Date: Tue, 7 Jan 2025 20:55:13 +0100 Subject: [PATCH 03/68] feat: add test comment --- src/pages/[lang]/index.astro | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/[lang]/index.astro b/src/pages/[lang]/index.astro index a30f252..f0e17c6 100644 --- a/src/pages/[lang]/index.astro +++ b/src/pages/[lang]/index.astro @@ -35,6 +35,7 @@ const news = (await getCollection("news")) .slice(0, SITE.NUM_POSTS_ON_HOMEPAGE); const t = useTranslations(lang); +// Test --- Date: Tue, 7 Jan 2025 20:56:14 +0100 Subject: [PATCH 04/68] fix: remove test comment --- src/pages/[lang]/index.astro | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pages/[lang]/index.astro b/src/pages/[lang]/index.astro index f0e17c6..a30f252 100644 --- a/src/pages/[lang]/index.astro +++ b/src/pages/[lang]/index.astro @@ -35,7 +35,6 @@ const news = (await getCollection("news")) .slice(0, SITE.NUM_POSTS_ON_HOMEPAGE); const t = useTranslations(lang); -// Test --- Date: Tue, 7 Jan 2025 20:56:36 +0100 Subject: [PATCH 05/68] fix: store branch not deploying --- .github/workflows/publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7e399c2..b513017 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -3,6 +3,7 @@ on: branches: - main - preview + - store paths-ignore: - "*.md" - ".github/**/*.md" From ae9469e5b99a2dcb6d782eac5859f650d52694bd Mon Sep 17 00:00:00 2001 From: rds Date: Wed, 8 Jan 2025 19:42:18 +0100 Subject: [PATCH 06/68] feat: restore homepage title --- src/pages/[lang]/index.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/[lang]/index.astro b/src/pages/[lang]/index.astro index a30f252..99c9a0d 100644 --- a/src/pages/[lang]/index.astro +++ b/src/pages/[lang]/index.astro @@ -38,7 +38,7 @@ const t = useTranslations(lang); --- From a48acf28b1cd37567e27e0d576d9ed1d16378c02 Mon Sep 17 00:00:00 2001 From: rds Date: Fri, 10 Jan 2025 20:52:47 +0100 Subject: [PATCH 07/68] fix: make navbar padding larger on mobile --- src/components/Navigation/NavBar.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Navigation/NavBar.astro b/src/components/Navigation/NavBar.astro index 7cc4bec..a6ac4c3 100644 --- a/src/components/Navigation/NavBar.astro +++ b/src/components/Navigation/NavBar.astro @@ -13,7 +13,7 @@ let currentNavItem = ""; ---