diff --git a/docs/homepage-redesign-roadmap.md b/docs/homepage-redesign-roadmap.md index eacb88f..ba1931c 100644 --- a/docs/homepage-redesign-roadmap.md +++ b/docs/homepage-redesign-roadmap.md @@ -30,7 +30,7 @@ First-meetup expectations Practical first-visit facts · Secondary RSVP Community links - Meetup · Discord · GitHub · Contact + Meetup · Discord · GitHub · LinkedIn · Contact Upcoming events Mobile event list · Desktop calendar · RSVP counts · Maps links @@ -332,7 +332,7 @@ Give existing members fast access to frequently used resources without interrupt - Move the current quick links below the first-meetup onboarding section. - Rename the section to “Community links.” -- Preserve the four existing external destinations: Meetup, Discord, GitHub, and Contact. +- Preserve the external destinations: Meetup, Discord, LinkedIn, GitHub, and Contact. - Reorder the remainder of the homepage according to the target structure. - Add a fixed-navigation destination for the hub. - Restore a compact community-size signal near the hub introduction, backed by Meetup data rather than a hard-coded claim. @@ -342,6 +342,7 @@ Give existing members fast access to frequently used resources without interrupt - Meetup → community Meetup group - Discord → community Discord - GitHub → community GitHub organization +- LinkedIn → community LinkedIn company page - Contact → organizer contact form ### Implementation notes diff --git a/src/components/Footer.astro b/src/components/Footer.astro index f878d3d..cf53d8e 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -1,5 +1,11 @@ --- -import { FaGithub, FaDiscord, FaMeetup, FaEnvelope } from "react-icons/fa"; +import { + FaDiscord, + FaEnvelope, + FaGithub, + FaLinkedin, + FaMeetup, +} from "react-icons/fa"; import { useTranslations } from "../i18n/utils"; type Props = { @@ -14,6 +20,7 @@ const meetupUrl = ? "https://www.meetup.com/ja-JP/kyoto-tech-meetup/" : "https://www.meetup.com/kyoto-tech-meetup/"; const contactUrl = "https://forms.gle/NPtc1G1vM9jGBYhp6"; +const linkedinUrl = "https://www.linkedin.com/company/kyoto-tech-meetup/"; ---