|
|
|
@ -1,59 +1,56 @@ |
|
|
|
|
import React, { useState } from "react"; |
|
|
|
|
import styles from "./playground.module.css"; |
|
|
|
|
|
|
|
|
|
import AfterHoursContent, { |
|
|
|
|
metadata as afterHoursMetadata, |
|
|
|
|
} from "../content/playground/after-hours.event.mdx"; |
|
|
|
|
import OOTBReact, { |
|
|
|
|
metadata as OOTBReactEventMetadata, |
|
|
|
|
} from "../content/playground/ootb-react.event.mdx"; |
|
|
|
|
import AltTab, { |
|
|
|
|
metadata as altTabEventMetadata, |
|
|
|
|
} from "../content/playground/alt-tab.event.mdx"; |
|
|
|
|
|
|
|
|
|
import Name, { |
|
|
|
|
metadata as nameOrganizedContentMetadata, |
|
|
|
|
} from "../content/playground/constitution/name.section.mdx"; |
|
|
|
|
import Purpose, { |
|
|
|
|
metadata as purposeOrganizedContentMetadata, |
|
|
|
|
} from "../content/playground/constitution/purpose.section.mdx"; |
|
|
|
|
import Membership, { |
|
|
|
|
metadata as membershipOrganizedContentMetadata, |
|
|
|
|
} from "../content/playground/constitution/membership.section.mdx"; |
|
|
|
|
import Officers, { |
|
|
|
|
metadata as officersOrganizedContentMetadata, |
|
|
|
|
} from "../content/playground/constitution/officers.section.mdx"; |
|
|
|
|
import CodeyInfo, { |
|
|
|
|
metadata as codeyMetadata, |
|
|
|
|
} from "../content/playground/codey.team-member.mdx"; |
|
|
|
|
import Duties, { |
|
|
|
|
metadata as dutiesOrganizedContentMetadata, |
|
|
|
|
} from "../content/playground/constitution/duties-of-officers.section.mdx"; |
|
|
|
|
import ExecutiveCouncil, { |
|
|
|
|
metadata as executiveCouncilOrganizedContentMetadata, |
|
|
|
|
} from "../content/playground/constitution/executive-council.section.mdx"; |
|
|
|
|
|
|
|
|
|
import UnavailableContent, { |
|
|
|
|
metadata as unavailableMetadata, |
|
|
|
|
} from "../content/playground/unavailable.news.mdx"; |
|
|
|
|
import Membership, { |
|
|
|
|
metadata as membershipOrganizedContentMetadata, |
|
|
|
|
} from "../content/playground/constitution/membership.section.mdx"; |
|
|
|
|
import Name, { |
|
|
|
|
metadata as nameOrganizedContentMetadata, |
|
|
|
|
} from "../content/playground/constitution/name.section.mdx"; |
|
|
|
|
import Officers, { |
|
|
|
|
metadata as officersOrganizedContentMetadata, |
|
|
|
|
} from "../content/playground/constitution/officers.section.mdx"; |
|
|
|
|
import Purpose, { |
|
|
|
|
metadata as purposeOrganizedContentMetadata, |
|
|
|
|
} from "../content/playground/constitution/purpose.section.mdx"; |
|
|
|
|
import { metadata as dogeMetadata } from "../content/playground/doge.team-member.mdx"; |
|
|
|
|
import CodeyInfo, { |
|
|
|
|
metadata as codeyMetadata, |
|
|
|
|
} from "../content/playground/codey.team-member.mdx"; |
|
|
|
|
|
|
|
|
|
import OOTBReact, { |
|
|
|
|
metadata as OOTBReactEventMetadata, |
|
|
|
|
} from "../content/playground/ootb-react.event.mdx"; |
|
|
|
|
import TempTechTalk, { |
|
|
|
|
metadata as tempTechTalkMetadata, |
|
|
|
|
} from "../content/playground/temp.talk.mdx"; |
|
|
|
|
import UnavailableContent, { |
|
|
|
|
metadata as unavailableMetadata, |
|
|
|
|
} from "../content/playground/unavailable.news.mdx"; |
|
|
|
|
|
|
|
|
|
import { MiniEventCard } from "./MiniEventCard"; |
|
|
|
|
import { NewsCard } from "./NewsCard"; |
|
|
|
|
import { Link } from "./Link"; |
|
|
|
|
import { Button } from "./Button"; |
|
|
|
|
import { EventCard } from "./EventCard"; |
|
|
|
|
import { EventDescriptionCard } from "./EventDescriptionCard"; |
|
|
|
|
import { Link } from "./Link"; |
|
|
|
|
import { MiniEventCard } from "./MiniEventCard"; |
|
|
|
|
import { MiniTechTalkCard } from "./MiniTechTalkCard"; |
|
|
|
|
import { NewsCard } from "./NewsCard"; |
|
|
|
|
import { OrganizedContent, LinkProps } from "./OrganizedContent"; |
|
|
|
|
import { TeamMember } from "./TeamMember"; |
|
|
|
|
import { TeamMemberCard } from "./TeamMemberCard"; |
|
|
|
|
import { OrganizedContent, LinkProps } from "./OrganizedContent"; |
|
|
|
|
import { Button } from "./Button"; |
|
|
|
|
import { Footer } from "./Footer"; |
|
|
|
|
import { TechTalkCard } from "./TechTalkCard"; |
|
|
|
|
import { MiniTechTalkCard } from "./MiniTechTalkCard"; |
|
|
|
|
|
|
|
|
|
import styles from "./playground.module.css"; |
|
|
|
|
|
|
|
|
|
const events = [ |
|
|
|
|
{ Content: OOTBReact, metadata: OOTBReactEventMetadata }, |
|
|
|
|