diff --git a/src/assets/socialIcons.ts b/src/assets/socialIcons.ts index 450dea2..22ee3d2 100644 --- a/src/assets/socialIcons.ts +++ b/src/assets/socialIcons.ts @@ -78,7 +78,7 @@ const socialIcons = { stroke-linecap="round" stroke-linejoin="round" > - + `, WhatsApp: ` +

- + - YouTube + - YouTube -

) } { frontmatter.googlemeet && ( -

+

@@ -62,7 +63,14 @@ export default function Card({ href, frontmatter, secHeading = true }: Props) { - Google Meet + - Google Meet - +

) + } + { + frontmatter.googlemap && ( +

+ + - {frontmatter.meetupLocation} -

) } diff --git a/src/config.ts b/src/config.ts index f657926..e939607 100644 --- a/src/config.ts +++ b/src/config.ts @@ -104,9 +104,9 @@ export const SOCIALS: SocialObjects = [ }, { name: "YouTube", - href: "https://github.com/satnaing/astro-paper", + href: "https://www.youtube.com/@kalug-tw", linkTitle: `${SITE.title} on YouTube`, - active: false, + active: true, }, { name: "WhatsApp", diff --git a/src/content/config.ts b/src/content/config.ts index 8010f3c..e947ed3 100644 --- a/src/content/config.ts +++ b/src/content/config.ts @@ -23,6 +23,8 @@ const blog = defineCollection({ youtube: z.string().optional(), googlemeet: z.string().optional(), hackmd: z.string().optional(), + googlemap: z.string().optional(), + meetupLocation: z.string().optional(), description: z.string(), canonicalURL: z.string().optional(), editPost: z