diff --git a/src/components/development-pages/calendar-button.tsx b/src/components/development-pages/calendar-button.tsx index cb03a762..89a723a2 100644 --- a/src/components/development-pages/calendar-button.tsx +++ b/src/components/development-pages/calendar-button.tsx @@ -8,10 +8,10 @@ export function CalendarButton({ onClick }: CalendarButtonProps) { return ( ); -} +} \ No newline at end of file diff --git a/src/components/development-pages/calendarModal.astro b/src/components/development-pages/calendarModal.astro new file mode 100644 index 00000000..c2054294 --- /dev/null +++ b/src/components/development-pages/calendarModal.astro @@ -0,0 +1,61 @@ +--- +import TimeZoneCalendar from "./time-zone-calendar"; + +const DEFAULT_CALENDAR_ID = + "c_25e5e3748e4c4ab7a55f41fbc5ebebcc0a03b40fb028785f14159bfaebea12e2@group.calendar.google.com"; + +const calendarUrl = `https://calendar.google.com/calendar/u/0?cid=${encodeURIComponent(DEFAULT_CALENDAR_ID)}`; +--- + +

+ Akash Community
Groups Calendar +

+ +
+ + + + Subscribe to SIG & WG calendar + +
diff --git a/src/components/header/header.astro b/src/components/header/header.astro index 9f3cfcf8..737e508f 100644 --- a/src/components/header/header.astro +++ b/src/components/header/header.astro @@ -10,6 +10,7 @@ import { DiscordIcon, GithubIcon, TwitterIcon } from "./icons"; import PopOverCommunity, { SubNavbar } from "./popovers/popover-nav-community"; import PopOverNavItemNetwork from "./popovers/popover-nav-item"; import PopOverNavItemEcosystem from "./popovers/popover-nav-item-ecosystem"; +import { CalendarModal } from "../development-pages/calendar-modal"; const pathname = `/${Astro.url.pathname.split("/")[1]}`; interface Props { @@ -173,6 +174,7 @@ const latestRoadmapYear = getYearToUse(); { visibilty.development.includes(pathname) && ( +
) } { diff --git a/src/content/Development_Page/welcome/index.mdx b/src/content/Development_Page/welcome/index.mdx index 15fb6c92..81abaff3 100644 --- a/src/content/Development_Page/welcome/index.mdx +++ b/src/content/Development_Page/welcome/index.mdx @@ -8,6 +8,7 @@ import CalenderButton from "../../../components/development-pages/calenderbutton import TimeZoneCalendar from "../../../components/development-pages/time-zone-calendar.tsx"; import Welcome from "../../../components/development-pages/Welcome.astro"; import GithubButton from "../../../components/mdx-cards/buttons/github-button.astro"; +import Calendar from "../../../components/development-pages/calendarModal.astro"; @@ -17,6 +18,8 @@ This is the starting point for joining and contributing to building Akash Networ The Akash Network community welcomes contributions from all skill levels. If you’re interested in contributing, visit our [project list](https://github.com/orgs/akash-network/projects) to find a project that matches your skillset. + + ## Community Groups The Akash Network is supported by a diverse group of users, contributors, and supporters. We strive to improve the project and work together efficiently. We’re proud of our progress over the years. All aspects of the Akash Network - from code to culture - are managed by the community and divided into three programs. diff --git a/src/pages/development/[...slug].astro b/src/pages/development/[...slug].astro index fa6b97f6..65e80c03 100644 --- a/src/pages/development/[...slug].astro +++ b/src/pages/development/[...slug].astro @@ -6,7 +6,6 @@ import { proseClasses } from "@/lib/prose-classes"; import type { MarkdownHeading } from "astro"; import { type CollectionEntry, getCollection } from "astro:content"; import clsx from "clsx"; -import { CalendarModal } from "@/components/development-pages/calendar-modal.tsx"; interface NavItem { link: string; @@ -73,7 +72,6 @@ if (akashInsidersIndex !== -1) {
-