feat: link login/register buttons to app.armarium.ch (v0.8.1)

All hero, CTA, and footer login/register buttons now point to
https://app.armarium.ch/login and https://app.armarium.ch/register.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Daniel Krähenbühl
2026-04-14 00:20:04 +02:00
parent a8b6613d68
commit 724080b7c6
5 changed files with 17 additions and 9 deletions
+8
View File
@@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
--- ---
## [0.8.1] — 2026-04-14
### Changed
- Login and register button links now point to `https://app.armarium.ch/login` and `https://app.armarium.ch/register` respectively — affects hero section, CTA section, footer, and all locale variants
---
## [0.8.0] — 2026-04-13 ## [0.8.0] — 2026-04-13
### Added — Full i18n translation ### Added — Full i18n translation
+1 -1
View File
@@ -154,7 +154,7 @@ const t = useTranslations(locale);
<h2 class="font-display text-4xl font-bold text-foreground mb-4 text-balance">{t('about.cta.title')}</h2> <h2 class="font-display text-4xl font-bold text-foreground mb-4 text-balance">{t('about.cta.title')}</h2>
<p class="text-lg text-foreground-muted mb-8 text-balance">{t('about.cta.desc')}</p> <p class="text-lg text-foreground-muted mb-8 text-balance">{t('about.cta.desc')}</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center"> <div class="flex flex-col sm:flex-row gap-4 justify-center">
<Button size="lg" href="/register"> <Button size="lg" href="https://app.armarium.ch/register">
{t('cta.register')} {t('cta.register')}
<Icon name="arrow-right" size="sm" /> <Icon name="arrow-right" size="sm" />
</Button> </Button>
@@ -84,11 +84,11 @@ const featuresHref = t('nav.features.href');
<h2 class="font-display text-4xl font-bold text-foreground mb-4 text-balance">{t('features.cta.title')}</h2> <h2 class="font-display text-4xl font-bold text-foreground mb-4 text-balance">{t('features.cta.title')}</h2>
<p class="text-lg text-foreground-muted mb-8 text-balance">{t('features.cta.desc')}</p> <p class="text-lg text-foreground-muted mb-8 text-balance">{t('features.cta.desc')}</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center"> <div class="flex flex-col sm:flex-row gap-4 justify-center">
<Button size="lg" href="/register"> <Button size="lg" href="https://app.armarium.ch/register">
{t('cta.register')} {t('cta.register')}
<Icon name="arrow-right" size="sm" /> <Icon name="arrow-right" size="sm" />
</Button> </Button>
<Button size="lg" variant="outline" href="/login"> <Button size="lg" variant="outline" href="https://app.armarium.ch/login">
{t('features.cta.login')} {t('features.cta.login')}
</Button> </Button>
</div> </div>
+4 -4
View File
@@ -41,11 +41,11 @@ const features = [
<p slot="description">{t('hero.description')}</p> <p slot="description">{t('hero.description')}</p>
<Fragment slot="actions"> <Fragment slot="actions">
<Button size="lg" href="/register"> <Button size="lg" href="https://app.armarium.ch/register">
{t('hero.register')} {t('hero.register')}
<Icon name="arrow-right" size="sm" /> <Icon name="arrow-right" size="sm" />
</Button> </Button>
<Button size="lg" variant="outline" href="#features"> <Button size="lg" variant="outline" href="https://app.armarium.ch/login">
{t('hero.login')} {t('hero.login')}
</Button> </Button>
</Fragment> </Fragment>
@@ -119,11 +119,11 @@ const features = [
{t('cta.desc')} {t('cta.desc')}
</p> </p>
<div class="flex flex-col sm:flex-row gap-4 justify-center"> <div class="flex flex-col sm:flex-row gap-4 justify-center">
<Button size="lg" href="/register"> <Button size="lg" href="https://app.armarium.ch/register">
{t('cta.register')} {t('cta.register')}
<Icon name="arrow-right" size="sm" /> <Icon name="arrow-right" size="sm" />
</Button> </Button>
<Button size="lg" variant="outline" href="/login"> <Button size="lg" variant="outline" href="https://app.armarium.ch/login">
{t('cta.login')} {t('cta.login')}
</Button> </Button>
</div> </div>
+2 -2
View File
@@ -86,8 +86,8 @@ const isHomePage = Astro.url.pathname === '/' || Astro.url.pathname === `/${loca
title: t('footer.app'), title: t('footer.app'),
links: [ links: [
{ label: t('nav.features'), href: t('nav.features.href') }, { label: t('nav.features'), href: t('nav.features.href') },
{ label: t('footer.start'), href: '/login' }, { label: t('footer.start'), href: 'https://app.armarium.ch/login' },
{ label: t('footer.register'), href: '/register' }, { label: t('footer.register'), href: 'https://app.armarium.ch/register' },
], ],
}, },
{ {