17 lines
444 B
TypeScript
17 lines
444 B
TypeScript
|
import navStyles from '../styles/nav.module.scss'
|
||
|
|
||
|
export const Banner = () => {
|
||
|
return (
|
||
|
<div className={navStyles.FundingCampaign}>
|
||
|
<a
|
||
|
className={navStyles.FundingCampaignLink}
|
||
|
href='https://geyser.fund/project/degmods'
|
||
|
target='_blank'
|
||
|
>
|
||
|
DEG Mods is running a crowd funding campaign. Chip-in or share the link
|
||
|
to help bring the project to life (click me).
|
||
|
</a>
|
||
|
</div>
|
||
|
)
|
||
|
}
|