www-new/pages/playground.mdx

128 lines
2.4 KiB
Plaintext
Raw Normal View History

2021-05-16 03:22:06 -04:00
import {
MiniEventCardDemo,
NewsCardDemo,
EventDescriptionCardDemo,
2021-06-13 15:36:34 -04:00
LinkDemo,
2021-05-24 02:00:47 -04:00
EventCardDemo,
2021-05-24 05:21:34 -04:00
TeamMemberDemo,
TeamMemberCardDemo,
2021-06-09 21:12:44 -04:00
OrganizedContentDemo,
2021-06-01 00:45:52 -04:00
ButtonDemo,
TechTalkDemo,
MiniTechTalkDemo,
2021-05-16 03:22:06 -04:00
} from "../components/playground";
import { ConnectWithUs } from "../components/ConnectWithUs";
import { EmailSignup } from "../components/EmailSignup";
2021-04-26 19:16:55 -04:00
2021-05-24 05:21:34 -04:00
import { TeamMemberCard } from "../components/TeamMemberCard";
2021-04-26 19:16:55 -04:00
# Playground
2021-06-09 21:12:44 -04:00
## `<OrganizedContent />`
Codey is supposed to say something here...
<OrganizedContentDemo />
---
2021-05-12 00:34:49 -04:00
## `<MiniEventCard />`
2021-04-26 19:16:55 -04:00
2021-05-24 02:00:47 -04:00
The `<MiniEventCard />` component has a collapsible description, and it is used
2021-05-16 03:22:06 -04:00
on the events page. It uses the `<details>` tag and works without JS!
2021-04-26 19:16:55 -04:00
2021-05-14 04:03:26 -04:00
<MiniEventCardDemo />
---
## `<NewsCard />`
unavailable
2021-05-16 03:22:06 -04:00
<NewsCardDemo />
---
2021-06-01 00:45:52 -04:00
## `<Button />`
The `<Button />` is customizable in size and in whether it is an anchor tag or a button tag.
<ButtonDemo />
---
2021-05-16 03:22:06 -04:00
## `<EventDescriptionCard />`
The `<EventDescriptionCard />` component is used on the home page, and uses the
`<Button />` and `<EventSetting />` components.
<EventDescriptionCardDemo />
---
2021-05-24 02:00:47 -04:00
## `<EventCard />`
The `<EventCard />` component is used on the events page, and uses the
`<Button />` and `<EventSetting />` components.
<EventCardDemo />
---
2021-05-23 18:56:49 -04:00
## `<TeamMember />`
2021-06-01 00:45:52 -04:00
The `<TeamMember />` component has an image of the team member along with their name and role.
2021-05-23 18:56:49 -04:00
It is used on the Meet the Team page for non executive members.
<TeamMemberDemo />
2021-05-24 05:21:34 -04:00
---
## `<TeamMemberCard />`
The `<TeamMemberCard />` component is used on the "Meet the Team!" page to
display information about the execs: prez, VP, trez, AVP, and syscom overlord.
<TeamMemberCardDemo />
2021-06-09 21:12:44 -04:00
---
2021-06-13 15:36:34 -04:00
## `<Link />`
The `<Link />` component is used on various pages such as Meet the Team! and Our Supporters
<LinkDemo />
---
## `<TechTalkCard />`
The `<TechTalkCard />` component is used on the Resources page to display information
about Tech Talks.
<TechTalkDemo />
---
## `<MiniTechTalkCard />`
The `<MiniTechTalkCard />` component is used on the Resources page to display condensed
information about Tech Talks.
<MiniTechTalkDemo />
## `<ConnectWithUs />`
The `<ConnectWithUs />` component is used on various pages such as the About page and the Get Involved Page!
<ConnectWithUs />
---
## `<EmailSignup />`
The `<EmailSignup />` component is used on various pages such as the About page and the Get Involved Page!
<EmailSignup />
---