This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(styles): modified discord card and partnership card to use generi…
…c stylesB #108
- Loading branch information
1 parent
4e193a2
commit 666128a
Showing
7 changed files
with
73 additions
and
70 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,28 @@ | ||
import React from 'react'; | ||
import styles from './card.module.css'; | ||
import DiscordLogo from '@site/static/img/discord-logo.svg'; | ||
import Link from '@docusaurus/Link'; | ||
import React from "react"; | ||
import styles from "./card.module.css"; | ||
import DiscordLogo from "@site/static/img/discord-logo.svg"; | ||
import Link from "@docusaurus/Link"; | ||
|
||
const DiscordCard = () => { | ||
return ( | ||
<Link className={styles.discordBannerLink} href="https://discord.verida.io"> | ||
<div className={styles.discordBanner}> | ||
<div><DiscordLogo className={styles.discordBannerSvg} title="DiscordLogo" /></div> | ||
<div className={styles.discordBannerContent}> | ||
<h3>Join our Discord Community</h3> | ||
<p> | ||
We would love to hear from you! Let us know what you're building or if you need any assistance getting started. | ||
</p> | ||
</div> | ||
</div> | ||
</Link> | ||
); | ||
return ( | ||
<Link href='https://discord.verida.io'> | ||
<div className={styles.communityBanner}> | ||
<div> | ||
<DiscordLogo | ||
className={styles.communityBannerSvg} | ||
title='DiscordLogo' | ||
/> | ||
</div> | ||
<div className={styles.communityBannerContent}> | ||
<h3>Join our Discord Community</h3> | ||
<p> | ||
We would love to hear from you! Let us know what you're building or | ||
if you need any assistance getting started. | ||
</p> | ||
</div> | ||
</div> | ||
</Link> | ||
); | ||
}; | ||
|
||
export default DiscordCard; |
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
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
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