Skip to content

Commit

Permalink
update x logo
Browse files Browse the repository at this point in the history
  • Loading branch information
asmitbm committed May 2, 2024
1 parent 61e8b8e commit 060819e
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
.header {
display: flex;
align-items: center;
justify-content: center;
justify-content: space-between;
gap: 2rem;
font-size: 1.25rem;
font-weight: bold;
Expand All @@ -46,4 +46,4 @@
height: 100%;
width: 100%;
object-fit: contain;
}
}
46 changes: 35 additions & 11 deletions src/components/JoinCommunity/index.jsx
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>
);
}
}
4 changes: 1 addition & 3 deletions static/img/community_links/x.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 060819e

Please sign in to comment.