diff --git a/site/src/components/Footer.astro b/site/src/components/Footer.astro index b5ae66c8..9fc6ea12 100644 --- a/site/src/components/Footer.astro +++ b/site/src/components/Footer.astro @@ -43,6 +43,7 @@ const groups: { title: string; links: { label: string; href: string }[] }[] = [ title: 'Company', links: [ { label: 'About', href: '/about/' }, + { label: 'Blog', href: '/blog/' }, { label: 'Contact', href: '/contact/' }, { label: 'Brand', href: '/brand/' }, { label: 'Trust', href: '/trust/' }, @@ -103,6 +104,13 @@ const year = new Date().getFullYear(); github.com/warmbly/warmbly · + + + RSS + + ·

Open source.

diff --git a/site/src/components/Header.astro b/site/src/components/Header.astro index 5c9bb234..63b1838b 100644 --- a/site/src/components/Header.astro +++ b/site/src/components/Header.astro @@ -62,6 +62,7 @@ const nav: NavItem[] = [ { label: 'Deliverability',href: '/deliverability/',match: '/deliverability' }, { label: 'Pricing', href: '/pricing/', match: '/pricing' }, { label: 'Learn', href: '/learn/', match: '/learn' }, + { label: 'Blog', href: '/blog/', match: '/blog' }, ]; function active(match?: string) {