-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
38 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,55 @@ | ||
import React from 'react'; | ||
import styles from './styles.module.css'; | ||
import LinkCard from './community_links'; | ||
import Link from '@docusaurus/Link'; | ||
import React from "react"; | ||
import styles from "./styles.module.css"; | ||
import LinkCard from "./community_links"; | ||
import Link from "@docusaurus/Link"; | ||
|
||
export default function Community() { | ||
return ( | ||
<div className={[styles.community, styles.section_padding].join(' ')}> | ||
<div className={[styles.community, styles.section_padding].join(" ")}> | ||
<div className={styles.join_community}> | ||
<h1>Join the Community</h1> | ||
<p>Join the ever-growing ORAS community for updates, support, and collaboration.</p> | ||
<p> | ||
Join the ever-growing ORAS community for updates, support, | ||
and collaboration. | ||
</p> | ||
</div> | ||
<div className={styles.community_links}> | ||
<div className={styles.links}> | ||
<LinkCard link="https://cloud-native.slack.com/archives/CJ1KHJM5Z" title="Slack" light="img/community_links/slack.svg" dark="img/community_links/slack.svg" /> | ||
<LinkCard link="https://github.com/oras-project" title="GitHub" light="img/community_links/github_light.svg" dark="img/community_links/github_dark.svg" /> | ||
<LinkCard link="https://x.com/orasproject" title="X" light="img/community_links/x.svg" dark="img/community_links/x.svg" /> | ||
<LinkCard | ||
link="https://cloud-native.slack.com/archives/CJ1KHJM5Z" | ||
title="Slack" | ||
light="img/community_links/slack.svg" | ||
dark="img/community_links/slack.svg" | ||
/> | ||
<LinkCard | ||
link="https://github.com/oras-project" | ||
title="GitHub" | ||
light="img/community_links/github_light.svg" | ||
dark="img/community_links/github_dark.svg" | ||
/> | ||
<LinkCard | ||
link="https://x.com/orasproject" | ||
title="X (Twitter)" | ||
light="img/community_links/x.svg" | ||
dark="img/community_links/x.svg" | ||
/> | ||
</div> | ||
<div className={styles.add_to_calendar}> | ||
<div className={styles.calendar_heading}> | ||
<h2>ORAS Community Call</h2> | ||
<h4>Biweekly Tuesday of every month | 5:00 PM PDT</h4> | ||
</div> | ||
<div className={styles.calendar_link}> | ||
<Link class="button button--secondary button--lg" target='_blank' href="https://hackmd.io/P-O6n222TcSMoJgHmTTduw">Add to Calendar</Link> | ||
<Link | ||
class="button button--secondary button--lg" | ||
target="_blank" | ||
href="https://hackmd.io/P-O6n222TcSMoJgHmTTduw" | ||
> | ||
Add to Calendar | ||
</Link> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.