|
|
|
@ -1,24 +1,27 @@ |
|
|
|
|
import React from "react"; |
|
|
|
|
import { Image } from "../components/Image"; |
|
|
|
|
import { SocialLinks } from "../components/SocialLinks"; |
|
|
|
|
import { EventDescriptionCard } from "../components/EventDescriptionCard"; |
|
|
|
|
import { NewsCard } from "../components/NewsCard"; |
|
|
|
|
import { ConnectWithUs } from "../components/ConnectWithUs"; |
|
|
|
|
import { EmailSignup } from "../components/EmailSignup"; |
|
|
|
|
import { DefaultLayout } from "../components/DefaultLayout"; |
|
|
|
|
import styles from "./index.module.css"; |
|
|
|
|
|
|
|
|
|
// temporary event and news imports
|
|
|
|
|
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 OOTBReact, { |
|
|
|
|
metadata as OOTBReactEventMetadata, |
|
|
|
|
} from "../content/playground/ootb-react.event.mdx"; |
|
|
|
|
import UnavailableContent, { |
|
|
|
|
metadata as unavailableMetadata, |
|
|
|
|
} from "../content/playground/unavailable.news.mdx"; |
|
|
|
|
|
|
|
|
|
import styles from "./index.module.css"; |
|
|
|
|
|
|
|
|
|
import { ConnectWithUs } from "@/components/ConnectWithUs"; |
|
|
|
|
import { DefaultLayout } from "@/components/DefaultLayout"; |
|
|
|
|
import { EmailSignup } from "@/components/EmailSignup"; |
|
|
|
|
import { EventDescriptionCard } from "@/components/EventDescriptionCard"; |
|
|
|
|
import { Image } from "@/components/Image"; |
|
|
|
|
import { NewsCard } from "@/components/NewsCard"; |
|
|
|
|
import { SocialLinks } from "@/components/SocialLinks"; |
|
|
|
|
|
|
|
|
|
// temporary event and news imports
|
|
|
|
|
|
|
|
|
|
export default function Home() { |
|
|
|
|
const events = [ |
|
|
|
|
{ Content: OOTBReact, metadata: OOTBReactEventMetadata }, |
|
|
|
|