@@ -53,7 +55,7 @@ export function PostCard({ post }: PostCardProps) { )}
+
{post.description}
)} @@ -61,4 +63,3 @@ export function PostCard({ post }: PostCardProps) {diff --git a/.env.local.example b/.env.local.example index 59342a2..36b709d 100644 --- a/.env.local.example +++ b/.env.local.example @@ -16,6 +16,8 @@ NEXT_PUBLIC_TWITTER_HANDLE="@yourhandle" NEXT_PUBLIC_GITHUB_URL="https://github.com/yourname" NEXT_PUBLIC_LINKEDIN_URL="https://www.linkedin.com/in/yourname/" NEXT_PUBLIC_EMAIL_CONTACT="you@example.com" +NEXT_PUBLIC_MASTODON_URL="https://your.instance/@yourhandle" +NEXT_PUBLIC_GITEA_URL="https://gitea.example/yourname" # SEO / Open Graph NEXT_PUBLIC_OG_DEFAULT_IMAGE="/assets/og-default.jpg" diff --git a/components/hero.tsx b/components/hero.tsx index baefbf6..be249f3 100644 --- a/components/hero.tsx +++ b/components/hero.tsx @@ -14,10 +14,15 @@ export function Hero() {
+
{tagline}
- {(social.github || social.twitter || social.linkedin || social.email) && ( + {(social.github || + social.twitter || + social.linkedin || + social.email || + social.mastodon || + social.gitea) && (+
{post.description}
)} @@ -61,4 +63,3 @@ export function PostCard({ post }: PostCardProps) {