From 8ef4c272fc8b9a7377c57b2131b84f099c355231 Mon Sep 17 00:00:00 2001 From: ayoayco Date: Fri, 16 Aug 2024 15:52:07 +0200 Subject: [PATCH] feat: add email buttons --- src/components/blog/Footer.astro | 17 +++++++- src/consts.ts | 1 + src/layouts/BlogPost.astro | 62 ++++++++++++++++++++++-------- src/pages/blog/index.astro | 66 +++++++++++++++++--------------- src/styles/blog.css | 4 +- 5 files changed, 100 insertions(+), 50 deletions(-) diff --git a/src/components/blog/Footer.astro b/src/components/blog/Footer.astro index 12ef89c..4d2d6bb 100644 --- a/src/components/blog/Footer.astro +++ b/src/components/blog/Footer.astro @@ -1,10 +1,11 @@ --- -import { SITE_AUTHOR, SITE_AUTHOR_MASTODON, SITE_PROJECT_REPO } from "../../consts"; +import { SITE_AUTHOR, SITE_AUTHOR_EMAIL, SITE_AUTHOR_MASTODON, SITE_PROJECT_REPO } from "../../consts"; const today = new Date(); ---